2008-09-29 13:01:52 -04:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __export_file_notebook_h__
|
|
|
|
#define __export_file_notebook_h__
|
|
|
|
|
|
|
|
#include <sigc++/signal.h>
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/export_profile_manager.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
#include "ardour/session_handle.h"
|
2008-09-29 13:01:52 -04:00
|
|
|
|
|
|
|
#include "export_format_selector.h"
|
|
|
|
#include "export_filename_selector.h"
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
class ExportFileNotebook : public Gtk::Notebook, public ARDOUR::SessionHandlePtr
|
2008-09-29 13:01:52 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ExportFileNotebook ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
void set_session_and_manager (ARDOUR::Session * s, boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
|
|
|
|
void sync_with_manager ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Glib::ustring get_nth_format_name (uint32_t n);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
sigc::signal<void> CriticalSelectionChanged;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
|
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportFormatSpecification> FormatPtr;
|
|
|
|
typedef boost::shared_ptr<ARDOUR::ExportFilename> FilenamePtr;
|
|
|
|
class FilePage;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ManagerPtr profile_manager;
|
|
|
|
|
|
|
|
void add_new_file_page ();
|
|
|
|
void add_file_page (ARDOUR::ExportProfileManager::FormatStatePtr format_state, ARDOUR::ExportProfileManager::FilenameStatePtr filename_state);
|
|
|
|
void remove_file_page (FilePage * page);
|
|
|
|
void update_remove_file_page_sensitivity ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
sigc::connection page_change_connection;
|
|
|
|
void handle_page_change (GtkNotebookPage*, uint32_t page);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::HBox new_file_hbox;
|
|
|
|
Gtk::Button new_file_button;
|
|
|
|
Gtk::VBox new_file_dummy;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
uint32_t last_visible_page;
|
|
|
|
uint32_t page_counter;
|
|
|
|
|
|
|
|
class FilePage : public Gtk::VBox {
|
|
|
|
public:
|
2009-10-14 12:10:01 -04:00
|
|
|
FilePage (ARDOUR::Session * s, ManagerPtr profile_manager, ExportFileNotebook * parent, uint32_t number,
|
2008-09-29 13:01:52 -04:00
|
|
|
ARDOUR::ExportProfileManager::FormatStatePtr format_state,
|
|
|
|
ARDOUR::ExportProfileManager::FilenameStatePtr filename_state);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
virtual ~FilePage ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Widget & get_tab_widget () { return tab_widget; }
|
|
|
|
void set_remove_sensitive (bool value);
|
|
|
|
Glib::ustring get_format_name () const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ARDOUR::ExportProfileManager::FormatStatePtr get_format_state () const { return format_state; }
|
|
|
|
ARDOUR::ExportProfileManager::FilenameStatePtr get_filename_state () const { return filename_state; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
sigc::signal<void> CriticalSelectionChanged;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
private:
|
|
|
|
void save_format_to_manager (FormatPtr format);
|
|
|
|
void update_tab_label ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
ARDOUR::ExportProfileManager::FormatStatePtr format_state;
|
|
|
|
ARDOUR::ExportProfileManager::FilenameStatePtr filename_state;
|
|
|
|
ManagerPtr profile_manager;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
/* GUI components */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Label format_label;
|
|
|
|
Gtk::Alignment format_align;
|
|
|
|
ExportFormatSelector format_selector;
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection format_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::Label filename_label;
|
|
|
|
Gtk::Alignment filename_align;
|
|
|
|
ExportFilenameSelector filename_selector;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 13:01:52 -04:00
|
|
|
Gtk::HBox tab_widget;
|
|
|
|
Gtk::Label tab_label;
|
|
|
|
Gtk::Alignment tab_close_alignment;
|
|
|
|
Gtk::Button tab_close_button;
|
|
|
|
uint32_t tab_number;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|