Remove erroneous assert which I added earlier.
[ardour2.git] / gtk2_ardour / export_filename_selector.cc
blob2912ce75e63801a9ebfd07b04394de7310dabb21
1 /*
2 Copyright (C) 2008 Paul Davis
3 Author: Sakari Bergen
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "export_filename_selector.h"
23 #include "ardour/export_handler.h"
24 #include "ardour/session.h"
25 #include "ardour/session_directory.h"
27 #include "i18n.h"
29 using namespace ARDOUR;
31 ExportFilenameSelector::ExportFilenameSelector () :
32 include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
34 label_label (_("Label:"), Gtk::ALIGN_LEFT),
35 session_checkbox (_("Session Name")),
36 revision_checkbox (_("Revision:")),
38 path_label (_("Folder:"), Gtk::ALIGN_LEFT),
39 browse_button (_("Browse"))
41 pack_start (include_label, false, false, 6);
42 pack_start (include_hbox, false, false, 0);
43 pack_start (path_hbox, false, false, 12);
45 include_hbox.pack_start (label_label, false, false, 3);
46 include_hbox.pack_start (label_entry, false, false, 3);
47 include_hbox.pack_start (session_checkbox, false, false, 3);
48 include_hbox.pack_start (date_format_combo, false, false, 3);
49 include_hbox.pack_start (time_format_combo, false, false, 3);
50 include_hbox.pack_start (revision_checkbox, false, false, 3);
51 include_hbox.pack_start (revision_spinbutton, false, false, 3);
53 label_entry.set_activates_default ();
55 path_hbox.pack_start (path_label, false, false, 3);
56 path_hbox.pack_start (path_entry, true, true, 3);
57 path_hbox.pack_start (browse_button, false, false, 3);
59 path_entry.set_activates_default ();
61 date_format_combo.set_name ("PaddedButton");
62 time_format_combo.set_name ("PaddedButton");
63 browse_button.set_name ("PaddedButton");
65 label_sizegroup = Gtk::SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL);
66 label_sizegroup->add_widget (label_label);
67 label_sizegroup->add_widget (path_label);
69 /* Date */
71 date_format_list = Gtk::ListStore::create (date_format_cols);
72 date_format_combo.set_model (date_format_list);
73 date_format_combo.pack_start (date_format_cols.label);
75 date_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_date_format));
77 /* Time */
79 time_format_list = Gtk::ListStore::create (time_format_cols);
80 time_format_combo.set_model (time_format_list);
81 time_format_combo.pack_start (time_format_cols.label);
83 time_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_time_format));
85 /* Revision */
87 revision_spinbutton.set_digits (0);
88 revision_spinbutton.set_increments (1, 10);
89 revision_spinbutton.set_range (1, 1000);
90 revision_spinbutton.set_sensitive (false);
92 /* Signals */
94 label_entry.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::update_label));
95 path_entry.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::update_folder));
97 session_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_session_selection));
99 revision_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_revision_selection));
100 revision_spinbutton.signal_value_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_revision_value));
102 browse_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFilenameSelector::open_browse_dialog));
105 ExportFilenameSelector::~ExportFilenameSelector ()
110 void
111 ExportFilenameSelector::load_state ()
113 if (!filename) {
114 return;
117 label_entry.set_text (filename->include_label ? filename->get_label() : "");
118 session_checkbox.set_active (filename->include_session);
119 revision_checkbox.set_active (filename->include_revision);
120 revision_spinbutton.set_value (filename->get_revision());
121 path_entry.set_text (filename->get_folder());
123 Gtk::TreeModel::Children::iterator it;
125 for (it = date_format_list->children().begin(); it != date_format_list->children().end(); ++it) {
126 if (it->get_value (date_format_cols.format) == filename->get_date_format()) {
127 date_format_combo.set_active (it);
131 for (it = time_format_list->children().begin(); it != time_format_list->children().end(); ++it) {
132 if (it->get_value (time_format_cols.format) == filename->get_time_format()) {
133 time_format_combo.set_active (it);
138 void
139 ExportFilenameSelector::set_state (ARDOUR::ExportProfileManager::FilenameStatePtr state_, ARDOUR::Session * session_)
141 SessionHandlePtr::set_session (session_);
143 filename = state_->filename;
145 /* Fill combo boxes */
147 Gtk::TreeModel::iterator iter;
148 Gtk::TreeModel::Row row;
150 /* Dates */
152 date_format_list->clear();
154 iter = date_format_list->append();
155 row = *iter;
156 row[date_format_cols.format] = ExportFilename::D_None;
157 row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_None);
159 iter = date_format_list->append();
160 row = *iter;
161 row[date_format_cols.format] = ExportFilename::D_ISO;
162 row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_ISO);
164 iter = date_format_list->append();
165 row = *iter;
166 row[date_format_cols.format] = ExportFilename::D_ISOShortY;
167 row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_ISOShortY);
169 iter = date_format_list->append();
170 row = *iter;
171 row[date_format_cols.format] = ExportFilename::D_BE;
172 row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_BE);
174 iter = date_format_list->append();
175 row = *iter;
176 row[date_format_cols.format] = ExportFilename::D_BEShortY;
177 row[date_format_cols.label] = filename->get_date_format_str (ExportFilename::D_BEShortY);
179 /* Times */
181 time_format_list->clear();
183 iter = time_format_list->append();
184 row = *iter;
185 row[time_format_cols.format] = ExportFilename::T_None;
186 row[time_format_cols.label] = filename->get_time_format_str (ExportFilename::T_None);
188 iter = time_format_list->append();
189 row = *iter;
190 row[time_format_cols.format] = ExportFilename::T_NoDelim;
191 row[time_format_cols.label] = filename->get_time_format_str (ExportFilename::T_NoDelim);
193 iter = time_format_list->append();
194 row = *iter;
195 row[time_format_cols.format] = ExportFilename::T_Delim;
196 row[time_format_cols.label] = filename->get_time_format_str (ExportFilename::T_Delim);
198 /* Load state */
200 load_state();
204 void
205 ExportFilenameSelector::update_label ()
207 if (!filename) {
208 return;
211 filename->set_label (label_entry.get_text());
213 filename->include_label = !label_entry.get_text().empty();
214 CriticalSelectionChanged();
217 void
218 ExportFilenameSelector::update_folder ()
220 if (!filename) {
221 return;
224 filename->set_folder (path_entry.get_text());
225 CriticalSelectionChanged();
228 void
229 ExportFilenameSelector::change_date_format ()
231 if (!filename) {
232 return;
235 DateFormat format = date_format_combo.get_active()->get_value (date_format_cols.format);
236 filename->set_date_format (format);
237 CriticalSelectionChanged();
240 void
241 ExportFilenameSelector::change_time_format ()
243 if (!filename) {
244 return;
247 TimeFormat format = time_format_combo.get_active()->get_value (time_format_cols.format);
248 filename->set_time_format (format);
249 CriticalSelectionChanged();
252 void
253 ExportFilenameSelector::change_session_selection ()
255 if (!filename) {
256 return;
259 filename->include_session = session_checkbox.get_active();
260 CriticalSelectionChanged();
263 void
264 ExportFilenameSelector::change_revision_selection ()
266 if (!filename) {
267 return;
270 bool selected = revision_checkbox.get_active();
271 filename->include_revision = selected;
273 revision_spinbutton.set_sensitive (selected);
274 CriticalSelectionChanged();
277 void
278 ExportFilenameSelector::change_revision_value ()
280 if (!filename) {
281 return;
284 filename->set_revision ((uint32_t) revision_spinbutton.get_value_as_int());
285 CriticalSelectionChanged();
288 void
289 ExportFilenameSelector::open_browse_dialog ()
291 Gtk::FileChooserDialog dialog(_("Choose export folder"), Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
292 //dialog.set_transient_for(*this);
293 dialog.set_filename (path_entry.get_text());
295 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
296 dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK);
298 int result = dialog.run();
300 if (result == Gtk::RESPONSE_OK) {
301 std::string filename = dialog.get_filename();
303 if (filename.length()) {
304 path_entry.set_text (filename);
308 CriticalSelectionChanged();