summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/mainwindow.h
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/mainwindow.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/mainwindow.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index 892d5e8..adc5e78 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -12,13 +12,13 @@
12#include "pkdesc.h" 12#include "pkdesc.h"
13 13
14class QComboBox; 14class QComboBox;
15class QPEToolBar; 15class QPEToolBar;
16class QLineEdit; 16class QLineEdit;
17class QListView; 17class QListView;
18 18class PackageListItem;
19 19
20class MainWindow : public QMainWindow 20class MainWindow : public QMainWindow
21{ 21{
22 Q_OBJECT 22 Q_OBJECT
23 23
24 24
@@ -43,36 +43,41 @@ public slots:
43 void setCurrent( QListViewItem* ); 43 void setCurrent( QListViewItem* );
44 void sectionClose(); 44 void sectionClose();
45 void sectionShow(bool); 45 void sectionShow(bool);
46 void findClose(); 46 void findClose();
47 void findShow(bool); 47 void findShow(bool);
48 void filterList(); 48 void filterList();
49 void showPopup();
50 void changePackageDest( int );
51 void stopTimer( QListViewItem* );
49 52
50private: 53private:
51 void makeMenu(); 54 void makeMenu();
52 void setSections(); 55 void setSections();
53 void setSubSections(); 56 void setSubSections();
54 57
55 PmIpkg* ipkg; 58 PmIpkg* ipkg;
56 PackageManagerSettings *settings; 59 PackageManagerSettings *settings;
57 PackageDetails* details; 60 PackageDetails* details;
58 PackageList packageList; 61 PackageList packageList;
59 Package *activePackage; 62 Package *activePackage;
63 PackageListItem *activePackageListItem;
60 QAction *runAction; 64 QAction *runAction;
61 QAction *detailsAction; 65 QAction *detailsAction;
62 QAction *updateAction; 66 QAction *updateAction;
63 QAction *findAction; 67 QAction *findAction;
64 QAction *sectionAction; 68 QAction *sectionAction;
65 QListView *listViewPackages; 69 QListView *listViewPackages;
66 QPopupMenu *contextMenu;
67 QPEToolBar *findBar; 70 QPEToolBar *findBar;
68 QLineEdit *findEdit; 71 QLineEdit *findEdit;
69 QPEToolBar *sectionBar; 72 QPEToolBar *sectionBar;
70 QComboBox *section; 73 QComboBox *section;
71 QComboBox *subsection; 74 QComboBox *subsection;
75 QTimer *popupTimer;
72 QPopupMenu *popupMenu; 76 QPopupMenu *popupMenu;
77 QPopupMenu *destsMenu;
73 bool updateIcon; 78 bool updateIcon;
74private slots: 79private slots:
75 void rotateUpdateIcon(); 80 void rotateUpdateIcon();
76}; 81};
77 82
78#endif 83#endif