2008-09-29 13:01:52 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2015 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2007-2011 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2008-2013 Sakari Bergen <sakari.bergen@beatwaves.net>
|
|
|
|
* Copyright (C) 2010-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2013-2014 Colin Fletcher <colin.m.fletcher@googlemail.com>
|
|
|
|
* Copyright (C) 2016-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
#ifndef __export_dialog_h__
|
|
|
|
#define __export_dialog_h__
|
|
|
|
|
2010-09-14 11:45:21 -04:00
|
|
|
#include <string>
|
2017-07-16 21:48:18 -04:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/notebook.h>
|
|
|
|
#include <gtkmm/progressbar.h>
|
2008-09-29 13:01:52 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/export_profile_manager.h"
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "export_timespan_selector.h"
|
|
|
|
#include "export_channel_selector.h"
|
|
|
|
#include "export_file_notebook.h"
|
|
|
|
#include "export_preset_selector.h"
|
|
|
|
#include "ardour_dialog.h"
|
2013-10-07 09:44:35 -04:00
|
|
|
#include "soundcloud_export_selector.h"
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class ExportStatus;
|
2009-10-30 11:30:22 -04:00
|
|
|
class ExportHandler;
|
2008-09-29 13:01:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class ExportTimespanSelector;
|
|
|
|
class ExportChannelSelector;
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
|
2013-10-07 09:44:35 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2008-09-29 13:01:52 -04:00
|
|
|
|
2012-12-07 16:58:33 -05:00
|
|
|
ExportDialog (PublicEditor & editor, std::string title, ARDOUR::ExportProfileManager::ExportType type);
|
2008-09-29 13:01:52 -04:00
|
|
|
~ExportDialog ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void set_session (ARDOUR::Session* s);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
/* Responses */
|
|
|
|
|
|
|
|
enum Responses {
|
|
|
|
RESPONSE_RT,
|
|
|
|
RESPONSE_FAST,
|
|
|
|
RESPONSE_CANCEL
|
|
|
|
};
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
protected:
|
2008-09-29 13:01:52 -04:00
|
|
|
|
2017-04-20 13:03:52 -04:00
|
|
|
void on_response (int response_id) {
|
|
|
|
Gtk::Dialog::on_response (response_id);
|
|
|
|
}
|
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportHandler> HandlerPtr;
|
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-12-07 16:58:33 -05:00
|
|
|
ARDOUR::ExportProfileManager::ExportType type;
|
2008-10-11 06:14:51 -04:00
|
|
|
HandlerPtr handler;
|
|
|
|
ManagerPtr profile_manager;
|
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
// initializes GUI layout
|
|
|
|
virtual void init_gui ();
|
|
|
|
|
|
|
|
// Must initialize all the shared_ptrs below
|
|
|
|
virtual void init_components ();
|
|
|
|
|
2010-04-02 16:49:02 -04:00
|
|
|
boost::scoped_ptr<ExportPresetSelector> preset_selector;
|
|
|
|
boost::scoped_ptr<ExportTimespanSelector> timespan_selector;
|
|
|
|
boost::scoped_ptr<ExportChannelSelector> channel_selector;
|
|
|
|
boost::scoped_ptr<ExportFileNotebook> file_notebook;
|
2014-05-31 09:47:11 -04:00
|
|
|
|
|
|
|
boost::shared_ptr<SoundcloudExportSelector> soundcloud_selector;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::VBox warning_widget;
|
|
|
|
Gtk::VBox progress_widget;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2013-06-16 13:47:16 -04:00
|
|
|
/*** GUI components ***/
|
|
|
|
Gtk::Notebook export_notebook;
|
2008-09-29 13:01:52 -04:00
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
void init ();
|
|
|
|
|
2013-11-23 12:11:31 -05:00
|
|
|
void notify_errors (bool force = false);
|
2008-09-29 13:01:52 -04:00
|
|
|
void close_dialog ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void sync_with_manager ();
|
2012-01-29 15:55:44 -05:00
|
|
|
void update_warnings_and_example_filename ();
|
2008-09-29 13:01:52 -04:00
|
|
|
void show_conflicting_files ();
|
|
|
|
|
2012-06-08 17:06:49 -04:00
|
|
|
void do_export ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2020-01-23 18:05:36 -05:00
|
|
|
void maybe_set_session_dirty ();
|
|
|
|
|
2016-07-15 20:15:56 -04:00
|
|
|
void update_realtime_selection ();
|
|
|
|
void parameter_changed (std::string const&);
|
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void show_progress ();
|
|
|
|
gint progress_timeout ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportStatus> StatusPtr;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
PublicEditor & editor;
|
|
|
|
StatusPtr status;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
|
2012-02-04 08:18:58 -05:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
/* Warning area */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::HBox warn_hbox;
|
|
|
|
Gtk::Label warn_label;
|
2017-07-01 12:42:24 -04:00
|
|
|
std::string warn_string;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::HBox list_files_hbox;
|
|
|
|
Gtk::Label list_files_label;
|
|
|
|
Gtk::Button list_files_button;
|
2017-07-01 12:42:24 -04:00
|
|
|
std::string list_files_string;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-09-14 11:45:21 -04:00
|
|
|
void add_error (std::string const & text);
|
|
|
|
void add_warning (std::string const & text);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
/* Progress bar */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::ProgressBar progress_bar;
|
|
|
|
sigc::connection progress_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-01-28 13:14:19 -05:00
|
|
|
float previous_progress; // Needed for gtk bug workaround
|
2012-01-28 07:55:28 -05:00
|
|
|
|
2020-01-23 18:05:36 -05:00
|
|
|
bool _initialized;
|
|
|
|
|
2013-10-07 09:44:35 -04:00
|
|
|
void soundcloud_upload_progress(double total, double now, std::string title);
|
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
/* Buttons */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Button * cancel_button;
|
2012-06-08 17:06:49 -04:00
|
|
|
Gtk::Button * export_button;
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class ExportRangeDialog : public ExportDialog
|
|
|
|
{
|
|
|
|
public:
|
2010-09-14 11:45:21 -04:00
|
|
|
ExportRangeDialog (PublicEditor & editor, std::string range_id);
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
void init_components ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-01-31 15:42:08 -05:00
|
|
|
std::string range_id;
|
2008-09-29 13:01:52 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class ExportSelectionDialog : public ExportDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExportSelectionDialog (PublicEditor & editor);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init_components ();
|
|
|
|
};
|
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
class ExportRegionDialog : public ExportDialog
|
|
|
|
{
|
2011-01-06 11:55:19 -05:00
|
|
|
public:
|
2008-10-11 06:14:51 -04:00
|
|
|
ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track);
|
|
|
|
|
|
|
|
private:
|
2008-10-11 11:35:36 -04:00
|
|
|
void init_gui ();
|
2008-10-11 06:14:51 -04:00
|
|
|
void init_components ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-10-11 06:14:51 -04:00
|
|
|
ARDOUR::AudioRegion const & region;
|
|
|
|
ARDOUR::AudioTrack & track;
|
|
|
|
};
|
|
|
|
|
2011-01-06 11:55:19 -05:00
|
|
|
class StemExportDialog : public ExportDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StemExportDialog (PublicEditor & editor);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-01-06 11:55:19 -05:00
|
|
|
private:
|
|
|
|
void init_components ();
|
|
|
|
};
|
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
#endif /* __ardour_export_dialog_h__ */
|