summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-11-30 20:30:44 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-11-30 20:30:44 +0000
commit00d7dde42eecb936a20426a16da69db5998cf8b0 (patch)
tree4933c8c42055b36528d823b098e40c8bec0a793d /gtk2_ardour/export_dialog.h
parent53d337a16882536876202324c9d68db6eba4eadf (diff)
doug's export dialog changes and fix libsoundtouch link issues
git-svn-id: svn://localhost/trunk/ardour2@154 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.h')
-rw-r--r--gtk2_ardour/export_dialog.h33
1 files changed, 25 insertions, 8 deletions
diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h
index 12532fafd4..597e2b3c21 100644
--- a/gtk2_ardour/export_dialog.h
+++ b/gtk2_ardour/export_dialog.h
@@ -20,6 +20,7 @@
#ifndef __ardour_export_dialog_h__
#define __ardour_export_dialog_h__
+#include <gtkmm/alignment.h>
#include <gtkmm/box.h>
#include <gtkmm/table.h>
#include <gtkmm/frame.h>
@@ -80,22 +81,38 @@ class ExportDialog : public ArdourDialog
Gtk::Table format_table;
Gtk::Frame format_frame;
- Gtk::Label sample_rate_label;
- Gtk::ComboBoxText sample_rate_combo;
- Gtk::Label src_quality_label;
- Gtk::ComboBoxText src_quality_combo;
- Gtk::Label dither_type_label;
- Gtk::ComboBoxText dither_type_combo;
- 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;