summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.h
Unidiff
Diffstat (limited to 'noncore/settings/aqpkg/mainwin.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/settings/aqpkg/mainwin.h b/noncore/settings/aqpkg/mainwin.h
index b2de871..4b044de 100644
--- a/noncore/settings/aqpkg/mainwin.h
+++ b/noncore/settings/aqpkg/mainwin.h
@@ -10,70 +10,70 @@
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#ifndef MAINWIN_H 18#ifndef MAINWIN_H
19#define MAINWIN_H 19#define MAINWIN_H
20 20
21#include <qmainwindow.h> 21#include <qmainwindow.h>
22#include <qpixmap.h> 22#include <qpixmap.h>
23 23
24class DataManager; 24class DataManager;
25class InstallData; 25class InstallData;
26class InstallDlgImpl; 26class InstallDlgImpl;
27 27
28class QAction; 28class QAction;
29class QCheckListItem; 29class QCheckListItem;
30class QComboBox; 30class QComboBox;
31class QLabel; 31class QLabel;
32class QLineEdit; 32class QLineEdit;
33class QListView; 33class QListView;
34class QPEToolBar; 34class QToolBar;
35class QProgressBar; 35class QProgressBar;
36class QWidgetStack; 36class QWidgetStack;
37 37
38class MainWindow :public QMainWindow 38class MainWindow :public QMainWindow
39{ 39{
40 Q_OBJECT 40 Q_OBJECT
41public: 41public:
42 42
43 MainWindow(); 43 MainWindow();
44 ~MainWindow(); 44 ~MainWindow();
45 45
46protected: 46protected:
47 void closeEvent( QCloseEvent* e ); 47 void closeEvent( QCloseEvent* e );
48 48
49private: 49private:
50 DataManager *mgr; 50 DataManager *mgr;
51 51
52 QWidgetStack *stack; 52 QWidgetStack *stack;
53 53
54 QPEToolBar *findBar; 54 QToolBar *findBar;
55 QPEToolBar *jumpBar; 55 QToolBar *jumpBar;
56 QLineEdit *findEdit; 56 QLineEdit *findEdit;
57 QAction *actionFindNext; 57 QAction *actionFindNext;
58 QAction *actionFilter; 58 QAction *actionFilter;
59 QAction *actionUpgrade; 59 QAction *actionUpgrade;
60 QAction *actionDownload; 60 QAction *actionDownload;
61 QAction *actionUninstalled; 61 QAction *actionUninstalled;
62 QAction *actionInstalled; 62 QAction *actionInstalled;
63 QAction *actionUpdated; 63 QAction *actionUpdated;
64 64
65 QPixmap iconDownload; 65 QPixmap iconDownload;
66 QPixmap iconRemove; 66 QPixmap iconRemove;
67 67
68 int mnuShowUninstalledPkgsId; 68 int mnuShowUninstalledPkgsId;
69 int mnuShowInstalledPkgsId; 69 int mnuShowInstalledPkgsId;
70 int mnuShowUpgradedPkgsId; 70 int mnuShowUpgradedPkgsId;
71 int mnuFilterByCategory; 71 int mnuFilterByCategory;
72 int mnuSetFilterCategory; 72 int mnuSetFilterCategory;
73 73
74 // Main package list widget 74 // Main package list widget
75 QWidget *networkPkgWindow; 75 QWidget *networkPkgWindow;
76 QComboBox *serversList; 76 QComboBox *serversList;
77 QListView *packagesList; 77 QListView *packagesList;
78 QPixmap installedIcon; 78 QPixmap installedIcon;
79 QPixmap updatedIcon; 79 QPixmap updatedIcon;