lots and lots of keybindings working again, with lots more menu items
[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
23 #include <gtk/gtkaccelmap.h>
24 #include <gtk/gtkuimanager.h>
25 #include <gtk/gtkactiongroup.h>
26
27 #include <gtkmm/accelmap.h>
28 #include <gtkmm/uimanager.h>
29
30 #include <pbd/error.h>
31
32 #include <ardour/ardour.h>
33
34 #include "actions.h"
35
36 using namespace std;
37 using namespace Gtk;
38 using namespace Glib;
39 using namespace sigc;
40
41 vector<RefPtr<Gtk::Action> > ActionManager::session_sensitive_actions;
42 vector<RefPtr<Gtk::Action> > ActionManager::region_list_selection_sensitive_actions;
43 vector<RefPtr<Gtk::Action> > ActionManager::region_selection_sensitive_actions;
44 vector<RefPtr<Gtk::Action> > ActionManager::track_selection_sensitive_actions;
45 vector<RefPtr<Gtk::Action> > ActionManager::plugin_selection_sensitive_actions;
46 vector<RefPtr<Gtk::Action> > ActionManager::range_sensitive_actions;
47 vector<RefPtr<Gtk::Action> > ActionManager::jack_sensitive_actions;
48 vector<RefPtr<Gtk::Action> > ActionManager::jack_opposite_sensitive_actions;
49 vector<RefPtr<Gtk::Action> > ActionManager::transport_sensitive_actions;
50 vector<RefPtr<Gtk::Action> > ActionManager::edit_cursor_in_region_sensitive_actions;
51
52 RefPtr<UIManager> ActionManager::ui_manager;
53 string ActionManager::unbound_string = "--";
54
55 void
56 ActionManager::init ()
57 {
58         ui_manager = UIManager::create ();
59
60         try {
61                 ui_manager->add_ui_from_file (ARDOUR::find_config_file("ardour-menus.xml"));
62         } catch (Glib::MarkupError& err) {
63                 error << "badly formatted UI definition file" << endmsg;
64         } catch (...) {
65                 error << "Ardour menu definition file not found" << endmsg;
66         }
67 }
68
69 RefPtr<Action>
70 ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl, guint key, Gdk::ModifierType mods)
71 {
72         RefPtr<Action> act = register_action (group, name, label, sl);
73         AccelMap::add_entry (act->get_accel_path(), key, mods);
74
75         return act;
76 }
77
78 RefPtr<Action>
79 ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
80 {
81         RefPtr<Action> act = register_action (group, name, label);
82         group->add (act, sl);
83
84         return act;
85 }
86
87 RefPtr<Action>
88 ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label)
89 {
90         RefPtr<Action> act;
91
92         act = Action::create (name, label);
93         group->add (act);
94
95         return act;
96 }
97
98
99 RefPtr<Action>
100 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, const char * name, const char * label, slot<void> sl, guint key, Gdk::ModifierType mods)
101 {
102         RefPtr<Action> act = register_radio_action (group, rgroup, name, label, sl);
103         AccelMap::add_entry (act->get_accel_path(), key, mods);
104
105         return act;
106 }
107
108 RefPtr<Action>
109 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, const char * name, const char * label, slot<void> sl)
110 {
111         RefPtr<Action> act;
112
113         act = RadioAction::create (rgroup, name, label);
114         group->add (act, sl);
115
116         return act;
117 }
118
119
120 RefPtr<Action>
121 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl, guint key, Gdk::ModifierType mods)
122 {
123         RefPtr<Action> act = register_toggle_action (group,name, label, sl);
124         AccelMap::add_entry (act->get_accel_path(), key, mods);
125
126         return act;
127 }
128
129 RefPtr<Action>
130 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
131 {
132         RefPtr<Action> act;
133
134         act = ToggleAction::create (name, label);
135         group->add (act, sl);
136
137         return act;
138 }
139
140 bool 
141 ActionManager::lookup_entry (const ustring accel_path, Gtk::AccelKey& key)
142 {
143         GtkAccelKey gkey;
144         bool known = gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
145         
146         if (known) {
147                 key = AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
148         } else {
149                 key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
150         }
151
152         return known;
153 }
154
155 void
156 ActionManager::get_all_actions (vector<string>& names, vector<string>& paths, vector<string>& keys, vector<AccelKey>& bindings)
157 {
158         ListHandle<RefPtr<ActionGroup> > uim_groups = ui_manager->get_action_groups ();
159         
160         for (ListHandle<RefPtr<ActionGroup> >::iterator g = uim_groups.begin(); g != uim_groups.end(); ++g) {
161                 
162                 ListHandle<RefPtr<Action> > group_actions = (*g)->get_actions();
163                 
164                 for (ListHandle<RefPtr<Action> >::iterator a = group_actions.begin(); a != group_actions.end(); ++a) {
165                         
166                         ustring accel_path;
167                         
168                         accel_path = (*a)->get_accel_path();
169                         
170                         names.push_back ((*a)->get_name());
171                         paths.push_back (accel_path);
172                         
173                         AccelKey key;
174                         bool known = lookup_entry (accel_path, key);
175                         
176                         if (known) {
177                                 keys.push_back (ui_manager->get_accel_group()->name (key.get_key(), Gdk::ModifierType (key.get_mod())));
178                         } else {
179                                 keys.push_back (unbound_string);
180                         }
181                         
182                         bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
183                 }
184         }
185 }
186
187 void
188 ActionManager::add_action_group (RefPtr<ActionGroup> grp)
189 {
190         ui_manager->insert_action_group (grp);
191 }
192
193 Widget*
194 ActionManager::get_widget (const char * name)
195 {
196         return ui_manager->get_widget (name);
197 }
198
199 RefPtr<Action>
200 ActionManager::get_action (const char * _name)
201 {
202         /* the C++ API for functions used here appears to be broken in
203            gtkmm2.6, so we fall back to the C level.
204         */
205
206         ustring name(_name);
207         GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
208         GList* node;
209         RefPtr<Action> act;
210
211         if (name.substr (0,9) != "<Actions>") {
212                 error << "badly specified action name: " << name << endmsg;
213                 return act;
214         }
215
216         ustring::size_type last_slash = name.find_last_of ('/');
217         ustring group_name = name.substr (10, last_slash - 10);
218         ustring action_name = name.substr (last_slash+1);
219         
220         for (node = list; node; node = g_list_next (node)) {
221
222                 GtkActionGroup* _ag = (GtkActionGroup*) node->data;
223                 
224                 if (group_name == gtk_action_group_get_name (_ag)) {
225
226                         GtkAction* _act;
227                         
228                         if ((_act = gtk_action_group_get_action (_ag, action_name.c_str())) != 0) {
229                                 act = Glib::wrap (_act);
230                                 break;
231                         }
232                 }
233         }
234
235         return act;
236 }
237
238 void 
239 ActionManager::set_sensitive (vector<RefPtr<Action> >& actions, bool state)
240 {
241         for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
242                 (*i)->set_sensitive (state);
243         }
244 }
245
246 void
247 ActionManager::uncheck_toggleaction (const char * actionname)
248 {
249         RefPtr<Action> act = get_action (actionname);
250         if (act) {
251                 RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
252                 tact->set_active (false);
253         } else {
254                 error << "Invalid action name: " << actionname << endmsg;
255         }
256 }
257