44 lines
886 B
C++
44 lines
886 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
//#include "mainwindow2.h"
|
|
#include "evaluation.h"
|
|
#include "hardwaresetup.h"
|
|
#include "training.h"
|
|
#include "windowrace.h"
|
|
#include "windowrennliste.h"
|
|
#include "windowrennliste2.h"
|
|
#include "windowssettings.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget * parent = 0);
|
|
~MainWindow();
|
|
|
|
public slots:
|
|
void NewWindowSettings();
|
|
void WindowRennen();
|
|
void WindowTraining();
|
|
void WindowEvaluation();
|
|
|
|
private:
|
|
Training * interfaceTraining;
|
|
void closeEvent(QCloseEvent * event);
|
|
DataBase * db;
|
|
Ui::MainWindow * ui;
|
|
WindowRace * interfaceRace;
|
|
WindowsSettings * interfaceSettings;
|
|
WindowRennliste * interfaceRennliste;
|
|
Evaluation * interfaceEvaluation;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|