NO-OP whitespace (updated GH PR #357)
[ardour.git] / gtk2_ardour / export_dialog.h
index 315780750e6c9813c066502dcdcd5f68465d2b2d..c45349f7c973ddedda692e2e3b51c33ed91d6ed2 100644 (file)
@@ -44,7 +44,7 @@ namespace ARDOUR {
 class ExportTimespanSelector;
 class ExportChannelSelector;
 
-class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList 
+class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
 {
 
   public:
@@ -64,6 +64,10 @@ class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
 
   protected:
 
+       void on_response (int response_id) {
+               Gtk::Dialog::on_response (response_id);
+       }
+
        typedef boost::shared_ptr<ARDOUR::ExportHandler> HandlerPtr;
        typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
 
@@ -81,7 +85,8 @@ class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
        boost::scoped_ptr<ExportTimespanSelector> timespan_selector;
        boost::scoped_ptr<ExportChannelSelector>  channel_selector;
        boost::scoped_ptr<ExportFileNotebook>     file_notebook;
-       boost::scoped_ptr<SoundcloudExportSelector> soundcloud_selector;
+
+       boost::shared_ptr<SoundcloudExportSelector> soundcloud_selector;
 
        Gtk::VBox                                 warning_widget;
        Gtk::VBox                                 progress_widget;
@@ -102,6 +107,9 @@ class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
 
        void do_export ();
 
+       void update_realtime_selection ();
+       void parameter_changed (std::string const&);
+
        void show_progress ();
        gint progress_timeout ();
 
@@ -116,12 +124,12 @@ class ExportDialog : public ArdourDialog, public PBD::ScopedConnectionList
 
        Gtk::HBox           warn_hbox;
        Gtk::Label          warn_label;
-       std::string       warn_string;
+       std::string         warn_string;
 
        Gtk::HBox           list_files_hbox;
        Gtk::Label          list_files_label;
        Gtk::Button         list_files_button;
-       std::string       list_files_string;
+       std::string         list_files_string;
 
        void add_error (std::string const & text);
        void add_warning (std::string const & text);