view ui/managementwindow.h @ 330:1e6d1eab8395

Fix NSS unit test for Windows and change how instructions are written This was supposed to fix the block on error. But it did not.
author Andre Heinecke <aheinecke@intevation.de>
date Tue, 08 Apr 2014 15:08:57 +0000
parents 3261b2a9cab7
children
line wrap: on
line source
#ifndef MANAGEMENTWINDOW_H
#define MANAGEMENTWINDOW_H

/**
 * @file managementwindow.h
 * @brief Management UI controller
 */

#include <QMainWindow>
#include <QSettings>
#include <QMenuBar>
#include <QListWidget>
#include <QPushButton>

class QMenu;
class QAction;

class ManagementWindow : public QMainWindow
{
    Q_OBJECT

public:
    ManagementWindow();

private slots:
    void createInstaller();
    void showSettings();
    void showHelp();
    void showAbout();

private:
    void createActions();
    void createMenuBar();
    void createContent();

    QSettings settings;

    QMenuBar *menuBar;

    QListWidget *certificateList;
    QPushButton *saveButton;
    QPushButton *loadButton;
    QPushButton *addButton;
    QPushButton *removeButton;
};

#endif // MANAGEMENTWINDOW_H

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