You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
542 B
38 lines
542 B
/** |
|
* @file MainWindow.h |
|
* @brief Application's Main Window. |
|
* @see MainWindow |
|
* @author Micha? Policht |
|
*/ |
|
|
|
#ifndef MAINWINDOW_H_ |
|
#define MAINWINDOW_H_ |
|
|
|
#include <QMainWindow> |
|
|
|
class QMenu; |
|
class QAction; |
|
|
|
class MainWindow : public QMainWindow |
|
{ |
|
Q_OBJECT |
|
|
|
QMenu *fileMenu; |
|
QAction *exitAct; |
|
QMenu *helpMenu; |
|
QAction *aboutAct; |
|
|
|
private: |
|
void createMenus(); |
|
void createActions(); |
|
|
|
private slots: |
|
void about(); |
|
|
|
public: |
|
MainWindow(); |
|
|
|
}; |
|
|
|
#endif /*MAINWINDOW_H_*/ |
|
|
|
|