Applets
recentapplications.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef RECENTAPPLICATIONS_H
00021 #define RECENTAPPLICATIONS_H
00022
00023 #include "core/kickoff_export.h"
00024
00025
00026 #include <QtCore/QObject>
00027 #include <QDateTime>
00028
00029
00030 #include <KService>
00031
00032 namespace Kickoff
00033 {
00034
00041 class KICKOFF_EXPORT RecentApplications : public QObject
00042 {
00043 Q_OBJECT
00044 public:
00045 class Private;
00046 friend class Private;
00047
00048 static RecentApplications *self();
00049
00054 QList<KService::Ptr> recentApplications() const;
00056 int startCount(KService::Ptr service) const;
00058 QDateTime lastStartedTime(KService::Ptr service) const;
00059
00061 void setMaximum(int max);
00063 int maximum() const;
00066 int defaultMaximum() const;
00067
00068 public Q_SLOTS:
00073 void add(KService::Ptr service);
00075 void clear();
00076
00077 Q_SIGNALS:
00079 void applicationAdded(KService::Ptr service, int startCount);
00081 void applicationRemoved(KService::Ptr service);
00083 void cleared();
00084
00085 private:
00086 RecentApplications();
00087 };
00088
00089 }
00090
00091 #endif // RECENTAPPLICATIONS_H
00092
00093