etiam

mainwindow.h

Apr 26th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5.  
  6. QT_BEGIN_NAMESPACE
  7. class QAction;
  8. class QMenu;
  9. class QHBoxLayout;
  10. class QSplitter;
  11. class QFrame;
  12. QT_END_NAMESPACE
  13.  
  14. class MainWindow : public QMainWindow
  15. {
  16.     Q_OBJECT
  17.  
  18. public:
  19.     MainWindow();
  20.  
  21. private:
  22.     void createActions();
  23.     void createMenus();
  24.     void setupUi(QMainWindow *MainWindow);
  25.  
  26.     QMenu *fileMenu;
  27.     QAction *exitAct;
  28.  
  29.     QWidget *centralwidget;
  30.     QHBoxLayout *horizontalLayout;
  31.     QSplitter *splitter;
  32.     QFrame *frame;
  33.     QFrame *frame_2;
  34. };
  35.  
  36. #endif
Advertisement
Add Comment
Please, Sign In to add comment