Typica is a free program for professional coffee roasters. https://typica.us
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.

MainWindow.h 496B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @file MainWindow.h
  3. * @brief Application's Main Window.
  4. * @see MainWindow
  5. * @author Micha? Policht
  6. */
  7. #ifndef MAINWINDOW_H_
  8. #define MAINWINDOW_H_
  9. #include <QMainWindow>
  10. class QMenu;
  11. class QAction;
  12. class MainWindow : public QMainWindow
  13. {
  14. Q_OBJECT
  15. QMenu *fileMenu;
  16. QAction *exitAct;
  17. QMenu *helpMenu;
  18. QAction *aboutAct;
  19. private:
  20. void createMenus();
  21. void createActions();
  22. private slots:
  23. void about();
  24. public:
  25. MainWindow();
  26. };
  27. #endif /*MAINWINDOW_H_*/