mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
gtkmm: use ALIGN_START instead of deprecated Gtk::AlignmentEnum::ALIGN_LEFT
This commit is contained in:
parent
1390743d52
commit
2aa72891f3
31 changed files with 123 additions and 123 deletions
|
|
@ -47,8 +47,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"))
|
||||
|
|
@ -57,9 +57,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"))
|
||||
|
|
@ -70,32 +70,32 @@ 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)
|
||||
, 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_RIGHT)
|
||||
|
||||
/* Watermarking */
|
||||
, watermark_heading (_("Preview / Watermark"), Gtk::ALIGN_LEFT)
|
||||
, watermark_heading (_("Preview / Watermark"), Gtk::ALIGN_START)
|
||||
|
||||
, demo_noise_mode_label (_("Mode:"), Gtk::ALIGN_LEFT)
|
||||
, demo_noise_level_label (_("Noise Level:"), Gtk::ALIGN_LEFT)
|
||||
, demo_noise_dbfs_unit (_("dBFS"), Gtk::ALIGN_LEFT)
|
||||
, demo_noise_mode_label (_("Mode:"), Gtk::ALIGN_START)
|
||||
, demo_noise_level_label (_("Noise Level:"), Gtk::ALIGN_START)
|
||||
, demo_noise_dbfs_unit (_("dBFS"), Gtk::ALIGN_START)
|
||||
|
||||
, demo_noise_dbfs_adjustment (-20.0, -90.00, -6.00, 1, 5)
|
||||
, demo_noise_dbfs_spinbutton (demo_noise_dbfs_adjustment, 1, 0)
|
||||
|
||||
/* Changing encoding options from here on */
|
||||
, 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