mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
Use non-deprecated Gtkmm alignment enums
This commit is contained in:
parent
e68ded449f
commit
799158c508
21 changed files with 118 additions and 116 deletions
|
|
@ -36,8 +36,8 @@ ExportFormatDialog::ExportFormatDialog (FormatPtr format, bool new_dialog) :
|
|||
|
||||
applying_changes_from_engine (0),
|
||||
|
||||
name_label (_("Label: "), Gtk::ALIGN_LEFT),
|
||||
name_generated_part ("", Gtk::ALIGN_LEFT),
|
||||
name_label (_("Label: "), Gtk::ALIGN_START),
|
||||
name_generated_part ("", Gtk::ALIGN_START),
|
||||
|
||||
normalize_checkbox (_("Normalize:")),
|
||||
normalize_peak_rb (_("Peak")),
|
||||
|
|
@ -46,9 +46,9 @@ ExportFormatDialog::ExportFormatDialog (FormatPtr format, bool new_dialog) :
|
|||
normalize_lufs_adjustment (-23.0, -90.00, 0.00, 0.1, 1.0),
|
||||
normalize_dbtp_adjustment ( -1.0, -90.00, 0.00, 0.1, 0.2),
|
||||
|
||||
normalize_dbfs_label (_("dBFS"), Gtk::ALIGN_LEFT),
|
||||
normalize_lufs_label (_("LUFS"), Gtk::ALIGN_LEFT),
|
||||
normalize_dbtp_label (_("dBTP"), Gtk::ALIGN_LEFT),
|
||||
normalize_dbfs_label (_("dBFS"), Gtk::ALIGN_START),
|
||||
normalize_lufs_label (_("LUFS"), Gtk::ALIGN_START),
|
||||
normalize_dbtp_label (_("dBTP"), Gtk::ALIGN_START),
|
||||
|
||||
silence_table (2, 4),
|
||||
trim_start_checkbox (_("Trim silence at start")),
|
||||
|
|
@ -59,21 +59,21 @@ ExportFormatDialog::ExportFormatDialog (FormatPtr format, bool new_dialog) :
|
|||
silence_end_checkbox (_("Add silence at end:")),
|
||||
silence_end_clock ("silence_end", true, "", true, false, true),
|
||||
|
||||
command_label(_("Command to run post-export\n(%f=file path, %d=directory, %b=basename, see tooltip for more):"), Gtk::ALIGN_LEFT),
|
||||
command_label(_("Command to run post-export\n(%f=file path, %d=directory, %b=basename, see tooltip for more):"), Gtk::ALIGN_START),
|
||||
|
||||
format_table (3, 4),
|
||||
compatibility_label (_("Compatibility"), Gtk::ALIGN_LEFT),
|
||||
quality_label (_("Quality"), Gtk::ALIGN_LEFT),
|
||||
format_label (_("File format"), Gtk::ALIGN_LEFT),
|
||||
sample_rate_label (_("Sample rate"), Gtk::ALIGN_LEFT),
|
||||
src_quality_label (_("Sample rate conversion quality:"), Gtk::ALIGN_RIGHT),
|
||||
compatibility_label (_("Compatibility"), Gtk::ALIGN_START),
|
||||
quality_label (_("Quality"), Gtk::ALIGN_START),
|
||||
format_label (_("File format"), Gtk::ALIGN_START),
|
||||
sample_rate_label (_("Sample rate"), Gtk::ALIGN_START),
|
||||
src_quality_label (_("Sample rate conversion quality:"), Gtk::ALIGN_END),
|
||||
|
||||
encoding_options_label ("", Gtk::ALIGN_LEFT),
|
||||
encoding_options_label ("", Gtk::ALIGN_START),
|
||||
|
||||
/* Changing encoding options from here on */
|
||||
|
||||
sample_format_label (_("Sample Format"), Gtk::ALIGN_LEFT),
|
||||
dither_label (_("Dithering"), Gtk::ALIGN_LEFT),
|
||||
sample_format_label (_("Sample Format"), Gtk::ALIGN_START),
|
||||
dither_label (_("Dithering"), Gtk::ALIGN_START),
|
||||
|
||||
with_cue (_("Create CUE file for disk-at-once CD/DVD creation")),
|
||||
with_toc (_("Create TOC file for disk-at-once CD/DVD creation")),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue