]> git.sesse.net Git - pkanalytics/blobdiff - mainwindow.h
Add per-point CIs.
[pkanalytics] / mainwindow.h
index 9f27068b0dc5089cd710c55f0c795c2c256ae05b..2d702c75a4d8544b2d861ec25368e71547d6b607 100644 (file)
@@ -18,11 +18,16 @@ public:
 private:
        void position_changed(uint64_t pos);
        void seek(int64_t delta_ms);
-       void insert_event(int button_id);
+       void insert_player_event(int button_id);
+       void insert_noplayer_event(const std::string &type);
        void set_current_event_type(const std::string &type);
        void delete_current_event();
        void make_substitution();
-       void update_status();
+
+       void update_ui_from_time(uint64_t t);
+       void update_status(uint64_t t);
+       void update_player_buttons(uint64_t t);
+       void update_action_buttons(uint64_t t);
 
        Ui::MainWindow *ui;
        EventsModel *events;
@@ -30,5 +35,5 @@ private:
        bool seeking = false;
        bool playing = true;
        std::optional<uint64_t> buffered_seek;
-       QMediaPlayer *player;
+       QMediaPlayer *video;
 };