Fix deletion of VCA with slaved controls.
[ardour.git] / gtk2_ardour / export_dialog.h
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 #ifndef __export_dialog_h__
22 #define __export_dialog_h__
23
24 #include <boost/scoped_ptr.hpp>
25 #include <string>
26
27 #include "ardour/export_profile_manager.h"
28
29 #include "public_editor.h"
30 #include "export_timespan_selector.h"
31 #include "export_channel_selector.h"
32 #include "export_file_notebook.h"
33 #include "export_preset_selector.h"
34 #include "ardour_dialog.h"
35 #include "soundcloud_export_selector.h"
36
37 #include <gtkmm.h>
38
39 namespace ARDOUR {
40         class ExportStatus;
41         class ExportHandler;
42 }
43
44 class ExportTimespanSelector;
45 class ExportChannelSelector;
46
47 class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
48 {
49
50   public:
51
52         ExportDialog (PublicEditor & editor, std::string title, ARDOUR::ExportProfileManager::ExportType type);
53         ~ExportDialog ();
54
55         void set_session (ARDOUR::Session* s);
56
57         /* Responses */
58
59         enum Responses {
60                 RESPONSE_RT,
61                 RESPONSE_FAST,
62                 RESPONSE_CANCEL
63         };
64
65   protected:
66
67         void on_response (int response_id) {
68                 Gtk::Dialog::on_response (response_id);
69         }
70
71         typedef boost::shared_ptr<ARDOUR::ExportHandler> HandlerPtr;
72         typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
73
74         ARDOUR::ExportProfileManager::ExportType type;
75         HandlerPtr      handler;
76         ManagerPtr      profile_manager;
77
78         // initializes GUI layout
79         virtual void init_gui ();
80
81         // Must initialize all the shared_ptrs below
82         virtual void init_components ();
83
84         boost::scoped_ptr<ExportPresetSelector>   preset_selector;
85         boost::scoped_ptr<ExportTimespanSelector> timespan_selector;
86         boost::scoped_ptr<ExportChannelSelector>  channel_selector;
87         boost::scoped_ptr<ExportFileNotebook>     file_notebook;
88
89         boost::shared_ptr<SoundcloudExportSelector> soundcloud_selector;
90
91         Gtk::VBox                                 warning_widget;
92         Gtk::VBox                                 progress_widget;
93
94         /*** GUI components ***/
95         Gtk::Notebook export_notebook;
96
97   private:
98
99         void init ();
100
101         void notify_errors (bool force = false);
102         void close_dialog ();
103
104         void sync_with_manager ();
105         void update_warnings_and_example_filename ();
106         void show_conflicting_files ();
107
108         void do_export ();
109
110         void update_realtime_selection ();
111         void parameter_changed (std::string const&);
112
113         void show_progress ();
114         gint progress_timeout ();
115
116         typedef boost::shared_ptr<ARDOUR::ExportStatus> StatusPtr;
117
118         PublicEditor &  editor;
119         StatusPtr       status;
120
121
122
123         /* Warning area */
124
125         Gtk::HBox           warn_hbox;
126         Gtk::Label          warn_label;
127         std::string       warn_string;
128
129         Gtk::HBox           list_files_hbox;
130         Gtk::Label          list_files_label;
131         Gtk::Button         list_files_button;
132         std::string       list_files_string;
133
134         void add_error (std::string const & text);
135         void add_warning (std::string const & text);
136
137         /* Progress bar */
138
139         Gtk::ProgressBar        progress_bar;
140         sigc::connection        progress_connection;
141
142         float previous_progress; // Needed for gtk bug workaround
143
144         void soundcloud_upload_progress(double total, double now, std::string title);
145
146         /* Buttons */
147
148         Gtk::Button *           cancel_button;
149         Gtk::Button *           export_button;
150
151 };
152
153 class ExportRangeDialog : public ExportDialog
154 {
155   public:
156         ExportRangeDialog (PublicEditor & editor, std::string range_id);
157
158   private:
159         void init_components ();
160
161         std::string range_id;
162 };
163
164 class ExportSelectionDialog : public ExportDialog
165 {
166   public:
167         ExportSelectionDialog (PublicEditor & editor);
168
169   private:
170         void init_components ();
171 };
172
173 class ExportRegionDialog : public ExportDialog
174 {
175   public:
176         ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track);
177
178   private:
179         void init_gui ();
180         void init_components ();
181
182         ARDOUR::AudioRegion const & region;
183         ARDOUR::AudioTrack & track;
184 };
185
186 class StemExportDialog : public ExportDialog
187 {
188   public:
189         StemExportDialog (PublicEditor & editor);
190
191   private:
192         void init_components ();
193 };
194
195 #endif /* __ardour_export_dialog_h__ */