summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_preset_selector.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2008-09-29 17:01:52 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2008-09-29 17:01:52 +0000
commitef9beb3f60b5499d4db48b771627b6facfe872d3 (patch)
treeda164d4da8e7812cbc1865e544d659e4f4ddbd3c /gtk2_ardour/export_preset_selector.h
parent8807d0f748b424115393707f031d59b760080e8e (diff)
* Fixed const correctness error in Location
* Reworked ExportMainDialog in preparation for the creation of CD and region export dialogs: * Separated ExportPresetSelector and ExportFileNotebook from ExportMainDialog * Made ExportTimespanSelector polymorphic regarding single/multiple timespan mode * renamed ExportMainDialog to ExportDialog and made it easily customizable * created ExportRangeDialog and ExportSelectionDialog, these can be later customized more if necessary git-svn-id: svn://localhost/ardour2/branches/3.0@3834 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_preset_selector.h')
-rw-r--r--gtk2_ardour/export_preset_selector.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/gtk2_ardour/export_preset_selector.h b/gtk2_ardour/export_preset_selector.h
new file mode 100644
index 0000000000..3022e224bc
--- /dev/null
+++ b/gtk2_ardour/export_preset_selector.h
@@ -0,0 +1,75 @@
+/*
+ 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_preset_selector_h__
+#define __export_preset_selector_h__
+
+#include <sigc++/signal.h>
+#include <gtkmm.h>
+
+#include <ardour/export_profile_manager.h>
+
+class ExportPresetSelector : public Gtk::HBox
+{
+
+ public:
+
+ ExportPresetSelector ();
+
+ void set_manager (boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
+
+ sigc::signal<void> CriticalSelectionChanged;
+
+ private:
+
+ typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
+ typedef ARDOUR::ExportProfileManager::PresetPtr PresetPtr;
+ typedef ARDOUR::ExportProfileManager::PresetList PresetList;
+
+ ManagerPtr profile_manager;
+ sigc::connection select_connection;
+
+ void sync_with_manager ();
+ void update_selection ();
+ void save_current ();
+ void remove_current ();
+
+ struct PresetCols : public Gtk::TreeModelColumnRecord
+ {
+ public:
+ Gtk::TreeModelColumn<PresetPtr> preset;
+ Gtk::TreeModelColumn<Glib::ustring> label;
+
+ PresetCols () { add (preset); add (label); }
+ };
+ PresetCols cols;
+ Glib::RefPtr<Gtk::ListStore> list;
+ PresetPtr current;
+ PresetPtr previous;
+
+ Gtk::Label label;
+ Gtk::ComboBoxEntry entry;
+
+ Gtk::Button save_button;
+ Gtk::Button remove_button;
+ Gtk::Button new_button;
+};
+
+#endif