summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_format_selector.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-09-17 12:56:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-09-17 12:56:00 +0000
commitb5a57cc78c92b1d887b7e8de040d8663a9ba187e (patch)
tree7facf0cfbdab8ab95dcce93034e5e59750583057 /gtk2_ardour/export_format_selector.h
parent8876b57b0fda1000c63f8e1f7bb8f6d5ce53c480 (diff)
new files from sakari, missed last time
git-svn-id: svn://localhost/ardour2/branches/3.0@3738 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_format_selector.h')
-rw-r--r--gtk2_ardour/export_format_selector.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/gtk2_ardour/export_format_selector.h b/gtk2_ardour/export_format_selector.h
new file mode 100644
index 0000000000..d4e4ae0110
--- /dev/null
+++ b/gtk2_ardour/export_format_selector.h
@@ -0,0 +1,91 @@
+/*
+ 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_format_selector_h__
+#define __export_format_selector_h__
+
+#include <ardour/export_profile_manager.h>
+
+#include <gtkmm.h>
+#include <sigc++/signal.h>
+#include <boost/shared_ptr.hpp>
+
+namespace ARDOUR {
+ class Session;
+ class ExportFormatSpecification;
+ class ExportProfileManager;
+}
+
+///
+class ExportFormatSelector : public Gtk::HBox {
+
+ private:
+
+ typedef boost::shared_ptr<ARDOUR::ExportFormatSpecification> FormatPtr;
+ typedef std::list<FormatPtr> FormatList;
+
+ public:
+
+ ExportFormatSelector ();
+ ~ExportFormatSelector ();
+
+ void set_state (ARDOUR::ExportProfileManager::FormatStatePtr state_, ARDOUR::Session * session_);
+ void update_format_list ();
+
+ sigc::signal<void, FormatPtr> FormatEdited;
+ sigc::signal<void, FormatPtr> FormatRemoved;
+ sigc::signal<FormatPtr, FormatPtr> NewFormat;
+
+ /* Compatibility with other elements */
+
+ sigc::signal<void> CriticalSelectionChanged;
+
+ private:
+
+ void select_format (FormatPtr f);
+ void add_new_format ();
+ void remove_format ();
+ int open_edit_dialog (bool new_dialog = false);
+ void update_format_combo ();
+ void update_format_description ();
+
+ ARDOUR::ExportProfileManager::FormatStatePtr state;
+ ARDOUR::Session * session;
+
+ /*** GUI componenets ***/
+
+ struct FormatCols : public Gtk::TreeModelColumnRecord
+ {
+ public:
+ Gtk::TreeModelColumn<FormatPtr> format;
+ Gtk::TreeModelColumn<Glib::ustring> label;
+
+ FormatCols () { add (format); add (label); }
+ };
+ FormatCols format_cols;
+ Glib::RefPtr<Gtk::ListStore> format_list;
+ Gtk::ComboBox format_combo;
+
+ Gtk::Button edit_button;
+ Gtk::Button remove_button;
+ Gtk::Button new_button;
+};
+
+#endif /* __export_format_selector_h__ */