]> git.sesse.net Git - pkanalytics/blob - mainwindow.h
Fix formation JSON export.
[pkanalytics] / mainwindow.h
1 #include <QMediaPlayer>
2 #include <QMainWindow>
3 #include <QApplication>
4 #include <stdint.h>
5 #include <optional>
6 #include "ui_mainwindow.h"
7
8 class EventsModel;
9 class PlayersModel;
10 class FormationsModel;
11
12 class MainWindow : public QMainWindow
13 {
14         Q_OBJECT
15
16 public:
17         MainWindow(EventsModel *events, PlayersModel *players,
18                    FormationsModel *offensive_formations, FormationsModel *defensive_formations);
19
20 private:
21         void position_changed(uint64_t pos);
22         void seek(int64_t delta_ms);
23         void insert_player_event(int button_id);
24         void insert_noplayer_event(const std::string &type);
25         void set_current_event_type(const std::string &type);
26         void delete_current_event();
27         void make_substitution();
28         void formation_double_clicked(bool offense, unsigned row);
29
30         void update_ui_from_time(uint64_t t);
31         void update_status(uint64_t t);
32         void update_player_buttons(uint64_t t);
33         void update_action_buttons(uint64_t t);
34
35         Ui::MainWindow *ui;
36         EventsModel *events;
37         PlayersModel *players;
38         FormationsModel *offensive_formations;
39         FormationsModel *defensive_formations;
40         bool seeking = false;
41         bool playing = true;
42         std::optional<uint64_t> buffered_seek;
43         QMediaPlayer *video;
44 };