make plugin menu a real submenu of the relevant toplevel menuitem
[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 */
19
20 #include <cstring>
21 #include <vector>
22 #include <string>
23 #include <list>
24
25 #include <gtk/gtkaccelmap.h>
26 #include <gtk/gtkuimanager.h>
27 #include <gtk/gtkactiongroup.h>
28
29 #include <gtkmm/accelmap.h>
30 #include <gtkmm/uimanager.h>
31
32 #include <pbd/error.h>
33
34 #include <ardour/ardour.h>
35
36 #include "actions.h"
37 #include "opts.h"
38 #include "i18n.h"
39
40 using namespace std;
41 using namespace Gtk;
42 using namespace Glib;
43 using namespace sigc;
44 using namespace PBD;
45 using namespace ARDOUR;
46
47 vector<RefPtr<Gtk::Action> > ActionManager::session_sensitive_actions;
48 vector<RefPtr<Gtk::Action> > ActionManager::region_list_selection_sensitive_actions;
49 vector<RefPtr<Gtk::Action> > ActionManager::plugin_selection_sensitive_actions;
50 vector<RefPtr<Gtk::Action> > ActionManager::region_selection_sensitive_actions;
51 vector<RefPtr<Gtk::Action> > ActionManager::track_selection_sensitive_actions;
52 vector<RefPtr<Gtk::Action> > ActionManager::point_selection_sensitive_actions;
53 vector<RefPtr<Gtk::Action> > ActionManager::time_selection_sensitive_actions;
54 vector<RefPtr<Gtk::Action> > ActionManager::line_selection_sensitive_actions;
55 vector<RefPtr<Gtk::Action> > ActionManager::playlist_selection_sensitive_actions;
56 vector<RefPtr<Gtk::Action> > ActionManager::mouse_edit_point_requires_canvas_actions;
57
58 vector<RefPtr<Gtk::Action> > ActionManager::range_sensitive_actions;
59 vector<RefPtr<Gtk::Action> > ActionManager::jack_sensitive_actions;
60 vector<RefPtr<Gtk::Action> > ActionManager::jack_opposite_sensitive_actions;
61 vector<RefPtr<Gtk::Action> > ActionManager::transport_sensitive_actions;
62 vector<RefPtr<Gtk::Action> > ActionManager::edit_point_in_region_sensitive_actions;
63
64 RefPtr<UIManager> ActionManager::ui_manager;
65 string ActionManager::unbound_string = "--";
66
67 void
68 ActionManager::init ()
69 {
70         ui_manager = UIManager::create ();
71
72         std::string ui_file = ARDOUR::find_config_file (ARDOUR_COMMAND_LINE::menus_file);
73
74         bool loaded = false;
75         
76         try {
77                 ui_manager->add_ui_from_file (ui_file);
78                 loaded = true;
79         } catch (Glib::MarkupError& err) {
80                 error << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endmsg;
81                 cerr << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endl;
82         } catch (...) {
83                 error << _("Ardour menu definition file not found") << endmsg;
84         }
85
86         if (!loaded) {
87                 error << _("ardour will not work without a valid ardour.menus file") << endmsg;
88                 exit(1);
89         }
90 }
91
92 RefPtr<Action>
93 ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
94 {
95         RefPtr<Action> act;
96
97         act = Action::create (name, label);
98         group->add (act, sl);
99
100         return act;
101 }
102
103 RefPtr<Action>
104 ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label)
105 {
106         RefPtr<Action> act;
107
108         act = Action::create (name, label);
109         group->add (act);
110
111         return act;
112 }
113
114
115 RefPtr<Action>
116 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group& rgroup, const char * name, const char * label, slot<void> sl)
117 {
118         RefPtr<Action> act;
119
120         act = RadioAction::create (rgroup, name, label);
121         group->add (act, sl);
122
123         return act;
124 }
125
126 RefPtr<Action>
127 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
128 {
129         RefPtr<Action> act;
130
131         act = ToggleAction::create (name, label);
132         group->add (act, sl);
133
134         return act;
135 }
136
137 bool 
138 ActionManager::lookup_entry (const ustring accel_path, Gtk::AccelKey& key)
139 {
140         GtkAccelKey gkey;
141         bool known = gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
142         
143         if (known) {
144                 key = AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
145         } else {
146                 key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
147         }
148
149         return known;
150 }
151
152 struct SortActionsByLabel {
153     bool operator() (Glib::RefPtr<Gtk::Action> a, Glib::RefPtr<Gtk::Action> b) {
154             ustring astr = a->get_accel_path();
155             ustring bstr = b->get_accel_path();
156             return astr < bstr;
157     }
158 };
159
160 void
161 ActionManager::get_all_actions (vector<string>& names, vector<string>& paths, vector<string>& keys, vector<AccelKey>& bindings)
162 {
163         /* the C++ API for functions used here appears to be broken in
164            gtkmm2.6, so we fall back to the C level.
165         */
166
167         GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
168         GList* node;
169         GList* acts;
170
171         for (node = list; node; node = g_list_next (node)) {
172                 
173                 GtkActionGroup* group = (GtkActionGroup*) node->data;
174                 
175                 /* first pass: collect them all */
176                 
177                 typedef std::list<Glib::RefPtr<Gtk::Action> > action_list;
178                 action_list the_acts;
179
180                 for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
181                         GtkAction* action = (GtkAction*) acts->data;
182                         the_acts.push_back (Glib::wrap (action, true));
183                 }
184                 
185                 /* now sort by label */
186                 
187                 SortActionsByLabel cmp;
188                 the_acts.sort (cmp);
189
190                 for (action_list::iterator a = the_acts.begin(); a != the_acts.end(); ++a) {
191
192                         string accel_path = (*a)->get_accel_path ();
193                         ustring label = (*a)->property_label();
194
195                         names.push_back (label);
196                         paths.push_back (accel_path);
197                         
198                         AccelKey key;
199                         bool known = lookup_entry (accel_path, key);
200                         
201                         if (known) {
202                                 keys.push_back (ui_manager->get_accel_group()->name (key.get_key(), Gdk::ModifierType (key.get_mod())));
203                         } else {
204                                 keys.push_back (unbound_string);
205                         }
206                         
207                         bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
208                 }
209         }
210 }
211
212
213 void
214 ActionManager::add_action_group (RefPtr<ActionGroup> grp)
215 {
216         ui_manager->insert_action_group (grp);
217 }
218
219 Widget*
220 ActionManager::get_widget (const char * name)
221 {
222         return ui_manager->get_widget (name);
223 }
224
225 RefPtr<Action>
226 ActionManager::get_action (const char* group_name, const char* action_name)
227 {
228         /* the C++ API for functions used here appears to be broken in
229            gtkmm2.6, so we fall back to the C level.
230         */
231
232         GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
233         GList* node;
234         RefPtr<Action> act;
235
236         for (node = list; node; node = g_list_next (node)) {
237
238                 GtkActionGroup* _ag = (GtkActionGroup*) node->data;
239                 
240                 if (strcmp (group_name,  gtk_action_group_get_name (_ag)) == 0) {
241                         
242                         GtkAction* _act;
243                         
244                         if ((_act = gtk_action_group_get_action (_ag, action_name)) != 0) {
245                                 act = Glib::wrap (_act, true);
246                                 break;
247                         }
248                 }
249         }
250
251         return act;
252 }
253
254 void 
255 ActionManager::set_sensitive (vector<RefPtr<Action> >& actions, bool state)
256 {
257         for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
258                 (*i)->set_sensitive (state);
259         }
260 }
261
262 void
263 ActionManager::uncheck_toggleaction (const char * name)
264 {
265         char *last_slash = strrchr (name, '/');
266
267         if (last_slash == 0) {
268                 fatal << string_compose (_("programmer error: %1 %2"), X_("illegal toggle action name"), name) << endmsg;
269                 /*NOTREACHED*/
270                 return;
271         }
272
273         /* 10 = strlen ("<Actions>/") */
274         size_t len = last_slash - (name + 10);
275
276         char* group_name = new char[len+1];
277         memcpy (group_name, name + 10, len);
278         group_name[len] = '\0';
279
280         char* action_name = last_slash + 1;
281
282         RefPtr<Action> act = get_action (group_name, action_name);
283         if (act) {
284                 RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
285                 tact->set_active (false);
286         } else {
287                 error << string_compose (_("Unknown action name: %1"),  name) << endmsg;
288         }
289
290         delete [] group_name;
291 }
292
293 /** Examine the state of a Configuration setting and a toggle action, and toggle the Configuration
294  * setting if its state doesn't match the toggle action.
295  * @param group Action group.
296  * @param action Action name.
297  * @param Method to set the state of the Configuration setting.
298  * @param Method to get the state of the Configuration setting.
299  */
300 void
301 ActionManager::toggle_config_state (const char* group, const char* action, bool (Configuration::*set)(bool), bool (Configuration::*get)(void) const)
302 {
303         Glib::RefPtr<Action> act = ActionManager::get_action (group, action);
304         if (act) {
305                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
306                 
307                 if (tact) {
308                         bool x = (Config->*get)();
309                         
310                         if (x != tact->get_active()) {
311                                 (Config->*set) (!x);
312                         }
313                 }
314         }
315 }
316
317 void
318 ActionManager::toggle_config_state (const char* group, const char* action, sigc::slot<void> theSlot)
319 {
320         Glib::RefPtr<Action> act = ActionManager::get_action (group, action);
321         if (act) {
322                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
323                 if (tact->get_active()) {
324                         theSlot ();
325                 }
326         }
327 }
328
329
330 /** Set the state of a ToggleAction using a particular Configuration get() method
331  * @param group Action group.
332  * @param action Action name.
333  * @param get Method to obtain the state that the ToggleAction should have.
334  */
335 void
336 ActionManager::map_some_state (const char* group, const char* action, bool (Configuration::*get)() const)
337 {
338         Glib::RefPtr<Action> act = ActionManager::get_action (group, action);
339         if (act) {
340                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
341
342                 if (tact) {
343                         
344                         bool x = (Config->*get)();
345
346                         if (tact->get_active() != x) {
347                                 tact->set_active (x);
348                         }
349                 } else {
350                         cerr << group << ':' << action << " is not a toggle\n";
351                 }
352         } else {
353                 cerr << group << ':' << action << " not an action\n";
354         }
355 }