summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-12-02 19:18:26 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-12-02 19:18:26 +0000
commit3436df6eabaefa19b2572a2765e6d8ac08942c9d (patch)
treef2dd8e9108a6e5d3bcb9984e6c8ea05861a8ce10 /gtk2_ardour/export_dialog.h
parent7aee3d6fbf0fedc8c34def2461fc8064d2cc654c (diff)
the usual blob of fixes. note the requirement for ComboBoxText::set_active_text()
git-svn-id: svn://localhost/trunk/ardour2@160 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.h')
-rw-r--r--gtk2_ardour/export_dialog.h19
1 files changed, 5 insertions, 14 deletions
diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h
index 597e2b3c21..c07cebaa96 100644
--- a/gtk2_ardour/export_dialog.h
+++ b/gtk2_ardour/export_dialog.h
@@ -76,43 +76,34 @@ class ExportDialog : public ArdourDialog
ARDOUR::AudioRegion* audio_region;
Gtk::VBox track_vpacker;
Gtk::HBox hpacker;
- Gtk::HBox button_box;
Gtk::Table format_table;
Gtk::Frame format_frame;
+ Gtk::Label cue_file_label;
+ Gtk::ComboBoxText cue_file_combo;
+
Gtk::Label channel_count_label;
- Gtk::Alignment channel_count_align;
Gtk::ComboBoxText channel_count_combo;
Gtk::Label header_format_label;
- Gtk::Alignment header_format_align;
Gtk::ComboBoxText header_format_combo;
Gtk::Label bitdepth_format_label;
- Gtk::Alignment bitdepth_format_align;
Gtk::ComboBoxText bitdepth_format_combo;
Gtk::Label endian_format_label;
- Gtk::Alignment endian_format_align;
Gtk::ComboBoxText endian_format_combo;
Gtk::Label sample_rate_label;
- Gtk::Alignment sample_rate_align;
Gtk::ComboBoxText sample_rate_combo;
Gtk::Label src_quality_label;
- Gtk::Alignment src_quality_align;
Gtk::ComboBoxText src_quality_combo;
Gtk::Label dither_type_label;
- Gtk::Alignment dither_type_align;
Gtk::ComboBoxText dither_type_combo;
- Gtk::Label cue_file_label;
- Gtk::Alignment cue_file_align;
- Gtk::ComboBoxText cue_file_combo;
-
Gtk::CheckButton cuefile_only_checkbox;
Gtk::Frame file_frame;
@@ -120,8 +111,8 @@ class ExportDialog : public ArdourDialog
Gtk::HBox file_hbox;
Gtk::Button file_browse_button;
- Gtk::Button ok_button;
- Gtk::Button cancel_button;
+ Gtk::Button* ok_button;
+ Gtk::Button* cancel_button;
Gtk::Label cancel_label;
Gtk::ProgressBar progress_bar;
Gtk::ScrolledWindow track_scroll;