restore the post-export nag screen
[ardour.git] / gtk2_ardour / export_dialog.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
22 #include <sigc++/signal.h>
23
24 #include "ardour/audioregion.h"
25 #include "ardour/export_status.h"
26 #include "ardour/export_handler.h"
27
28 #include "export_dialog.h"
29 #include "gui_thread.h"
30 #include "nag.h"
31
32 #include "i18n.h"
33
34 using namespace ARDOUR;
35 using namespace PBD;
36 using std::string;
37
38 ExportDialog::ExportDialog (PublicEditor & editor, std::string title, std::string xml_node_name)
39   : ArdourDialog (title)
40   , xml_node_name (xml_node_name)
41   , editor (editor)
42
43   , warn_label ("", Gtk::ALIGN_LEFT)
44   , list_files_label (_("<span color=\"#ffa755\">Some already existing files will be overwritten.</span>"), Gtk::ALIGN_RIGHT)
45   , list_files_button (_("List files"))
46 { }
47
48 ExportDialog::~ExportDialog ()
49 { }
50
51 void
52 ExportDialog::set_session (ARDOUR::Session* s)
53 {
54         SessionHandlePtr::set_session (s);
55
56         if (!_session) {
57                 return;
58         }
59
60         /* Init handler and profile manager */
61
62         handler = _session->get_export_handler ();
63         status = _session->get_export_status ();
64
65         profile_manager.reset (new ExportProfileManager (*_session, xml_node_name));
66
67         /* Possibly init stuff in derived classes */
68
69         init ();
70
71         /* Rest of _session related initialization */
72
73         preset_selector->set_manager (profile_manager);
74         file_notebook->set_session_and_manager (_session, profile_manager);
75
76         /* Hand on selection range to profile manager  */
77
78         TimeSelection const & time (editor.get_selection().time);
79         if (!time.empty()) {
80                 profile_manager->set_selection_range (time.front().start, time.front().end);
81         } else {
82                 profile_manager->set_selection_range ();
83         }
84
85         /* Load states */
86
87         profile_manager->load_profile ();
88         sync_with_manager ();
89
90         /* Warnings */
91
92         preset_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::sync_with_manager));
93         timespan_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings_and_example_filename));
94         channel_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings_and_example_filename));
95         file_notebook->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings_and_example_filename));
96
97         status->Aborting.connect (abort_connection, invalidator (*this), boost::bind (&ExportDialog::notify_errors, this), gui_context());
98
99         update_warnings_and_example_filename ();
100 }
101
102 void
103 ExportDialog::init ()
104 {
105         init_components ();
106         init_gui ();
107
108         /* warnings */
109
110         warning_widget.pack_start (warn_hbox, true, true, 6);
111         warning_widget.pack_end (list_files_hbox, false, false, 0);
112
113         warn_hbox.pack_start (warn_label, true, true, 16);
114         warn_label.set_use_markup (true);
115
116         list_files_hbox.pack_end (list_files_button, false, false, 6);
117         list_files_hbox.pack_end (list_files_label, false, false, 6);
118         list_files_label.set_use_markup (true);
119
120         list_files_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::show_conflicting_files));
121
122         /* Progress indicators */
123
124         progress_widget.pack_start (progress_bar, false, false, 6);
125
126         /* Buttons */
127
128         cancel_button = add_button (Gtk::Stock::CANCEL, RESPONSE_CANCEL);
129         export_button = add_button (_("Export"), RESPONSE_FAST);
130         set_default_response (RESPONSE_FAST);
131
132         list_files_button.set_name ("PaddedButton");
133
134         cancel_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::close_dialog));
135         export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::do_export));
136
137         /* Done! */
138
139         show_all_children ();
140         progress_widget.hide_all();
141 }
142
143 void
144 ExportDialog::expanded_changed ()
145 {
146         set_resizable(advanced->get_expanded());
147 }
148
149 void
150 ExportDialog::init_gui ()
151 {
152         Gtk::Alignment * preset_align = Gtk::manage (new Gtk::Alignment());
153         preset_align->add (*preset_selector);
154         preset_align->set_padding (0, 12, 0, 0);
155         get_vbox()->pack_start (*preset_align, false, false, 0);
156
157         Gtk::VPaned * advanced_paned = Gtk::manage (new Gtk::VPaned());
158
159         Gtk::VBox* timespan_vbox = Gtk::manage (new Gtk::VBox());
160         timespan_vbox->set_spacing (12);
161         timespan_vbox->set_border_width (12);
162
163         Gtk::Alignment * timespan_align = Gtk::manage (new Gtk::Alignment());
164         timespan_label = Gtk::manage (new Gtk::Label (_("Time Span"), Gtk::ALIGN_LEFT));
165         timespan_align->add (*timespan_selector);
166         timespan_align->set_padding (0, 0, 18, 0);
167         timespan_vbox->pack_start (*timespan_label, false, false, 0);
168         timespan_vbox->pack_start (*timespan_align, true, true, 0);
169         advanced_paned->pack1(*timespan_vbox, true, false);
170
171         Gtk::VBox* channels_vbox = Gtk::manage (new Gtk::VBox());
172         channels_vbox->set_spacing (12);
173         channels_vbox->set_border_width (12);
174
175         Gtk::Alignment * channels_align = Gtk::manage (new Gtk::Alignment());
176         channels_label = Gtk::manage (new Gtk::Label (_("Channels"), Gtk::ALIGN_LEFT));
177         channels_align->add (*channel_selector);
178         channels_align->set_padding (0, 12, 18, 0);
179         channels_vbox->pack_start (*channels_label, false, false, 0);
180         channels_vbox->pack_start (*channels_align, true, true, 0);
181         advanced_paned->pack2(*channels_vbox, channel_selector_is_expandable(), false);
182
183         get_vbox()->pack_start (*file_notebook, false, false, 0);
184         get_vbox()->pack_start (warning_widget, false, false, 0);
185         get_vbox()->pack_start (progress_widget, false, false, 0);
186
187         advanced = Gtk::manage (new Gtk::Expander (_("Time span and channel options")));
188         advanced->property_expanded().signal_changed().connect(
189                 sigc::mem_fun(*this, &ExportDialog::expanded_changed));
190         advanced->add (*advanced_paned);
191
192         if (channel_selector_is_expandable()) {
193                 advanced_sizegroup = Gtk::SizeGroup::create(Gtk::SIZE_GROUP_VERTICAL);
194                 advanced_sizegroup->add_widget(*timespan_selector);
195                 advanced_sizegroup->add_widget(*channel_selector);
196         }
197
198         get_vbox()->pack_start (*advanced, true, true);
199
200         Pango::AttrList bold;
201         Pango::Attribute b = Pango::Attribute::create_attr_weight (Pango::WEIGHT_BOLD);
202         bold.insert (b);
203
204         timespan_label->set_attributes (bold);
205         channels_label->set_attributes (bold);
206 }
207
208 void
209 ExportDialog::init_components ()
210 {
211         preset_selector.reset (new ExportPresetSelector ());
212         timespan_selector.reset (new ExportTimespanSelectorMultiple (_session, profile_manager));
213         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
214         file_notebook.reset (new ExportFileNotebook ());
215 }
216
217 void
218 ExportDialog::notify_errors ()
219 {
220         if (status->errors()) {
221                 std::string txt = _("Export has been aborted due to an error!\nSee the Log for details.");
222                 Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
223                 msg.run();
224         }
225 }
226
227 void
228 ExportDialog::close_dialog ()
229 {
230         if (status->running) {
231                 status->abort();
232         }
233
234         hide_all ();
235         set_modal (false);
236
237 }
238
239 void
240 ExportDialog::sync_with_manager ()
241 {
242         timespan_selector->sync_with_manager();
243         channel_selector->sync_with_manager();
244         file_notebook->sync_with_manager ();
245
246         update_warnings_and_example_filename ();
247 }
248
249 void
250 ExportDialog::update_warnings_and_example_filename ()
251 {
252         /* Reset state */
253
254         warn_string = "";
255         warn_label.set_markup (warn_string);
256
257         list_files_hbox.hide ();
258         list_files_string = "";
259
260         export_button->set_sensitive (true);
261
262         /* Add new warnings */
263
264         boost::shared_ptr<ExportProfileManager::Warnings> warnings = profile_manager->get_warnings();
265
266         for (std::list<string>::iterator it = warnings->errors.begin(); it != warnings->errors.end(); ++it) {
267                 add_error (*it);
268         }
269
270         for (std::list<string>::iterator it = warnings->warnings.begin(); it != warnings->warnings.end(); ++it) {
271                 add_warning (*it);
272         }
273
274         if (!warnings->conflicting_filenames.empty()) {
275                 list_files_hbox.show ();
276                 for (std::list<string>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
277                         string::size_type pos = it->find_last_of ("/");
278                         list_files_string += it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>\n";
279                 }
280         }
281
282         /* Update example filename */
283
284         file_notebook->update_example_filenames();
285 }
286
287 void
288 ExportDialog::show_conflicting_files ()
289 {
290         ArdourDialog dialog (_("Files that will be overwritten"), true);
291
292         Gtk::Label label ("", Gtk::ALIGN_LEFT);
293         label.set_use_markup (true);
294         label.set_markup (list_files_string);
295
296         dialog.get_vbox()->pack_start (label);
297         dialog.add_button (Gtk::Stock::OK, 0);
298         dialog.show_all_children ();
299
300         dialog.run();
301 }
302
303 void
304 ExportDialog::do_export ()
305 {
306         profile_manager->prepare_for_export ();
307         handler->do_export ();
308         show_progress ();
309 }
310
311 void
312 ExportDialog::show_progress ()
313 {
314         status->running = true;
315
316         cancel_button->set_label (_("Stop Export"));
317         export_button->set_sensitive (false);
318
319         progress_bar.set_fraction (0.0);
320         warning_widget.hide_all();
321         progress_widget.show ();
322         progress_widget.show_all_children ();
323         progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);
324
325         gtk_main_iteration ();
326         while (status->running) {
327                 if (gtk_events_pending()) {
328                         gtk_main_iteration ();
329                 } else {
330                         usleep (10000);
331                 }
332         }
333
334         if (!status->aborted()) {
335
336                 NagScreen* ns = NagScreen::maybe_nag (_("export"));
337                 
338                 if (ns) {
339                         ns->nag ();
340                         delete ns;
341                 }
342                 
343                 status->finish ();
344         }
345 }
346
347 gint
348 ExportDialog::progress_timeout ()
349 {
350         std::string status_text;
351         float progress = 0.0;
352         if (status->normalizing) {
353                 status_text = string_compose (_("Normalizing '%3' (timespan %1 of %2)"),
354                                               status->timespan, status->total_timespans, status->timespan_name);
355                 progress = ((float) status->current_normalize_cycle) / status->total_normalize_cycles;
356         } else {
357                 status_text = string_compose (_("Exporting '%3' (timespan %1 of %2)"),
358                                               status->timespan, status->total_timespans, status->timespan_name);
359                 progress = ((float) status->processed_frames_current_timespan) / status->total_frames_current_timespan;
360         }
361         progress_bar.set_text (status_text);
362
363         if (progress < previous_progress) {
364                 // Work around gtk bug
365                 progress_bar.hide();
366                 progress_bar.show();
367         }
368         previous_progress = progress;
369
370         progress_bar.set_fraction (progress);
371         return TRUE;
372 }
373
374 void
375 ExportDialog::add_error (string const & text)
376 {
377         export_button->set_sensitive (false);
378
379         if (warn_string.empty()) {
380                 warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>";
381         } else {
382                 warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>\n" + warn_string;
383         }
384
385         warn_label.set_markup (warn_string);
386 }
387
388 void
389 ExportDialog::add_warning (string const & text)
390 {
391         if (warn_string.empty()) {
392                 warn_string = _("<span color=\"#ffa755\">Warning: ") + text + "</span>";
393         } else {
394                 warn_string = warn_string + _("\n<span color=\"#ffa755\">Warning: ") + text + "</span>";
395         }
396
397         warn_label.set_markup (warn_string);
398 }
399
400 /*** Dialog specializations ***/
401
402 ExportRangeDialog::ExportRangeDialog (PublicEditor & editor, string range_id) :
403   ExportDialog (editor, _("Export Range"), X_("RangeExportProfile")),
404   range_id (range_id)
405 {}
406
407 void
408 ExportRangeDialog::init_components ()
409 {
410         preset_selector.reset (new ExportPresetSelector ());
411         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, range_id));
412         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
413         file_notebook.reset (new ExportFileNotebook ());
414 }
415
416 ExportSelectionDialog::ExportSelectionDialog (PublicEditor & editor) :
417   ExportDialog (editor, _("Export Selection"), X_("SelectionExportProfile"))
418 {}
419
420 void
421 ExportSelectionDialog::init_components ()
422 {
423         preset_selector.reset (new ExportPresetSelector ());
424         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, X_("selection")));
425         channel_selector.reset (new PortExportChannelSelector (_session, profile_manager));
426         file_notebook.reset (new ExportFileNotebook ());
427 }
428
429 ExportRegionDialog::ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track) :
430   ExportDialog (editor, _("Export Region"), X_("RegionExportProfile")),
431   region (region),
432   track (track)
433 {}
434
435 void
436 ExportRegionDialog::init_gui ()
437 {
438         ExportDialog::init_gui ();
439
440         channels_label->set_text (_("Source"));
441 }
442
443 void
444 ExportRegionDialog::init_components ()
445 {
446         string loc_id = profile_manager->set_single_range (region.position(), region.position() + region.length(), region.name());
447
448         preset_selector.reset (new ExportPresetSelector ());
449         timespan_selector.reset (new ExportTimespanSelectorSingle (_session, profile_manager, loc_id));
450         channel_selector.reset (new RegionExportChannelSelector (_session, profile_manager, region, track));
451         file_notebook.reset (new ExportFileNotebook ());
452 }
453
454 StemExportDialog::StemExportDialog (PublicEditor & editor)
455   : ExportDialog(editor, _("Stem Export"), X_("StemExportProfile"))
456 {
457
458 }
459
460 void
461 StemExportDialog::init_components ()
462 {
463         preset_selector.reset (new ExportPresetSelector ());
464         timespan_selector.reset (new ExportTimespanSelectorMultiple (_session, profile_manager));
465         channel_selector.reset (new TrackExportChannelSelector (_session, profile_manager));
466         file_notebook.reset (new ExportFileNotebook ());
467 }