1 /*
2  * Copyright (C) 2008-2011 Sakari Bergen <sakari.bergen@beatwaves.net>
3  * Copyright (C) 2009 David Robillard <d@drobilla.net>
4  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20 
21 #ifndef __export_preset_selector_h__
22 #define __export_preset_selector_h__
23 
24 #include <sigc++/signal.h>
25 
26 #include <gtkmm/box.h>
27 #include <gtkmm/button.h>
28 #include <gtkmm/comboboxentry.h>
29 #include <gtkmm/label.h>
30 #include <gtkmm/liststore.h>
31 #include <gtkmm/treemodel.h>
32 
33 #include "ardour/export_profile_manager.h"
34 
35 class ExportPresetSelector : public Gtk::HBox
36 {
37 public:
38 
39 	ExportPresetSelector ();
40 
41 	void set_manager (boost::shared_ptr<ARDOUR::ExportProfileManager> manager);
42 
43 	sigc::signal<void> CriticalSelectionChanged;
44 
45 private:
46 
47 	typedef boost::shared_ptr<ARDOUR::ExportProfileManager> ManagerPtr;
48 	typedef ARDOUR::ExportPresetPtr PresetPtr;
49 	typedef ARDOUR::ExportProfileManager::PresetList PresetList;
50 
51 	ManagerPtr       profile_manager;
52 	sigc::connection select_connection;
53 
54 	void sync_with_manager ();
55 	void update_selection ();
56 	void create_new ();
57 	void save_current ();
58 	void remove_current ();
59 
60 	struct PresetCols : public Gtk::TreeModelColumnRecord
61 	{
62 	public:
63 		Gtk::TreeModelColumn<PresetPtr>      preset;
64 		Gtk::TreeModelColumn<std::string>  label;
65 
PresetColsPresetCols66 		PresetCols () { add (preset); add (label); }
67 	};
68 	PresetCols                   cols;
69 	Glib::RefPtr<Gtk::ListStore> list;
70 	PresetPtr                    current;
71 	PresetPtr                    previous;
72 
73 	Gtk::Label          label;
74 	Gtk::ComboBoxEntry  entry;
75 
76 	Gtk::Button         save_button;
77 	Gtk::Button         remove_button;
78 	Gtk::Button         new_button;
79 };
80 
81 #endif
82