akonadi
recentcollectionaction_p.h
00001 /* 00002 * Copyright (c) 2011 Laurent Montel <montel@kde.org> 00003 * 00004 * This library is free software; you can redistribute it and/or modify it 00005 * under the terms of the GNU Library General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or (at your 00007 * option) any later version. 00008 * This library is distributed in the hope that it will be useful, but WITHOUT 00009 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00010 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00011 * License for more details. 00012 * 00013 * You should have received a copy of the GNU Library General Public License 00014 * along with this library; see the file COPYING.LIB. If not, write to the 00015 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00016 * 02110-1301, USA. 00017 */ 00018 #ifndef RECENTCOLLECTIONACTION_P_H 00019 #define RECENTCOLLECTIONACTION_P_H 00020 00021 #include <QStringList> 00022 #include <QModelIndex> 00023 #include <akonadi/collection.h> 00024 #include <ksharedconfig.h> 00025 00026 class QMenu; 00027 class QAbstractItemModel; 00028 class QAction; 00036 namespace Akonadi { 00037 class RecentCollectionAction : public QObject 00038 { 00039 Q_OBJECT 00040 public: 00044 explicit RecentCollectionAction(const QAbstractItemModel *model, QMenu *menu); 00048 ~RecentCollectionAction(); 00049 00053 void addRecentCollection( Akonadi::Collection::Id id); 00054 00055 void cleanRecentCollection(); 00056 00057 private: 00058 void writeConfig(); 00059 void fillRecentCollection(); 00060 QString actionName(QModelIndex index); 00061 00062 private: 00063 QStringList mListRecentCollection; 00064 QMenu *mMenu; 00065 const QAbstractItemModel *mModel; 00066 QAction *mRecentAction; 00067 KSharedConfig::Ptr mAkonadiConfig; 00068 }; 00069 } 00070 00071 #endif /* RECENTCOLLECTIONACTION_P_H */ 00072
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:35 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:35 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.