added usb-racemode, database needs to be reconfigured and colors in timemodel needs to be adapted

This commit is contained in:
2017-09-09 19:26:48 +02:00
parent 8c635096ec
commit 631b1bc6c5
10 changed files with 213 additions and 101 deletions

View File

@@ -11,6 +11,7 @@
#include "database.h"
#include "windowrennliste.h"
#include <QMessageBox>
#include "timemodel.h"
using std::string;
@@ -44,8 +45,10 @@ private:
Counter counterDea;
bool firstTimeShell;
bool firstTimeDea;
std::vector<long> VecShell;
std::vector<long> VecDea;
QVector<QVector<int>> VecShell;
QVector<QVector<int>> VecDea;
TimeModel *timeModelShell;
TimeModel *timeModelDea;
long getMinimum(std::vector<long> a);
QString timeWrapper(long zahl);
long countdownValue; //in sec
@@ -68,8 +71,8 @@ public slots:
void go();
void ampelSlot();
void laufcheck();
void deaSlot();
void shellSlot();
void deaSlot(int, int);
void shellSlot(int, int);
void ReturnPress();
};