summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/mainwindow.h
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/mainwindow.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/noncore/unsupported/oipkg/mainwindow.h b/noncore/unsupported/oipkg/mainwindow.h
index a713d00..7615b09 100644
--- a/noncore/unsupported/oipkg/mainwindow.h
+++ b/noncore/unsupported/oipkg/mainwindow.h
@@ -14,27 +14,28 @@
14class QComboBox; 14class QComboBox;
15class QPEToolBar; 15class QPEToolBar;
16class QLineEdit; 16class QLineEdit;
17class PackageListItem; 17class PackageListItem;
18class QCopChannel; 18class QCopChannel;
19class QMessageBox; 19class QMessageBox;
20class QCheckBox;
20 21
21class MainWindow : public QMainWindow 22class MainWindow : public QMainWindow
22{ 23{
23 Q_OBJECT 24 Q_OBJECT
24 25
25 26
26public: 27public:
27 MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 28 MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
28 ~MainWindow(); 29 ~MainWindow();
30 void makeChannel();
29 31
30 QCopChannel *channel; 32 QCopChannel *channel;
31 33
32protected slots: 34protected slots:
33 void runIpkg(); 35 void runIpkg();
34 void getList();
35 void updateList(); 36 void updateList();
36 void displayList(); 37 void displayList();
37 void subSectionChanged(); 38 void subSectionChanged();
38 void sectionChanged(); 39 void sectionChanged();
39 void showSettings(); 40 void showSettings();
40 void showSettingsSrv(); 41 void showSettingsSrv();
@@ -42,12 +43,14 @@ protected slots:
42 43
43public slots: 44public slots:
44 void sectionClose(); 45 void sectionClose();
45 void sectionShow(bool); 46 void sectionShow(bool);
46 void findClose(); 47 void findClose();
47 void findShow(bool); 48 void findShow(bool);
49 void destClose();
50 void destShow(bool);
48 void filterList(); 51 void filterList();
49 void receive (const QCString &, const QByteArray &); 52 void receive (const QCString &, const QByteArray &);
50 void setDocument (const QString &); 53 void setDocument (const QString &);
51 54
52private: 55private:
53 void makeMenu(); 56 void makeMenu();
@@ -57,22 +60,25 @@ private:
57 bool updateIcon; 60 bool updateIcon;
58 61
59 PmIpkg* ipkg; 62 PmIpkg* ipkg;
60 PackageManagerSettings *settings; 63 PackageManagerSettings *settings;
61 PackageList packageList; 64 PackageList packageList;
62 QAction *runAction; 65 QAction *runAction;
63 QAction *detailsAction;
64 QAction *updateAction; 66 QAction *updateAction;
65 QAction *findAction; 67 QAction *findAction;
66 QAction *sectionAction; 68 QAction *sectionAction;
69 QAction *destAction;
67 PackageListView *listViewPackages; 70 PackageListView *listViewPackages;
68 QPEToolBar *findBar; 71 QPEToolBar *findBar;
69 QLineEdit *findEdit; 72 QLineEdit *findEdit;
70 QPEToolBar *sectionBar; 73 QPEToolBar *sectionBar;
71 QComboBox *section; 74 QComboBox *section;
72 QComboBox *subsection; 75 QComboBox *subsection;
73 QMessageBox *wait; 76 QPEToolBar *destBar;
77 QComboBox *destination;
78 QCheckBox* CheckBoxLink;
79// QMessageBox *wait;
74private slots: 80private slots:
75 void rotateUpdateIcon(); 81 void rotateUpdateIcon();
76}; 82};
77 83
78#endif 84#endif