2 Copyright (C) 2010 Klarälvdalens Datakonsult AB,
3 a KDAB Group company, info@kdab.net,
4 author Tobias Koenig <tokoe@kdab.com>
6 This library is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Library General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at your
9 option) any later version.
11 This library is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
14 License for more details.
16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 #ifndef MESSAGELISTSETTINGSCONTROLLER_H
23 #define MESSAGELISTSETTINGSCONTROLLER_H
25 #include "messagelistsettings.h"
27 #include <akonadi/collection.h>
29 #include <QtCore/QObject>
33 class MessageListSettingsController
: public QObject
37 Q_PROPERTY( QString groupingRole READ groupingRole NOTIFY settingsChanged
)
38 Q_PROPERTY( QAction
* editAction READ editAction
)
41 MessageListSettingsController( QObject
*parent
= 0 );
43 QString
groupingRole() const;
45 QAction
* editAction() const;
48 void setCollection( const Akonadi::Collection
&collection
);
51 void settingsChanged( const MessageListSettings
&settings
);
57 Akonadi::Collection::Id mCollectionId
;
58 MessageListSettings mSettings
;