comparison ui/administratorwindow.h @ 336:26817025351f

merge
author Andre Heinecke <aheinecke@intevation.de>
date Wed, 09 Apr 2014 13:49:59 +0000
parents 811eec4e1b99
children e3d6de930c90
comparison
equal deleted inserted replaced
332:81a205fc651e 336:26817025351f
1 #ifndef ADMINSTRATORWINDOW_H
2 #define ADMINSTRATORWINDOW_H
3
4 /**
5 * @file administratorwindow.h
6 * @brief Administrator UI controller
7 */
8
9 #include <QMainWindow>
10 #include <QSettings>
11 #include <QMenuBar>
12 #include <QTableView>
13 #include <QPushButton>
14
15 class QMenu;
16 class QAction;
17
18 class AdministratorWindow : public QMainWindow
19 {
20 Q_OBJECT
21
22 public:
23 AdministratorWindow();
24
25 private slots:
26 void createInstaller();
27 void showSettings();
28 void showHelp();
29 void showAbout();
30
31 private:
32 void createActions();
33 void createMenuBar();
34 void createContent();
35
36 QSettings settings;
37
38 QMenuBar *menuBar;
39
40 QTableView *certificateView;
41 QPushButton *saveButton;
42 QPushButton *loadButton;
43 QPushButton *addButton;
44 QPushButton *removeButton;
45 };
46
47 #endif // ADMINSTRATORWINDOW_H

http://wald.intevation.org/projects/trustbridge/