summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_format_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-02 15:43:22 +0200
committerRobin Gareus <robin@gareus.org>2016-05-02 15:44:13 +0200
commit1fc50d4c9fbc2c47d1a112b359c3013aae537c13 (patch)
tree77d366e7f008034f64920e6814237181b3d92fb3 /gtk2_ardour/export_format_dialog.h
parentd01cb7910faddbf13b7190ceca990a2cafb71f95 (diff)
Export format GUI updates for loudness normalization
Diffstat (limited to 'gtk2_ardour/export_format_dialog.h')
-rw-r--r--gtk2_ardour/export_format_dialog.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/gtk2_ardour/export_format_dialog.h b/gtk2_ardour/export_format_dialog.h
index 6197d0d7be..8709ff979b 100644
--- a/gtk2_ardour/export_format_dialog.h
+++ b/gtk2_ardour/export_format_dialog.h
@@ -126,6 +126,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList
void update_trim_end_selection ();
void update_normalize_selection ();
+ void update_normalize_sensitivity ();
void update_silence_start_selection ();
void update_silence_end_selection ();
@@ -163,9 +164,17 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList
Gtk::HBox normalize_hbox;
Gtk::CheckButton normalize_checkbox;
- Gtk::SpinButton normalize_spinbutton;
- Gtk::Adjustment normalize_adjustment;
- Gtk::Label normalize_db_label;
+ Gtk::RadioButton normalize_peak_rb;
+ Gtk::RadioButton normalize_loudness_rb;
+ Gtk::SpinButton normalize_dbfs_spinbutton;
+ Gtk::Adjustment normalize_dbfs_adjustment;
+ Gtk::SpinButton normalize_lufs_spinbutton;
+ Gtk::Adjustment normalize_lufs_adjustment;
+ Gtk::SpinButton normalize_dbtp_spinbutton;
+ Gtk::Adjustment normalize_dbtp_adjustment;
+ Gtk::Label normalize_dbfs_label;
+ Gtk::Label normalize_lufs_label;
+ Gtk::Label normalize_dbtp_label;
/* Silence */