Dialogbox checkmarks turn off when dialogs are closed.
[ardour.git] / gtk2_ardour / actions.cc
1 /*
2     Copyright (C) 2005 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <vector>
22 #include <gtk/gtkaccelmap.h>
23 #include <gtkmm/accelmap.h>
24 #include <gtkmm/uimanager.h>
25
26 #include <pbd/error.h>
27
28 #include <ardour/ardour.h>
29
30 #include "actions.h"
31
32 using namespace std;
33 using namespace Gtk;
34 using namespace Glib;
35 using namespace sigc;
36
37 vector<RefPtr<Gtk::Action> > ActionManager::session_sensitive_actions;
38 vector<RefPtr<Gtk::Action> > ActionManager::region_list_selection_sensitive_actions;
39 vector<RefPtr<Gtk::Action> > ActionManager::region_selection_sensitive_actions;
40 vector<RefPtr<Gtk::Action> > ActionManager::track_selection_sensitive_actions;
41 vector<RefPtr<Gtk::Action> > ActionManager::plugin_selection_sensitive_actions;
42 vector<RefPtr<Gtk::Action> > ActionManager::range_sensitive_actions;
43 vector<RefPtr<Gtk::Action> > ActionManager::jack_sensitive_actions;
44 vector<RefPtr<Gtk::Action> > ActionManager::jack_opposite_sensitive_actions;
45 RefPtr<UIManager> ActionManager::ui_manager;
46 string ActionManager::unbound_string = "--";
47
48 void
49 ActionManager::init ()
50 {
51         ui_manager = UIManager::create ();
52
53         try {
54                 ui_manager->add_ui_from_file (ARDOUR::find_config_file("ardour-menus.xml"));
55         } catch (Glib::MarkupError& err) {
56                 error << "badly formatted UI definition file" << endmsg;
57         } catch (...) {
58                 error << "Ardour menu definition file not found" << endmsg;
59         }
60 }
61
62 RefPtr<Action>
63 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
64 {
65         RefPtr<Action> act = register_action (group, name, label, sl);
66         AccelMap::add_entry (act->get_accel_path(), key, mods);
67
68         return act;
69 }
70
71 RefPtr<Action>
72 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl)
73 {
74         RefPtr<Action> act = register_action (group, name, label);
75         group->add (act, sl);
76
77         return act;
78 }
79
80 RefPtr<Action>
81 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label)
82 {
83         RefPtr<Action> act;
84
85         act = Action::create (name, label);
86         group->add (act);
87
88         return act;
89 }
90
91
92 RefPtr<Action>
93 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
94 {
95         RefPtr<Action> act = register_radio_action (group, rgroup, name, label, sl);
96         AccelMap::add_entry (act->get_accel_path(), key, mods);
97
98         return act;
99 }
100
101 RefPtr<Action>
102 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, string name, string label, slot<void> sl)
103 {
104         RefPtr<Action> act;
105
106         act = RadioAction::create (rgroup, name, label);
107         group->add (act, sl);
108
109         return act;
110 }
111
112
113 RefPtr<Action>
114 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
115 {
116         RefPtr<Action> act = register_toggle_action (group,name, label, sl);
117         AccelMap::add_entry (act->get_accel_path(), key, mods);
118
119         return act;
120 }
121
122 RefPtr<Action>
123 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl)
124 {
125         RefPtr<Action> act;
126
127         act = ToggleAction::create (name, label);
128         group->add (act, sl);
129
130         return act;
131 }
132
133 bool 
134 ActionManager::lookup_entry (const ustring accel_path, Gtk::AccelKey& key)
135 {
136         GtkAccelKey gkey;
137         bool known = gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
138         
139         if (known) {
140                 key = AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
141         } else {
142                 key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
143         }
144
145         return known;
146 }
147
148 void
149 ActionManager::get_all_actions (vector<string>& names, vector<string>& paths, vector<string>& keys, vector<AccelKey>& bindings)
150 {
151         ListHandle<RefPtr<ActionGroup> > uim_groups = ui_manager->get_action_groups ();
152         
153         for (ListHandle<RefPtr<ActionGroup> >::iterator g = uim_groups.begin(); g != uim_groups.end(); ++g) {
154                 
155                 ListHandle<RefPtr<Action> > group_actions = (*g)->get_actions();
156                 
157                 for (ListHandle<RefPtr<Action> >::iterator a = group_actions.begin(); a != group_actions.end(); ++a) {
158                         
159                         ustring accel_path;
160                         
161                         accel_path = (*a)->get_accel_path();
162                         
163                         names.push_back ((*a)->get_name());
164                         paths.push_back (accel_path);
165                         
166                         AccelKey key;
167                         bool known = lookup_entry (accel_path, key);
168                         
169                         if (known) {
170                                 keys.push_back (ui_manager->get_accel_group()->name (key.get_key(), Gdk::ModifierType (key.get_mod())));
171                         } else {
172                                 keys.push_back (unbound_string);
173                         }
174                         
175                         bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
176                 }
177         }
178 }
179
180 void
181 ActionManager::add_action_group (RefPtr<ActionGroup> grp)
182 {
183         ui_manager->insert_action_group (grp);
184 }
185
186 Widget*
187 ActionManager::get_widget (ustring name)
188 {
189         return ui_manager->get_widget (name);
190 }
191
192 RefPtr<Action>
193 ActionManager::get_action (ustring name)
194 {
195         return ui_manager->get_action (name);
196 }
197
198 void 
199 ActionManager::set_sensitive (vector<RefPtr<Action> >& actions, bool state)
200 {
201         for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
202                 (*i)->set_sensitive (state);
203         }
204 }
205
206 void
207 ActionManager::uncheck_toggleaction (const std::string& actionname)
208 {
209         RefPtr<Action> act = get_action (actionname);
210         if (act) {
211                 RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
212                 tact->set_active (false);
213         } else {
214                 error << "Invalid action name: " << actionname << endmsg;
215         }
216 }
217