use QValueVector instead of QPtrList
[kfpm.git] / mainwidget.h
blob3054b52f93440b2718f8def088c8258ec4ad3094
1 /*
2 * mainwidget.h
4 * Copyright (c) 2007 VOROSKOI Andras <voroskoi@frugalware.org>
6 * Copyright: See COPYING file that comes with this distribution.
8 */
10 #ifndef MAINWIDGET_H
11 #define MAINWIDGET_H
13 #include <qwidget.h>
14 #include <qpushbutton.h>
15 #include <qlistview.h>
16 #include <qstatusbar.h>
18 class MainWidget : public QWidget
20 Q_OBJECT
22 public:
23 MainWidget(QWidget * parent = 0, const char * name = 0, WFlags f = 0);
24 public slots:
25 void slot_initialize();
26 protected:
27 QPushButton *button_quit;
28 private:
29 void setStatusBarMessage(QString);
30 QStatusBar *StatusBar;
31 QString StatusBarMessage;
32 QListView *GroupsView;
33 void getGroupList();
34 private slots:
35 void about();
36 void aboutQt();
39 #endif /* ifndef MAINWIDGET_H */