-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultswindow.h
61 lines (42 loc) · 1.39 KB
/
resultswindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef RESULTSWINDOW_H
#define RESULTSWINDOW_H
#include <QDialog>
#include <QListWidget>
#include <QTableWidget>
#include <QTimer>
/* okna do prezentacji wynikow
* tabele dopasowuja sie do ilosci zespolow lub gdy jest ich bardzo duzo
* to wtedy sa przewijane automatycznie
* mozna wyswietlic komentarz dla publiki/zespolow
* pokazuje trzy nastepne zespoly ktore powinny sie przygotowywac*/
namespace Ui {
class resultswindow;
}
class resultswindow : public QDialog
{
Q_OBJECT
public slots:
//slot odbierajacy wyniki z okna glownego
void receive_results_for_Public(const QListWidget *nextTeamList,const QTableWidget *RCSTrankingtable
,const QTableWidget *RCrankingtable,const QTableWidget *AUTONOMrankingtable);
//slot odbierajacy komentarz z okna glowniego
void receive_comment_for_Public(const QString &mComment);
private slots:
// tick czasowy co jak nastepuje scrollowanie tabel
void swapTimeTick();
public:
explicit resultswindow(QWidget *parent = 0);
~resultswindow();
QString mCommentPublic;
int swapTimerTickCounter=0;
//przelicza ms na min:sec:msec
QString race_time_format(int mseconds);
QTimer *swapTimer=new QTimer(this);
int swap_seconds=0;
int scrolled_value_RCST=0;
int scrolled_value_RC=0;
int scrolled_value_AUTONOM=0;
private:
Ui::resultswindow *ui;
};
#endif // RESULTSWINDOW_H