doc fixes found while translating
[kdepim.git] / mobile / mail / messagelistsettingscontroller.h
blobcda0be32cb60ab1a93dee24f26f0e19e7066286a
1 /*
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
19 02110-1301, USA.
22 #ifndef MESSAGELISTSETTINGSCONTROLLER_H
23 #define MESSAGELISTSETTINGSCONTROLLER_H
25 #include "messagelistsettings.h"
27 #include <akonadi/collection.h>
29 #include <QtCore/QObject>
31 class QAction;
33 class MessageListSettingsController : public QObject
35 Q_OBJECT
37 Q_PROPERTY( QString groupingRole READ groupingRole NOTIFY settingsChanged )
38 Q_PROPERTY( QAction* editAction READ editAction )
40 public:
41 MessageListSettingsController( QObject *parent = 0 );
43 QString groupingRole() const;
45 QAction* editAction() const;
47 public Q_SLOTS:
48 void setCollection( const Akonadi::Collection &collection );
50 Q_SIGNALS:
51 void settingsChanged( const MessageListSettings &settings );
53 private Q_SLOTS:
54 void editSettings();
56 private:
57 Akonadi::Collection::Id mCollectionId;
58 MessageListSettings mSettings;
59 QAction *mEditAction;
62 #endif