summaryrefslogtreecommitdiff
path: root/core/launcher/mrulist.h
Unidiff
Diffstat (limited to 'core/launcher/mrulist.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mrulist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/launcher/mrulist.h b/core/launcher/mrulist.h
index 141a09b..ff111ce 100644
--- a/core/launcher/mrulist.h
+++ b/core/launcher/mrulist.h
@@ -27,24 +27,25 @@
27#include <qframe.h> 27#include <qframe.h>
28#include <qlist.h> 28#include <qlist.h>
29#include <qpixmap.h> 29#include <qpixmap.h>
30 30
31 31
32class MRUList : public QFrame 32class MRUList : public QFrame
33{ 33{
34public: 34public:
35 MRUList( QWidget *parent ); 35 MRUList( QWidget *parent );
36 ~MRUList(); 36 ~MRUList();
37 virtual QSize sizeHint() const; 37 virtual QSize sizeHint() const;
38 static void addTask( const AppLnk *appLnk ); 38 static void addTask( const AppLnk *appLnk );
39 static void removeTask(const QString &appName );
39 bool quitOldApps(); 40 bool quitOldApps();
40 41
41protected: 42protected:
42 void mousePressEvent(QMouseEvent *e); 43 void mousePressEvent(QMouseEvent *e);
43 void mouseReleaseEvent(QMouseEvent *e); 44 void mouseReleaseEvent(QMouseEvent *e);
44 void paintEvent( QPaintEvent *event ); 45 void paintEvent( QPaintEvent *event );
45 46
46private: 47private:
47 static QList<MRUList> *MRUListWidgets; 48 static QList<MRUList> *MRUListWidgets;
48 static QList<AppLnk> *task; 49 static QList<AppLnk> *task;
49 int selected; 50 int selected;
50 int oldsel; 51 int oldsel;