Prevent the point selection straying -ve when control points are positioned close...
[ardour.git] / gtk2_ardour / export_filename_selector.cc
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
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.
9
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.
14
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.
18
19 */
20
21 #include "export_filename_selector.h"
22
23 #include "ardour/export_handler.h"
24 #include "ardour/session.h"
25 #include "ardour/session_directory.h"
26
27 #include "i18n.h"
28
29 using namespace ARDOUR;
30
31 ExportFilenameSelector::ExportFilenameSelector () :
32         include_label (_("Include in Filename(s):"), Gtk::ALIGN_LEFT),
33         
34         label_label (_("Label:"), Gtk::ALIGN_LEFT),
35         session_checkbox (_("Session Name")),
36         revision_checkbox (_("Revision:")),
37         
38         path_label (_("Folder:"), Gtk::ALIGN_LEFT),
39         browse_button (_("Browse"))
40 {
41         pack_start (include_label, false, false, 6);
42         pack_start (include_hbox, false, false, 0);
43         pack_start (path_hbox, false, false, 12);
44
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);
52
53         label_entry.set_activates_default ();
54
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);
58
59         path_entry.set_activates_default ();
60
61         date_format_combo.set_name ("PaddedButton");
62         time_format_combo.set_name ("PaddedButton");
63         browse_button.set_name ("PaddedButton");
64
65         label_sizegroup = Gtk::SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL);
66         label_sizegroup->add_widget (label_label);
67         label_sizegroup->add_widget (path_label);
68
69         /* Date */
70
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);
74
75         date_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_date_format));
76
77         /* Time */
78
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);
82
83         time_format_combo.signal_changed().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_time_format));
84
85         /* Revision */
86
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);
91
92         /* Signals */
93
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));
96
97         session_checkbox.signal_toggled().connect (sigc::mem_fun (*this, &ExportFilenameSelector::change_session_selection));
98
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));
101
102         browse_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFilenameSelector::open_browse_dialog));
103 }
104
105 ExportFilenameSelector::~ExportFilenameSelector ()
106 {
107
108 }
109
110 void
111 ExportFilenameSelector::load_state ()
112 {
113         if (!filename) {
114                 return;
115         }
116
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());
122
123         Gtk::TreeModel::Children::iterator it;
124
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);
128                 }
129         }
130
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);
134                 }
135         }
136 }
137
138 void
139 ExportFilenameSelector::set_state (ARDOUR::ExportProfileManager::FilenameStatePtr state_, ARDOUR::Session * session_)
140 {
141         SessionHandlePtr::set_session (session_);
142
143         filename = state_->filename;
144
145         /* Fill combo boxes */
146
147         Gtk::TreeModel::iterator iter;
148         Gtk::TreeModel::Row row;
149
150         /* Dates */
151
152         date_format_list->clear();
153
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);
158
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);
163
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);
168
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);
173
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);
178
179         /* Times */
180
181         time_format_list->clear();
182
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);
187
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);
192
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);
197
198         /* Load state */
199
200         load_state();
201
202 }
203
204 void
205 ExportFilenameSelector::update_label ()
206 {
207         if (!filename) {
208                 return;
209         }
210
211         filename->set_label (label_entry.get_text());
212
213         filename->include_label = !label_entry.get_text().empty();
214         CriticalSelectionChanged();
215 }
216
217 void
218 ExportFilenameSelector::update_folder ()
219 {
220         if (!filename) {
221                 return;
222         }
223
224         filename->set_folder (path_entry.get_text());
225         CriticalSelectionChanged();
226 }
227
228 void
229 ExportFilenameSelector::change_date_format ()
230 {
231         if (!filename) {
232                 return;
233         }
234
235         DateFormat format = date_format_combo.get_active()->get_value (date_format_cols.format);
236         filename->set_date_format (format);
237         CriticalSelectionChanged();
238 }
239
240 void
241 ExportFilenameSelector::change_time_format ()
242 {
243         if (!filename) {
244                 return;
245         }
246
247         TimeFormat format = time_format_combo.get_active()->get_value (time_format_cols.format);
248         filename->set_time_format (format);
249         CriticalSelectionChanged();
250 }
251
252 void
253 ExportFilenameSelector::change_session_selection ()
254 {
255         if (!filename) {
256                 return;
257         }
258
259         filename->include_session = session_checkbox.get_active();
260         CriticalSelectionChanged();
261 }
262
263 void
264 ExportFilenameSelector::change_revision_selection ()
265 {
266         if (!filename) {
267                 return;
268         }
269
270         bool selected = revision_checkbox.get_active();
271         filename->include_revision = selected;
272
273         revision_spinbutton.set_sensitive (selected);
274         CriticalSelectionChanged();
275 }
276
277 void
278 ExportFilenameSelector::change_revision_value ()
279 {
280         if (!filename) {
281                 return;
282         }
283
284         filename->set_revision ((uint32_t) revision_spinbutton.get_value_as_int());
285         CriticalSelectionChanged();
286 }
287
288 void
289 ExportFilenameSelector::open_browse_dialog ()
290 {
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());
294
295         dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
296         dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK);
297
298         int result = dialog.run();
299
300         if (result == Gtk::RESPONSE_OK) {
301                 std::string filename = dialog.get_filename();
302
303                 if (filename.length()) {
304                         path_entry.set_text (filename);
305                 }
306         }
307
308         CriticalSelectionChanged();
309 }