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