mega commit to remove gtk_object cruft, and much other stuff
[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                 cerr << "ardour action xml file not found" << endl;
59         }
60         
61         RefPtr<ActionGroup> grp = ActionGroup::create ("misc");
62         register_action (grp, "null", "relax");
63         
64         ui_manager->insert_action_group (grp);
65 }
66
67 RefPtr<Action>
68 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
69 {
70         RefPtr<Action> act = register_action (group, name, label, sl);
71         AccelMap::add_entry (act->get_accel_path(), key, mods);
72
73         return act;
74 }
75
76 RefPtr<Action>
77 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl)
78 {
79         RefPtr<Action> act = register_action (group, name, label);
80         group->add (act, sl);
81
82         return act;
83 }
84
85 RefPtr<Action>
86 ActionManager::register_action (RefPtr<ActionGroup> group, string name, string label)
87 {
88         RefPtr<Action> act;
89
90         act = Action::create (name, label);
91         group->add (act);
92
93         return act;
94 }
95
96
97 RefPtr<Action>
98 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
99 {
100         RefPtr<Action> act = register_radio_action (group, rgroup, name, label, sl);
101         AccelMap::add_entry (act->get_accel_path(), key, mods);
102
103         return act;
104 }
105
106 RefPtr<Action>
107 ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group rgroup, string name, string label, slot<void> sl)
108 {
109         RefPtr<Action> act;
110
111         act = RadioAction::create (rgroup, name, label);
112         group->add (act, sl);
113
114         return act;
115 }
116
117
118 RefPtr<Action>
119 ActionManager::register_toggle_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl, guint key, Gdk::ModifierType mods)
120 {
121         RefPtr<Action> act = register_toggle_action (group,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_toggle_action (RefPtr<ActionGroup> group, string name, string label, slot<void> sl)
129 {
130         RefPtr<Action> act;
131
132         act = ToggleAction::create (name, label);
133         group->add (act, sl);
134
135         return act;
136 }
137
138 bool 
139 ActionManager::lookup_entry (const ustring accel_path, Gtk::AccelKey& key)
140 {
141         GtkAccelKey gkey;
142         bool known = gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
143         
144         if (known) {
145                 key = AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
146         } else {
147                 key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
148         }
149
150         return known;
151 }
152
153 void
154 ActionManager::get_all_actions (vector<string>& names, vector<string>& paths, vector<string>& keys, vector<AccelKey>& bindings)
155 {
156         ListHandle<RefPtr<ActionGroup> > uim_groups = ui_manager->get_action_groups ();
157         
158         for (ListHandle<RefPtr<ActionGroup> >::iterator g = uim_groups.begin(); g != uim_groups.end(); ++g) {
159                 
160                 ListHandle<RefPtr<Action> > group_actions = (*g)->get_actions();
161                 
162                 for (ListHandle<RefPtr<Action> >::iterator a = group_actions.begin(); a != group_actions.end(); ++a) {
163                         
164                         ustring accel_path;
165                         
166                         accel_path = (*a)->get_accel_path();
167                         
168                         names.push_back ((*a)->get_name());
169                         paths.push_back (accel_path);
170                         
171                         AccelKey key;
172                         bool known = lookup_entry (accel_path, key);
173                         
174                         if (known) {
175                                 keys.push_back (ui_manager->get_accel_group()->name (key.get_key(), Gdk::ModifierType (key.get_mod())));
176                         } else {
177                                 keys.push_back (unbound_string);
178                         }
179                         
180                         bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
181                 }
182         }
183 }
184
185 void
186 ActionManager::add_action_group (RefPtr<ActionGroup> grp)
187 {
188         ui_manager->insert_action_group (grp);
189 }
190
191 Widget*
192 ActionManager::get_widget (ustring name)
193 {
194         return ui_manager->get_widget (name);
195 }
196
197 RefPtr<Action>
198 ActionManager::get_action (ustring name)
199 {
200         return ui_manager->get_action (name);
201 }
202
203 void 
204 ActionManager::set_sensitive (vector<RefPtr<Action> >& actions, bool state)
205 {
206         for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
207                 (*i)->set_sensitive (state);
208         }
209 }