StartGameTab.h 541 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef STARTGAMETAB_H
  2. #define STARTGAMETAB_H
  3. #include <QWidget>
  4. namespace Ui
  5. {
  6. class StartGameTab;
  7. }
  8. class MainWindow;
  9. class StartGameTab : public QWidget
  10. {
  11. Q_OBJECT
  12. MainWindow * getMainWindow();
  13. void refreshState();
  14. public:
  15. explicit StartGameTab(QWidget * parent = nullptr);
  16. ~StartGameTab();
  17. private slots:
  18. void on_buttonGameStart_clicked();
  19. void on_buttonOpenChangelog_clicked();
  20. void on_buttonOpenDownloads_clicked();
  21. void on_buttonUpdateCheck_clicked();
  22. private:
  23. Ui::StartGameTab * ui;
  24. };
  25. #endif // STARTGAMETAB_H