X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fexport_dialog.h;h=835c220c2331f1b7d9a0697bc7aa68da0a03525f;hb=6ee23029a338951705c589be6c61ab52099758b6;hp=454b52389cba1a94fa45a4d9b46301d2865a967d;hpb=6772e21f09ba65f479d525d8a64e910b9cc6a6d6;p=ardour.git diff --git a/gtk2_ardour/export_dialog.h b/gtk2_ardour/export_dialog.h index 454b52389c..835c220c23 100644 --- a/gtk2_ardour/export_dialog.h +++ b/gtk2_ardour/export_dialog.h @@ -1,5 +1,6 @@ /* - Copyright (C) 1999-2002 Paul Davis + 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 @@ -17,138 +18,179 @@ */ -#ifndef __ardour_export_dialog_h__ -#define __ardour_export_dialog_h__ +#ifndef __export_dialog_h__ +#define __export_dialog_h__ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include -#include -#include +#include "ardour/export_profile_manager.h" +#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" -class PublicEditor; +#include namespace ARDOUR { - class Session; - class AudioRegion; - class Port; + class ExportStatus; + class ExportHandler; } -class ExportDialog : public ArdourDialog -{ +class ExportTimespanSelector; +class ExportChannelSelector; + +class ExportDialog : public ArdourDialog { + public: - ExportDialog (PublicEditor&, ARDOUR::AudioRegion* r = 0); + + ExportDialog (PublicEditor & editor, std::string title, std::string xml_node_name); ~ExportDialog (); - void connect_to_session (ARDOUR::Session*); - void set_range (jack_nframes_t start, jack_nframes_t end); - void start_export (); + void set_session (ARDOUR::Session* s); - protected: - struct ExportModelColumns : public Gtk::TreeModel::ColumnRecord - { - public: - Gtk::TreeModelColumn output; - Gtk::TreeModelColumn left; - Gtk::TreeModelColumn right; - Gtk::TreeModelColumn port; - - ExportModelColumns() { add(output); add(left); add(right); add(port);} + /* Responses */ + + enum Responses { + RESPONSE_RT, + RESPONSE_FAST, + RESPONSE_CANCEL }; - ExportModelColumns exp_cols; + protected: + + typedef boost::shared_ptr HandlerPtr; + typedef boost::shared_ptr ManagerPtr; + + std::string xml_node_name; + HandlerPtr handler; + ManagerPtr profile_manager; + + // initializes GUI layout + virtual void init_gui (); + + // Must initialize all the shared_ptrs below + virtual void init_components (); + + // Override if the channel selector should not be grown + virtual bool channel_selector_is_expandable() { return true; } + + boost::scoped_ptr preset_selector; + boost::scoped_ptr timespan_selector; + boost::scoped_ptr channel_selector; + boost::scoped_ptr file_notebook; + + Gtk::VBox warning_widget; + Gtk::VBox progress_widget; + + Gtk::Label * timespan_label; + Gtk::Label * channels_label; private: - PublicEditor& editor; - ARDOUR::Session* session; - ARDOUR::AudioRegion* audio_region; - Gtk::VBox vpacker; - Gtk::VBox track_vpacker; - Gtk::HBox hpacker; - Gtk::HBox button_box; - - Gtk::Table format_table; - Gtk::Frame format_frame; - - Gtk::Label sample_rate_label; - Gtk::ComboBoxText sample_rate_combo; - Gtk::Label src_quality_label; - Gtk::ComboBoxText src_quality_combo; - Gtk::Label dither_type_label; - Gtk::ComboBoxText dither_type_combo; - Gtk::Label cue_file_label; - Gtk::ComboBoxText cue_file_combo; - Gtk::Label channel_count_label; - Gtk::ComboBoxText channel_count_combo; - Gtk::Label header_format_label; - Gtk::ComboBoxText header_format_combo; - Gtk::Label bitdepth_format_label; - Gtk::ComboBoxText bitdepth_format_combo; - Gtk::Label endian_format_label; - Gtk::ComboBoxText endian_format_combo; - Gtk::CheckButton cuefile_only_checkbox; - - Gtk::Frame file_frame; - Gtk::Entry file_entry; - Gtk::HBox file_hbox; - Gtk::Button file_browse_button; - - Gtk::Button ok_button; - Gtk::Button cancel_button; - Gtk::Label cancel_label; - Gtk::ProgressBar progress_bar; - Gtk::ScrolledWindow track_scroll; - Gtk::ScrolledWindow master_scroll; - Gtk::Button track_selector_button; - Gtk::TreeView track_selector; - Glib::RefPtr track_list; - Gtk::TreeView master_selector; - Glib::RefPtr master_list; - Gtk::FileSelection *file_selector; - ARDOUR::AudioExportSpecification spec; - - static void *_thread (void *arg); + + void init (); + + void expanded_changed(); + + void notify_errors (); + void close_dialog (); + + void sync_with_manager (); + void update_warnings_and_example_filename (); + void show_conflicting_files (); + + void export_rt (); + void export_fw (); + + void show_progress (); gint progress_timeout (); - sigc::connection progress_connection; - void build_window (); - void end_dialog(); - void header_chosen (); - void channels_chosen (); - void bitdepth_chosen (); - void sample_rate_chosen (); - void cue_file_type_chosen(); - - void fill_lists(); - - void do_export_cd_markers (const string& path, const string& cuefile_type); - void export_cue_file (ARDOUR::Locations::LocationList& locations, const string& path); - void export_toc_file (ARDOUR::Locations::LocationList& locations, const string& path); - void do_export (); - gint change_focus_policy (GdkEventAny *, bool); - gint window_closed (GdkEventAny *ignored); - - void track_selector_button_click (); - - void initiate_browse (); - void finish_browse (int status); - - void set_state(); - void save_state(); - - static void* _export_region_thread (void *); - void export_region (); + + typedef boost::shared_ptr StatusPtr; + + PublicEditor & editor; + StatusPtr status; + PBD::ScopedConnection abort_connection; + + /*** GUI components ***/ + + Glib::RefPtr advanced_sizegroup; + Gtk::Expander * advanced; + + /* Warning area */ + + Gtk::HBox warn_hbox; + Gtk::Label warn_label; + std::string warn_string; + + Gtk::HBox list_files_hbox; + Gtk::Label list_files_label; + Gtk::Button list_files_button; + std::string list_files_string; + + void add_error (std::string const & text); + void add_warning (std::string const & text); + + /* Progress bar */ + + Gtk::ProgressBar progress_bar; + sigc::connection progress_connection; + + float previous_progress; // Needed for gtk bug workaround + + /* Buttons */ + + Gtk::Button * cancel_button; + Gtk::Button * rt_export_button; + Gtk::Button * fast_export_button; + +}; + +class ExportRangeDialog : public ExportDialog +{ + public: + ExportRangeDialog (PublicEditor & editor, std::string range_id); + + private: + void init_components (); + + std::string range_id; }; -#endif // __ardour_export_dialog_h__ +class ExportSelectionDialog : public ExportDialog +{ + public: + ExportSelectionDialog (PublicEditor & editor); + + private: + void init_components (); +}; + +class ExportRegionDialog : public ExportDialog +{ + public: + ExportRegionDialog (PublicEditor & editor, ARDOUR::AudioRegion const & region, ARDOUR::AudioTrack & track); + + protected: + virtual bool channel_selector_is_expandable() { return false; } + + private: + void init_gui (); + void init_components (); + + ARDOUR::AudioRegion const & region; + ARDOUR::AudioTrack & track; +}; + +class StemExportDialog : public ExportDialog +{ + public: + StemExportDialog (PublicEditor & editor); + + private: + void init_components (); +}; +#endif /* __ardour_export_dialog_h__ */