]> git.sesse.net Git - nageru/blob - mainwindow.h
Add mute buttons.
[nageru] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5 #include <chrono>
6 #include <string>
7 #include <vector>
8 #include <sys/time.h>
9
10 #include "midi_mapper.h"
11 #include "mixer.h"
12
13 class GLWidget;
14 class Ui_AudioExpandedView;
15 class QResizeEvent;
16
17 namespace Ui {
18 class AudioExpandedView;
19 class AudioMiniView;
20 class Display;
21 class MainWindow;
22 }  // namespace Ui
23
24 class QDial;
25 class QLabel;
26 class QPushButton;
27
28 class MainWindow : public QMainWindow, public ControllerReceiver
29 {
30         Q_OBJECT
31
32 public:
33         MainWindow();
34         void resizeEvent(QResizeEvent *event) override;
35         void mixer_created(Mixer *mixer);
36
37         // Used to release FBOs on the global ResourcePool. Call after the
38         // mixer has been shut down but not destroyed yet.
39         void mixer_shutting_down();
40
41 public slots:
42         void cut_triggered();
43         void x264_bitrate_triggered();
44         void exit_triggered();
45         void about_triggered();
46         void simple_audio_mode_triggered();
47         void multichannel_audio_mode_triggered();
48         void input_mapping_triggered();
49         void midi_mapping_triggered();
50         void transition_clicked(int transition_number);
51         void channel_clicked(int channel_number);
52         void wb_button_clicked(int channel_number);
53         void set_transition_names(std::vector<std::string> transition_names);
54         void update_channel_name(Mixer::Output output, const std::string &name);
55         void update_channel_color(Mixer::Output output, const std::string &color);
56         void gain_staging_knob_changed(unsigned bus_index, int value);
57         void final_makeup_gain_knob_changed(int value);
58         void cutoff_knob_changed(int value);
59         void eq_knob_changed(unsigned bus_index, EQBand band, int value);
60         void limiter_threshold_knob_changed(int value);
61         void compressor_threshold_knob_changed(unsigned bus_index, int value);
62         void mini_fader_changed(int bus, double db_volume);
63         void mute_button_toggled(int bus, bool checked);
64         void reset_meters_button_clicked();
65         void relayout();
66
67         // ControllerReceiver interface.
68         void set_locut(float value) override;
69         void set_limiter_threshold(float value) override;
70         void set_makeup_gain(float value) override;
71
72         void set_treble(unsigned bus_idx, float value) override;
73         void set_mid(unsigned bus_idx, float value) override;
74         void set_bass(unsigned bus_idx, float value) override;
75         void set_gain(unsigned bus_idx, float value) override;
76         void set_compressor_threshold(unsigned bus_idx, float value) override;
77         void set_fader(unsigned bus_idx, float value) override;
78
79         void toggle_mute(unsigned bus_idx) override;
80         void toggle_locut(unsigned bus_idx) override;
81         void toggle_auto_gain_staging(unsigned bus_idx) override;
82         void toggle_compressor(unsigned bus_idx) override;
83         void clear_peak(unsigned bus_idx) override;
84         void toggle_limiter() override;
85         void toggle_auto_makeup_gain() override;
86
87         void clear_all_highlights() override;
88
89         void highlight_locut(bool highlight) override;
90         void highlight_limiter_threshold(bool highlight) override;
91         void highlight_makeup_gain(bool highlight) override;
92
93         void highlight_treble(unsigned bus_idx, bool highlight) override;
94         void highlight_mid(unsigned bus_idx, bool highlight) override;
95         void highlight_bass(unsigned bus_idx, bool highlight) override;
96         void highlight_gain(unsigned bus_idx, bool highlight) override;
97         void highlight_compressor_threshold(unsigned bus_idx, bool highlight) override;
98         void highlight_fader(unsigned bus_idx, bool highlight) override;
99
100         void highlight_mute(unsigned bus_idx, bool highlight) override;
101         void highlight_toggle_locut(unsigned bus_idx, bool highlight) override;
102         void highlight_toggle_auto_gain_staging(unsigned bus_idx, bool highlight) override;
103         void highlight_toggle_compressor(unsigned bus_idx, bool highlight) override;
104         void highlight_clear_peak(unsigned bus_idx, bool highlight) override {}  // We don't mark this currently.
105         void highlight_toggle_limiter(bool highlight) override;
106         void highlight_toggle_auto_makeup_gain(bool highlight) override;
107
108         // Raw receivers are not used.
109         void controller_changed(unsigned controller) override {}
110         void note_on(unsigned note) override {}
111
112 private:
113         void reset_audio_mapping_ui();
114         void setup_audio_miniview();
115         void setup_audio_expanded_view();
116         bool eventFilter(QObject *watched, QEvent *event) override;
117         void set_white_balance(int channel_number, int x, int y);
118         void update_cutoff_labels(float cutoff_hz);
119         void update_eq_label(unsigned bus_index, EQBand band, float gain_db);
120
121         // Called from DiskSpaceEstimator.
122         void report_disk_space(off_t free_bytes, double estimated_seconds_left);
123
124         // Called from the mixer.
125         void audio_level_callback(float level_lufs, float peak_db, std::vector<AudioMixer::BusLevel> bus_levels, float global_level_lufs, float range_low_lufs, float range_high_lufs, float final_makeup_gain_db, float correlation);
126         std::chrono::steady_clock::time_point last_audio_level_callback;
127
128         void audio_state_changed();
129
130         template<class T>
131         void set_relative_value(T *control, float value);
132
133         template<class T>
134         void set_relative_value_if_exists(unsigned bus_idx, T *Ui_AudioExpandedView::*control, float value);
135
136         template<class T>
137         void click_button_if_exists(unsigned bus_idx, T *Ui_AudioExpandedView::*control);
138
139         template<class T>
140         void highlight_control(T *control, bool highlight);
141
142         template<class T>
143         void highlight_mute_control(T *control, bool highlight);
144
145         template<class T>
146         void highlight_control_if_exists(unsigned bus_idx, T *(Ui_AudioExpandedView::*control), bool highlight, bool is_mute_button = false);
147
148         Ui::MainWindow *ui;
149         QLabel *disk_free_label;
150         QPushButton *transition_btn1, *transition_btn2, *transition_btn3;
151         std::vector<Ui::Display *> previews;
152         std::vector<Ui::AudioMiniView *> audio_miniviews;
153         std::vector<Ui::AudioExpandedView *> audio_expanded_views;
154         int current_wb_pick_display = -1;
155         MIDIMapper midi_mapper;
156 };
157
158 extern MainWindow *global_mainwindow;
159
160 #endif