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.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/noncore/settings/aqpkg/mainwin.h b/noncore/settings/aqpkg/mainwin.h
new file mode 100644
index 0000000..2a182fc
--- a/dev/null
+++ b/noncore/settings/aqpkg/mainwin.h
@@ -0,0 +1,47 @@
1/***************************************************************************
2 mainwin.h - description
3 -------------------
4 begin : Mon Aug 26 13:32:30 BST 2002
5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
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 *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef MAINWIN_H
19#define MAINWIN_H
20
21#include <qmainwindow.h>
22#include <qwidgetstack.h>
23
24
25class NetworkPackageManager;
26class DataManager;
27
28class MainWindow :public QMainWindow
29{
30 Q_OBJECT
31public:
32
33 MainWindow( QWidget *p = 0, char *name = 0 );
34 ~MainWindow();
35
36private:
37 DataManager *mgr;
38
39 QWidgetStack *stack;
40 NetworkPackageManager *networkPkgWindow;
41
42public slots:
43 void displayHelp();
44 void displayAbout();
45 void displaySettings();
46};
47#endif