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
@@ -17,6 +17,7 @@ class 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{
@@ -26,12 +27,12 @@ class MainWindow : public QMainWindow
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();
@@ -45,6 +46,8 @@ public slots:
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 &);
@@ -60,17 +63,20 @@ private:
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};