David Robillard
e0aaed6d65
All #include statements that include a header that is a part of a library bundled with ardour MUST use quotes, not angle brackets. Do this: #include "ardour/types.h" NOT this: #include <ardour/types.h> Rationale: This is best practice in general, to ensure we include the local version and not the system version. That quotes mean "local" (in some sense) and angle brackets mean "system" (in some sense) is a ubiquitous convention and IIRC right in the C spec somewhere. More pragmatically, this is required by (my) waf (stuff) for dependencies to work correctly. That is: !!! FAILURE TO DO THIS CAN RESULT IN BROKEN BUILDS !!! Failure to comply is punishable by death by torture. :) P.S. It's not that dramatic in all cases, but this (in combination with some GCC flags specific to the include type) is the best way I have found to be absolutely 100% positive the local ones are being used (and we definitely want to be absolutely 100% positive on that one). git-svn-id: svn://localhost/ardour2/branches/3.0@4655 d708f5d6-7413-0410-9779-e7cbd77b26cf
408 lines
12 KiB
C++
408 lines
12 KiB
C++
/*
|
|
Copyright (C) 2008 Paul Davis
|
|
Author: Sakari Bergen
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
#include "export_dialog.h"
|
|
|
|
#include <sigc++/signal.h>
|
|
|
|
#include "pbd/filesystem.h"
|
|
|
|
#include "ardour/export_status.h"
|
|
#include "ardour/export_handler.h"
|
|
|
|
using namespace ARDOUR;
|
|
using namespace PBD;
|
|
|
|
ExportDialog::ExportDialog (PublicEditor & editor, Glib::ustring title) :
|
|
ArdourDialog (title),
|
|
editor (editor),
|
|
|
|
warn_label ("", Gtk::ALIGN_LEFT),
|
|
list_files_label (_("<span color=\"#ffa755\">Some already existing files will be overwritten.</span>"), Gtk::ALIGN_RIGHT),
|
|
list_files_button (_("List files"))
|
|
{ }
|
|
|
|
ExportDialog::~ExportDialog ()
|
|
{ }
|
|
|
|
void
|
|
ExportDialog::set_session (ARDOUR::Session* s)
|
|
{
|
|
session = s;
|
|
|
|
/* Init handler and profile manager */
|
|
|
|
handler = session->get_export_handler ();
|
|
status = session->get_export_status ();
|
|
profile_manager.reset (new ExportProfileManager (*session));
|
|
|
|
/* Possibly init stuff in derived classes */
|
|
|
|
init ();
|
|
|
|
/* Rest of session related initialization */
|
|
|
|
preset_selector->set_manager (profile_manager);
|
|
file_notebook->set_session_and_manager (session, profile_manager);
|
|
|
|
/* Hand on selection range to profile manager */
|
|
|
|
TimeSelection const & time (editor.get_selection().time);
|
|
if (!time.empty()) {
|
|
profile_manager->set_selection_range (time.front().start, time.front().end);
|
|
} else {
|
|
profile_manager->set_selection_range ();
|
|
}
|
|
|
|
/* Load states */
|
|
|
|
profile_manager->load_profile ();
|
|
sync_with_manager ();
|
|
|
|
/* Warnings */
|
|
|
|
preset_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::sync_with_manager));
|
|
timespan_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
|
|
channel_selector->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
|
|
file_notebook->CriticalSelectionChanged.connect (sigc::mem_fun (*this, &ExportDialog::update_warnings));
|
|
status->Aborting.connect (sigc::mem_fun (*this, &ExportDialog::notify_errors));
|
|
|
|
update_warnings ();
|
|
}
|
|
|
|
void
|
|
ExportDialog::init ()
|
|
{
|
|
init_components ();
|
|
init_gui ();
|
|
|
|
/* warnings */
|
|
|
|
warning_widget.pack_start (warn_hbox, true, true, 6);
|
|
warning_widget.pack_end (list_files_hbox, false, false, 0);
|
|
|
|
warn_hbox.pack_start (warn_label, true, true, 16);
|
|
warn_label.set_use_markup (true);
|
|
|
|
list_files_hbox.pack_end (list_files_button, false, false, 6);
|
|
list_files_hbox.pack_end (list_files_label, false, false, 6);
|
|
list_files_label.set_use_markup (true);
|
|
|
|
list_files_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::show_conflicting_files));
|
|
|
|
/* Progress indicators */
|
|
|
|
progress_widget.pack_start (progress_label, false, false, 6);
|
|
progress_widget.pack_start (progress_bar, false, false, 6);
|
|
|
|
/* Buttons */
|
|
|
|
cancel_button = add_button (Gtk::Stock::CANCEL, RESPONSE_CANCEL);
|
|
rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
|
|
fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
|
|
|
|
list_files_button.set_name ("PaddedButton");
|
|
|
|
cancel_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::close_dialog));
|
|
rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
|
|
fast_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_fw));
|
|
|
|
/* Done! */
|
|
|
|
show_all_children ();
|
|
progress_widget.hide_all();
|
|
}
|
|
|
|
void
|
|
ExportDialog::init_gui ()
|
|
{
|
|
Gtk::Alignment * preset_align = Gtk::manage (new Gtk::Alignment());
|
|
preset_align->add (*preset_selector);
|
|
preset_align->set_padding (0, 12, 0, 0);
|
|
get_vbox()->pack_start (*preset_align, false, false, 0);
|
|
|
|
Gtk::Alignment * timespan_align = Gtk::manage (new Gtk::Alignment());
|
|
timespan_label = Gtk::manage (new Gtk::Label (_("Time Span"), Gtk::ALIGN_LEFT));
|
|
timespan_align->add (*timespan_selector);
|
|
timespan_align->set_padding (0, 12, 18, 0);
|
|
get_vbox()->pack_start (*timespan_label, false, false, 0);
|
|
get_vbox()->pack_start (*timespan_align, false, false, 0);
|
|
|
|
Gtk::Alignment * channels_align = Gtk::manage (new Gtk::Alignment());
|
|
channels_label = Gtk::manage (new Gtk::Label (_("Channels"), Gtk::ALIGN_LEFT));
|
|
channels_align->add (*channel_selector);
|
|
channels_align->set_padding (0, 12, 18, 0);
|
|
get_vbox()->pack_start (*channels_label, false, false, 0);
|
|
get_vbox()->pack_start (*channels_align, false, false, 0);
|
|
|
|
get_vbox()->pack_start (*file_notebook, false, false, 0);
|
|
get_vbox()->pack_start (warning_widget, true, true, 0);
|
|
get_vbox()->pack_start (progress_widget, true, true, 0);
|
|
|
|
Pango::AttrList bold;
|
|
Pango::Attribute b = Pango::Attribute::create_attr_weight (Pango::WEIGHT_BOLD);
|
|
bold.insert (b);
|
|
|
|
timespan_label->set_attributes (bold);
|
|
channels_label->set_attributes (bold);
|
|
}
|
|
|
|
void
|
|
ExportDialog::init_components ()
|
|
{
|
|
preset_selector.reset (new ExportPresetSelector ());
|
|
timespan_selector.reset (new ExportTimespanSelectorMultiple ());
|
|
channel_selector.reset (new PortExportChannelSelector ());
|
|
file_notebook.reset (new ExportFileNotebook ());
|
|
}
|
|
|
|
void
|
|
ExportDialog::notify_errors ()
|
|
{
|
|
if (status->errors()) {
|
|
Glib::ustring txt = _("Export has been aborted due to an error!\nSee the Log for details.");
|
|
Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
msg.run();
|
|
}
|
|
}
|
|
|
|
void
|
|
ExportDialog::close_dialog ()
|
|
{
|
|
if (status->running) {
|
|
status->abort();
|
|
}
|
|
|
|
hide_all ();
|
|
set_modal (false);
|
|
|
|
}
|
|
|
|
void
|
|
ExportDialog::sync_with_manager ()
|
|
{
|
|
timespan_selector->set_state (profile_manager->get_timespans().front(), session);
|
|
channel_selector->set_state (profile_manager->get_channel_configs().front(), session);
|
|
file_notebook->sync_with_manager ();
|
|
|
|
update_warnings ();
|
|
}
|
|
|
|
void
|
|
ExportDialog::update_warnings ()
|
|
{
|
|
/* Reset state */
|
|
|
|
warn_string = "";
|
|
warn_label.set_markup (warn_string);
|
|
|
|
list_files_hbox.hide ();
|
|
list_files_string = "";
|
|
|
|
fast_export_button->set_sensitive (true);
|
|
rt_export_button->set_sensitive (true);
|
|
|
|
/* Add new warnings */
|
|
|
|
boost::shared_ptr<ExportProfileManager::Warnings> warnings = profile_manager->get_warnings();
|
|
|
|
for (std::list<Glib::ustring>::iterator it = warnings->errors.begin(); it != warnings->errors.end(); ++it) {
|
|
add_error (*it);
|
|
}
|
|
|
|
for (std::list<Glib::ustring>::iterator it = warnings->warnings.begin(); it != warnings->warnings.end(); ++it) {
|
|
add_warning (*it);
|
|
}
|
|
|
|
if (!warnings->conflicting_filenames.empty()) {
|
|
list_files_hbox.show ();
|
|
for (std::list<Glib::ustring>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
|
|
ustring::size_type pos = it->find_last_of ("/");
|
|
list_files_string += "\n" + it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>";
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ExportDialog::show_conflicting_files ()
|
|
{
|
|
ArdourDialog dialog (_("Files that will be overwritten"), true);
|
|
|
|
Gtk::Label label ("", Gtk::ALIGN_LEFT);
|
|
label.set_use_markup (true);
|
|
label.set_markup (list_files_string);
|
|
|
|
dialog.get_vbox()->pack_start (label);
|
|
dialog.add_button (Gtk::Stock::OK, 0);
|
|
dialog.show_all_children ();
|
|
|
|
dialog.run();
|
|
}
|
|
|
|
void
|
|
ExportDialog::export_rt ()
|
|
{
|
|
profile_manager->prepare_for_export ();
|
|
handler->do_export (true);
|
|
show_progress ();
|
|
}
|
|
|
|
void
|
|
ExportDialog::export_fw ()
|
|
{
|
|
profile_manager->prepare_for_export ();
|
|
handler->do_export (false);
|
|
show_progress ();
|
|
}
|
|
|
|
void
|
|
ExportDialog::show_progress ()
|
|
{
|
|
status->running = true;
|
|
|
|
cancel_button->set_label (_("Stop Export"));
|
|
rt_export_button->set_sensitive (false);
|
|
fast_export_button->set_sensitive (false);
|
|
|
|
progress_bar.set_fraction (0.0);
|
|
warning_widget.hide_all();
|
|
progress_widget.show ();
|
|
progress_widget.show_all_children ();
|
|
progress_connection = Glib::signal_timeout().connect (mem_fun(*this, &ExportDialog::progress_timeout), 100);
|
|
|
|
gtk_main_iteration ();
|
|
while (status->running) {
|
|
if (gtk_events_pending()) {
|
|
gtk_main_iteration ();
|
|
} else {
|
|
usleep (10000);
|
|
}
|
|
}
|
|
}
|
|
|
|
gint
|
|
ExportDialog::progress_timeout ()
|
|
{
|
|
switch (status->stage) {
|
|
case export_None:
|
|
progress_label.set_text ("");
|
|
break;
|
|
case export_ReadTimespan:
|
|
progress_label.set_text (string_compose (_("Reading timespan %1 of %2"), status->timespan, status->total_timespans));
|
|
break;
|
|
case export_PostProcess:
|
|
progress_label.set_text (string_compose (_("Processing file %2 of %3 (%1) from timespan %4 of %5"),
|
|
file_notebook->get_nth_format_name (status->format),
|
|
status->format, status->total_formats,
|
|
status->timespan, status->total_timespans));
|
|
break;
|
|
case export_Write:
|
|
progress_label.set_text (string_compose (_("Encoding file %2 of %3 (%1) from timespan %4 of %5"),
|
|
file_notebook->get_nth_format_name (status->format),
|
|
status->format, status->total_formats,
|
|
status->timespan, status->total_timespans));
|
|
break;
|
|
}
|
|
|
|
progress_bar.set_fraction (status->progress);
|
|
return TRUE;
|
|
}
|
|
|
|
void
|
|
ExportDialog::add_error (Glib::ustring const & text)
|
|
{
|
|
fast_export_button->set_sensitive (false);
|
|
rt_export_button->set_sensitive (false);
|
|
|
|
if (warn_string.empty()) {
|
|
warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>";
|
|
} else {
|
|
warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>\n" + warn_string;
|
|
}
|
|
|
|
warn_label.set_markup (warn_string);
|
|
}
|
|
|
|
void
|
|
ExportDialog::add_warning (Glib::ustring const & text)
|
|
{
|
|
if (warn_string.empty()) {
|
|
warn_string = _("<span color=\"#ffa755\">Warning: ") + text + "</span>";
|
|
} else {
|
|
warn_string = warn_string + _("\n<span color=\"#ffa755\">Warning: ") + text + "</span>";
|
|
}
|
|
|
|
warn_label.set_markup (warn_string);
|
|
}
|
|
|
|
/*** Dialog specializations ***/
|
|
|
|
ExportRangeDialog::ExportRangeDialog (PublicEditor & editor, Glib::ustring range_id) :
|
|
ExportDialog (editor, _("Export Range")),
|
|
range_id (range_id)
|
|
{}
|
|
|
|
void
|
|
ExportRangeDialog::init_components ()
|
|
{
|
|
preset_selector.reset (new ExportPresetSelector ());
|
|
timespan_selector.reset (new ExportTimespanSelectorSingle (range_id));
|
|
channel_selector.reset (new PortExportChannelSelector ());
|
|
file_notebook.reset (new ExportFileNotebook ());
|
|
}
|
|
|
|
ExportSelectionDialog::ExportSelectionDialog (PublicEditor & editor) :
|
|
ExportDialog (editor, _("Export Selection"))
|
|
{}
|
|
|
|
void
|
|
ExportSelectionDialog::init_components ()
|
|
{
|
|
preset_selector.reset (new ExportPresetSelector ());
|
|
timespan_selector.reset (new ExportTimespanSelectorSingle (X_("selection")));
|
|
channel_selector.reset (new PortExportChannelSelector ());
|
|
file_notebook.reset (new ExportFileNotebook ());
|
|
}
|
|
|
|
ExportRegionDialog::ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track) :
|
|
ExportDialog (editor, _("Export Region")),
|
|
region (region),
|
|
track (track)
|
|
{}
|
|
|
|
void
|
|
ExportRegionDialog::init_gui ()
|
|
{
|
|
ExportDialog::init_gui ();
|
|
|
|
channels_label->set_text (_("Source"));
|
|
}
|
|
|
|
void
|
|
ExportRegionDialog::init_components ()
|
|
{
|
|
Glib::ustring loc_id = profile_manager->set_single_range (region.position(), region.position() + region.length(), region.name());
|
|
|
|
preset_selector.reset (new ExportPresetSelector ());
|
|
timespan_selector.reset (new ExportTimespanSelectorSingle (loc_id));
|
|
channel_selector.reset (new RegionExportChannelSelector (region, track));
|
|
file_notebook.reset (new ExportFileNotebook ());
|
|
}
|