]> git.sesse.net Git - nageru/blob - mainwindow.h
Show the current resolution next to the inputs.
[nageru] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5 #include <string>
6 #include <vector>
7 #include <sys/time.h>
8
9 #include "mixer.h"
10
11 class GLWidget;
12 class QResizeEvent;
13
14 namespace Ui {
15 class Display;
16 class MainWindow;
17 }  // namespace Ui
18
19 class QPushButton;
20
21 class MainWindow : public QMainWindow
22 {
23         Q_OBJECT
24
25 public:
26         MainWindow();
27         void resizeEvent(QResizeEvent *event) override;
28         void mixer_created(Mixer *mixer);
29
30 public slots:
31         void transition_clicked(int transition_number);
32         void channel_clicked(int channel_number);
33         void wb_button_clicked(int channel_number);
34         void set_transition_names(std::vector<std::string> transition_names);
35         void update_channel_name(Mixer::Output output);
36         void cutoff_knob_changed(int value);
37         void limiter_threshold_knob_changed(int value);
38         void compressor_threshold_knob_changed(int value);
39         void reset_meters_button_clicked();
40         void relayout();
41
42 private:
43         bool eventFilter(QObject *watched, QEvent *event) override;
44         void set_white_balance(int channel_number, int x, int y);
45
46         // Called from the mixer.
47         void audio_level_callback(float level_lufs, float peak_db, float global_level_lufs, float range_low_lufs, float range_high_lufs, float auto_gain_staging_db);
48         timeval last_audio_level_callback{0, 0};
49
50         Ui::MainWindow *ui;
51         QPushButton *transition_btn1, *transition_btn2, *transition_btn3;
52         std::vector<Ui::Display *> previews;
53         int current_wb_pick_display = -1;
54 };
55
56 extern MainWindow *global_mainwindow;
57
58 #endif