summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_filename_selector.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /gtk2_ardour/export_filename_selector.h
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_filename_selector.h')
-rw-r--r--gtk2_ardour/export_filename_selector.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/gtk2_ardour/export_filename_selector.h b/gtk2_ardour/export_filename_selector.h
index faa508de41..a6c36da83d 100644
--- a/gtk2_ardour/export_filename_selector.h
+++ b/gtk2_ardour/export_filename_selector.h
@@ -30,7 +30,7 @@ namespace ARDOUR {
class Session;
}
-///
+///
class ExportFilenameSelector : public Gtk::VBox {
public:
typedef boost::shared_ptr<ARDOUR::ExportFilename> FilenamePtr;
@@ -39,9 +39,9 @@ class ExportFilenameSelector : public Gtk::VBox {
~ExportFilenameSelector ();
void set_state (ARDOUR::ExportProfileManager::FilenameStatePtr state_, ARDOUR::Session * session_);
-
+
/* Compatibility with other elements */
-
+
sigc::signal<void> CriticalSelectionChanged;
private:
@@ -53,11 +53,11 @@ class ExportFilenameSelector : public Gtk::VBox {
void change_date_format ();
void change_time_format ();
-
+
void change_session_selection ();
void change_revision_selection ();
void change_revision_value ();
-
+
void open_browse_dialog ();
ARDOUR::Session * session;
@@ -66,49 +66,49 @@ class ExportFilenameSelector : public Gtk::VBox {
Glib::RefPtr<Gtk::SizeGroup> label_sizegroup;
Gtk::Label include_label;
-
+
Gtk::HBox include_hbox;
-
+
Gtk::Label label_label;
Gtk::Entry label_entry;
-
+
Gtk::CheckButton session_checkbox;
-
+
Gtk::CheckButton revision_checkbox;
Gtk::SpinButton revision_spinbutton;
-
+
Gtk::HBox path_hbox;
-
+
Gtk::Label path_label;
Gtk::Entry path_entry;
Gtk::Button browse_button;
-
+
/* Date combo */
-
+
typedef ARDOUR::ExportFilename::DateFormat DateFormat;
-
+
struct DateFormatCols : public Gtk::TreeModelColumnRecord
{
public:
Gtk::TreeModelColumn<DateFormat> format;
Gtk::TreeModelColumn<Glib::ustring> label;
-
+
DateFormatCols () { add(format); add(label); }
};
DateFormatCols date_format_cols;
Glib::RefPtr<Gtk::ListStore> date_format_list;
Gtk::ComboBox date_format_combo;
-
+
/* Time combo */
-
+
typedef ARDOUR::ExportFilename::TimeFormat TimeFormat;
-
+
struct TimeFormatCols : public Gtk::TreeModelColumnRecord
{
public:
Gtk::TreeModelColumn<TimeFormat> format;
Gtk::TreeModelColumn<Glib::ustring> label;
-
+
TimeFormatCols () { add(format); add(label); }
};
TimeFormatCols time_format_cols;