summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/aqpkg/mainwin.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/mainwin.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/mainwin.h b/noncore/settings/aqpkg/mainwin.h
index 39799f9..028ef5b 100644
--- a/noncore/settings/aqpkg/mainwin.h
+++ b/noncore/settings/aqpkg/mainwin.h
@@ -18,10 +18,14 @@
#ifndef MAINWIN_H
#define MAINWIN_H
#include <qmainwindow.h>
-#include <qwidgetstack.h>
+#include <qpixmap.h>
+//#include <qwidgetstack.h>
+class QWidgetStack;
+class QPEToolBar;
+class QAction;
class ProgressWidget;
class NetworkPackageManager;
class DataManager;
@@ -29,9 +33,9 @@ class MainWindow :public QMainWindow
{
Q_OBJECT
public:
- MainWindow( QWidget *p = 0, char *name = 0 );
+ MainWindow();
~MainWindow();
private:
DataManager *mgr;
@@ -40,10 +44,14 @@ private:
QPopupMenu *help;
QPopupMenu *settings;
QPopupMenu *edit;
QPopupMenu *filter;
- QWidgetStack *stack;
-
+ QWidgetStack *stack;
+ QAction *actionUpgrade;
+ QAction *actionDownload;
+ QPixmap iconDownload;
+ QPixmap iconRemove;
+
NetworkPackageManager *networkPkgWindow;
ProgressWidget *progressWindow;
int mnuShowUninstalledPkgsId;
@@ -65,8 +73,10 @@ public slots:
void filterCategory();
void setFilterCategory();
void raiseMainWidget();
void raiseProgressWidget();
+ void enableUpgrade( bool );
+ void enableDownload( bool );
private slots:
void init();
};