remove long-lived bug that tried to make a non-existent action insensitive
[ardour.git] / gtk2_ardour / export_video_dialog.h
index 5ebcf3258d1b48e16ce43d6e0c3d7715568ec62a..12c75ec1419401d35fcf6b8883e2027687476d6c 100644 (file)
 
 #include <string>
 
-#include <gtkmm.h>
+#include <gtkmm/box.h>
+#include <gtkmm/button.h>
+#include <gtkmm/comboboxtext.h>
+#include <gtkmm/checkbutton.h>
+#include <gtkmm/entry.h>
+#include <gtkmm/label.h>
+#include <gtkmm/progressbar.h>
 
 #include "ardour/types.h"
 #include "ardour/template_utils.h"
  */
 class ExportVideoDialog : public ArdourDialog , public PBD::ScopedConnectionList
 {
-  public:
-       ExportVideoDialog (ARDOUR::Session*, TimeSelection &tme, bool range = false);
+public:
+       ExportVideoDialog ();
        ~ExportVideoDialog ();
 
        std::string get_exported_filename () { return outfn_path_entry.get_text(); }
 
-  private:
-       TimeSelection &export_range;
+       void apply_state(TimeSelection &tme, bool range);
+
+       XMLNode& get_state ();
+       void set_state (const XMLNode &);
+
+       void on_response (int response_id) {
+               Gtk::Dialog::on_response (response_id);
+       }
+
+private:
+       TimeSelection export_range;
 
        void on_show ();
        void abort_clicked ();
        void launch_export ();
        void encode_pass (int);
        void change_file_extension (std::string);
+       void width_value_changed ();
+       void height_value_changed ();
+
+       void set_original_file_information ();
 
        void open_outfn_dialog ();
        void open_invid_dialog ();
@@ -63,21 +82,25 @@ class ExportVideoDialog : public ArdourDialog , public PBD::ScopedConnectionList
        void aspect_checkbox_toggled ();
        void fps_checkbox_toggled ();
 
-       bool aborted;
-       bool twopass;
-       bool firstpass;
-       bool normalize;
+       bool _aborted;
+       bool _twopass;
+       bool _firstpass;
+       bool _normalize;
 
        void finished ();
-       void update_progress (ARDOUR::framecnt_t, ARDOUR::framecnt_t);
+       void update_progress (ARDOUR::samplecnt_t, ARDOUR::samplecnt_t);
 
        boost::shared_ptr<ARDOUR::ExportStatus> status;
        sigc::connection audio_progress_connection;
        gint audio_progress_display ();
-       float previous_progress;
+       float _previous_progress;
+
+       TranscodeFfmpeg *_transcoder;
+       std::string _insnd;
 
-       TranscodeFfmpeg *transcoder;
-       std::string insnd;
+       float _video_source_aspect_ratio;
+       bool _suspend_signals;
+       bool _suspend_dirty;
 
        Gtk::Label        outfn_path_label;
        Gtk::Entry        outfn_path_entry;
@@ -103,6 +126,7 @@ class ExportVideoDialog : public ArdourDialog , public PBD::ScopedConnectionList
        Gtk::ComboBoxText preset_combo;
 
        Gtk::CheckButton  scale_checkbox;
+       Gtk::CheckButton  scale_aspect;
        Gtk::Adjustment   width_adjustment;
        Gtk::SpinButton   width_spinner;
        Gtk::Adjustment   height_adjustment;