13 #include "audio_mixer.h"
14 #include "midi_mapper.h"
20 class Ui_AudioExpandedView;
23 class AudioExpandedView;
32 class MainWindow : public QMainWindow, public ControllerReceiver
38 void resizeEvent(QResizeEvent *event) override;
39 void mixer_created(Mixer *mixer);
41 // Used to release FBOs on the global ResourcePool. Call after the
42 // mixer has been shut down but not destroyed yet.
43 void mixer_shutting_down();
47 void x264_bitrate_triggered();
48 void exit_triggered();
49 void manual_triggered();
50 void about_triggered();
51 void open_analyzer_triggered();
52 void simple_audio_mode_triggered();
53 void multichannel_audio_mode_triggered();
54 void input_mapping_triggered();
55 void midi_mapping_triggered();
56 void timecode_stream_triggered();
57 void timecode_stdout_triggered();
58 void transition_clicked(int transition_number);
59 void channel_clicked(int channel_number);
60 void quick_cut_activated(int channel_number);
61 void wb_button_clicked(int channel_number);
62 void audio_view_changed(int audio_view);
63 void set_transition_names(std::vector<std::string> transition_names);
64 void update_channel_name(Mixer::Output output, const std::string &name);
65 void update_channel_color(Mixer::Output output, const std::string &color);
66 void gain_staging_knob_changed(unsigned bus_index, int value);
67 void final_makeup_gain_knob_changed(int value);
68 void cutoff_knob_changed(int value);
69 void eq_knob_changed(unsigned bus_index, EQBand band, int value);
70 void limiter_threshold_knob_changed(int value);
71 void compressor_threshold_knob_changed(unsigned bus_index, int value);
72 void mini_fader_changed(int bus, double db_volume);
73 void mute_button_toggled(int bus, bool checked);
74 void reset_meters_button_clicked();
77 // ControllerReceiver interface.
78 void set_locut(float value) override;
79 void set_limiter_threshold(float value) override;
80 void set_makeup_gain(float value) override;
82 void set_treble(unsigned bus_idx, float value) override;
83 void set_mid(unsigned bus_idx, float value) override;
84 void set_bass(unsigned bus_idx, float value) override;
85 void set_gain(unsigned bus_idx, float value) override;
86 void set_compressor_threshold(unsigned bus_idx, float value) override;
87 void set_fader(unsigned bus_idx, float value) override;
89 void toggle_mute(unsigned bus_idx) override;
90 void toggle_locut(unsigned bus_idx) override;
91 void toggle_auto_gain_staging(unsigned bus_idx) override;
92 void toggle_compressor(unsigned bus_idx) override;
93 void clear_peak(unsigned bus_idx) override;
94 void toggle_limiter() override;
95 void toggle_auto_makeup_gain() override;
97 void clear_all_highlights() override;
99 void highlight_locut(bool highlight) override;
100 void highlight_limiter_threshold(bool highlight) override;
101 void highlight_makeup_gain(bool highlight) override;
103 void highlight_treble(unsigned bus_idx, bool highlight) override;
104 void highlight_mid(unsigned bus_idx, bool highlight) override;
105 void highlight_bass(unsigned bus_idx, bool highlight) override;
106 void highlight_gain(unsigned bus_idx, bool highlight) override;
107 void highlight_compressor_threshold(unsigned bus_idx, bool highlight) override;
108 void highlight_fader(unsigned bus_idx, bool highlight) override;
110 void highlight_mute(unsigned bus_idx, bool highlight) override;
111 void highlight_toggle_locut(unsigned bus_idx, bool highlight) override;
112 void highlight_toggle_auto_gain_staging(unsigned bus_idx, bool highlight) override;
113 void highlight_toggle_compressor(unsigned bus_idx, bool highlight) override;
114 void highlight_clear_peak(unsigned bus_idx, bool highlight) override {} // We don't mark this currently.
115 void highlight_toggle_limiter(bool highlight) override;
116 void highlight_toggle_auto_makeup_gain(bool highlight) override;
118 // Raw receivers are not used.
119 void controller_changed(unsigned controller) override {}
120 void note_on(unsigned note) override {}
123 void reset_audio_mapping_ui();
124 void setup_audio_miniview();
125 void setup_audio_expanded_view();
126 bool eventFilter(QObject *watched, QEvent *event) override;
127 void closeEvent(QCloseEvent *event) override;
128 void update_cutoff_labels(float cutoff_hz);
129 void update_eq_label(unsigned bus_index, EQBand band, float gain_db);
130 void setup_theme_menu();
132 // Called from DiskSpaceEstimator.
133 void report_disk_space(off_t free_bytes, double estimated_seconds_left);
135 // Called from the mixer.
136 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);
137 std::chrono::steady_clock::time_point last_audio_level_callback;
139 void audio_state_changed();
142 void set_relative_value(T *control, float value);
145 void set_relative_value_if_exists(unsigned bus_idx, T *Ui_AudioExpandedView::*control, float value);
148 void click_button_if_exists(unsigned bus_idx, T *Ui_AudioExpandedView::*control);
151 void highlight_control(T *control, bool highlight);
154 void highlight_mute_control(T *control, bool highlight);
157 void highlight_control_if_exists(unsigned bus_idx, T *(Ui_AudioExpandedView::*control), bool highlight, bool is_mute_button = false);
160 QLabel *disk_free_label;
161 QMenu *theme_menu = nullptr;
162 QPushButton *transition_btn1, *transition_btn2, *transition_btn3;
163 std::vector<Ui::Display *> previews;
164 std::vector<Ui::AudioMiniView *> audio_miniviews;
165 std::vector<Ui::AudioExpandedView *> audio_expanded_views;
166 int current_wb_pick_display = -1;
167 int current_audio_view = -1;
168 MIDIMapper midi_mapper;
169 std::unique_ptr<Analyzer> analyzer;
172 extern MainWindow *global_mainwindow;