use ActionManager namespace, rather than ActionMap objects, and remove all per-contex...
[ardour.git] / gtk2_ardour / export_format_selector.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __export_format_selector_h__
22 #define __export_format_selector_h__
23
24 #include <string>
25 #include <sigc++/signal.h>
26 #include <boost/shared_ptr.hpp>
27
28 #include <gtkmm/box.h>
29 #include <gtkmm/button.h>
30 #include <gtkmm/combobox.h>
31 #include <gtkmm/liststore.h>
32 #include <gtkmm/treemodel.h>
33
34 #include "ardour/export_profile_manager.h"
35 #include "ardour/session_handle.h"
36
37 namespace ARDOUR {
38         class ExportFormatSpecification;
39         class ExportProfileManager;
40 }
41
42 class ExportFormatSelector : public Gtk::HBox, public ARDOUR::SessionHandlePtr
43 {
44 private:
45
46         typedef boost::shared_ptr<ARDOUR::ExportFormatSpecification> FormatPtr;
47         typedef std::list<FormatPtr> FormatList;
48
49 public:
50
51         ExportFormatSelector ();
52         ~ExportFormatSelector ();
53
54         void set_state (ARDOUR::ExportProfileManager::FormatStatePtr state_, ARDOUR::Session * session_);
55         void update_format_list ();
56
57         sigc::signal<void, FormatPtr> FormatEdited;
58         sigc::signal<void, FormatPtr> FormatRemoved;
59         sigc::signal<FormatPtr, FormatPtr> NewFormat;
60         sigc::signal<void, FormatPtr> FormatReverted;
61
62         /* Compatibility with other elements */
63
64         sigc::signal<void> CriticalSelectionChanged;
65
66 private:
67
68         void select_format (FormatPtr f);
69         void add_new_format ();
70         void remove_format (bool called_from_button = false);
71         int open_edit_dialog (bool new_dialog = false);
72         void update_format_combo ();
73         void update_format_description ();
74
75         ARDOUR::ExportProfileManager::FormatStatePtr state;
76
77         /*** GUI componenets ***/
78
79         struct FormatCols : public Gtk::TreeModelColumnRecord
80         {
81         public:
82                 Gtk::TreeModelColumn<FormatPtr>      format;
83                 Gtk::TreeModelColumn<std::string>  label;
84
85                 FormatCols () { add (format); add (label); }
86         };
87         FormatCols                   format_cols;
88         Glib::RefPtr<Gtk::ListStore> format_list;
89         Gtk::ComboBox                format_combo;
90
91         Gtk::Button edit_button;
92         Gtk::Button remove_button;
93         Gtk::Button new_button;
94 };
95
96 #endif /* __export_format_selector_h__ */