Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef MAINWINDOW_H
- #define MAINWINDOW_H
- #include <QMainWindow>
- QT_BEGIN_NAMESPACE
- class QAction;
- class QMenu;
- class QHBoxLayout;
- class QSplitter;
- class QFrame;
- QT_END_NAMESPACE
- class MainWindow : public QMainWindow
- {
- Q_OBJECT
- public:
- MainWindow();
- private:
- void createActions();
- void createMenus();
- void setupUi(QMainWindow *MainWindow);
- QMenu *fileMenu;
- QAction *exitAct;
- QWidget *centralwidget;
- QHBoxLayout *horizontalLayout;
- QSplitter *splitter;
- QFrame *frame;
- QFrame *frame_2;
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment