2 Copyright (C) 2005 Paul Davis
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.
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.
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.
25 #include <gtk/gtkaccelmap.h>
26 #include <gtk/gtkuimanager.h>
27 #include <gtk/gtkactiongroup.h>
29 #include <gtkmm/accelmap.h>
30 #include <gtkmm/uimanager.h>
32 #include <pbd/error.h>
34 #include <ardour/ardour.h>
45 using namespace ARDOUR
;
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
;
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
;
64 RefPtr
<UIManager
> ActionManager::ui_manager
;
65 string
ActionManager::unbound_string
= "--";
68 ActionManager::init ()
70 ui_manager
= UIManager::create ();
72 std::string ui_file
= ARDOUR::find_config_file (ARDOUR_COMMAND_LINE::menus_file
);
77 ui_manager
->add_ui_from_file (ui_file
);
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
;
83 error
<< _("Ardour menu definition file not found") << endmsg
;
87 error
<< _("ardour will not work without a valid ardour.menus file") << endmsg
;
93 ActionManager::register_action (RefPtr
<ActionGroup
> group
, const char * name
, const char * label
, slot
<void> sl
)
97 act
= Action::create (name
, label
);
104 ActionManager::register_action (RefPtr
<ActionGroup
> group
, const char * name
, const char * label
)
108 act
= Action::create (name
, label
);
116 ActionManager::register_radio_action (RefPtr
<ActionGroup
> group
, RadioAction::Group
& rgroup
, const char * name
, const char * label
, slot
<void> sl
)
120 act
= RadioAction::create (rgroup
, name
, label
);
121 group
->add (act
, sl
);
127 ActionManager::register_toggle_action (RefPtr
<ActionGroup
> group
, const char * name
, const char * label
, slot
<void> sl
)
131 act
= ToggleAction::create (name
, label
);
132 group
->add (act
, sl
);
138 ActionManager::lookup_entry (const ustring accel_path
, Gtk::AccelKey
& key
)
141 bool known
= gtk_accel_map_lookup_entry (accel_path
.c_str(), &gkey
);
144 key
= AccelKey (gkey
.accel_key
, Gdk::ModifierType (gkey
.accel_mods
));
146 key
= AccelKey (GDK_VoidSymbol
, Gdk::ModifierType (0));
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();
161 ActionManager::get_all_actions (vector
<string
>& groups
, vector
<string
>& names
, vector
<AccelKey
>& bindings
)
163 /* the C++ API for functions used here appears to be broken in
164 gtkmm2.6, so we fall back to the C level.
167 GList
* list
= gtk_ui_manager_get_action_groups (ui_manager
->gobj());
171 for (node
= list
; node
; node
= g_list_next (node
)) {
173 GtkActionGroup
* group
= (GtkActionGroup
*) node
->data
;
175 /* first pass: collect them all */
177 typedef std::list
<Glib::RefPtr
<Gtk::Action
> > action_list
;
178 action_list the_acts
;
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));
185 /* now sort by label */
187 SortActionsByLabel cmp
;
190 for (action_list::iterator a
= the_acts
.begin(); a
!= the_acts
.end(); ++a
) {
192 string accel_path
= (*a
)->get_accel_path ();
194 groups
.push_back (gtk_action_group_get_name(group
));
195 names
.push_back (accel_path
.substr (accel_path
.find_last_of ('/') + 1));
198 lookup_entry (accel_path
, key
);
199 bindings
.push_back (AccelKey (key
.get_key(), Gdk::ModifierType (key
.get_mod())));
205 ActionManager::get_all_actions (vector
<string
>& names
, vector
<string
>& paths
, vector
<string
>& keys
, vector
<AccelKey
>& bindings
)
207 /* the C++ API for functions used here appears to be broken in
208 gtkmm2.6, so we fall back to the C level.
211 GList
* list
= gtk_ui_manager_get_action_groups (ui_manager
->gobj());
215 for (node
= list
; node
; node
= g_list_next (node
)) {
217 GtkActionGroup
* group
= (GtkActionGroup
*) node
->data
;
219 /* first pass: collect them all */
221 typedef std::list
<Glib::RefPtr
<Gtk::Action
> > action_list
;
222 action_list the_acts
;
224 for (acts
= gtk_action_group_list_actions (group
); acts
; acts
= g_list_next (acts
)) {
225 GtkAction
* action
= (GtkAction
*) acts
->data
;
226 the_acts
.push_back (Glib::wrap (action
, true));
229 /* now sort by label */
231 SortActionsByLabel cmp
;
234 for (action_list::iterator a
= the_acts
.begin(); a
!= the_acts
.end(); ++a
) {
236 string accel_path
= (*a
)->get_accel_path ();
237 ustring label
= (*a
)->property_label();
239 names
.push_back (label
);
240 paths
.push_back (accel_path
);
243 bool known
= lookup_entry (accel_path
, key
);
246 keys
.push_back (ui_manager
->get_accel_group()->name (key
.get_key(), Gdk::ModifierType (key
.get_mod())));
248 keys
.push_back (unbound_string
);
251 bindings
.push_back (AccelKey (key
.get_key(), Gdk::ModifierType (key
.get_mod())));
258 ActionManager::add_action_group (RefPtr
<ActionGroup
> grp
)
260 ui_manager
->insert_action_group (grp
);
264 ActionManager::get_widget (const char * name
)
266 return ui_manager
->get_widget (name
);
270 ActionManager::get_action (const char* path
)
275 if ((_act
= gtk_ui_manager_get_action (ui_manager
->gobj(), path
)) != 0) {
276 return Glib::wrap (_act
, true);
283 ActionManager::get_action (const char* group_name
, const char* action_name
)
285 /* the C++ API for functions used here appears to be broken in
286 gtkmm2.6, so we fall back to the C level.
289 GList
* list
= gtk_ui_manager_get_action_groups (ui_manager
->gobj());
293 for (node
= list
; node
; node
= g_list_next (node
)) {
295 GtkActionGroup
* _ag
= (GtkActionGroup
*) node
->data
;
297 if (strcmp (group_name
, gtk_action_group_get_name (_ag
)) == 0) {
301 if ((_act
= gtk_action_group_get_action (_ag
, action_name
)) != 0) {
302 act
= Glib::wrap (_act
, true);
312 ActionManager::set_sensitive (vector
<RefPtr
<Action
> >& actions
, bool state
)
314 for (vector
<RefPtr
<Action
> >::iterator i
= actions
.begin(); i
!= actions
.end(); ++i
) {
315 (*i
)->set_sensitive (state
);
320 ActionManager::uncheck_toggleaction (const char * name
)
322 char *last_slash
= strrchr (name
, '/');
324 if (last_slash
== 0) {
325 fatal
<< string_compose (_("programmer error: %1 %2"), X_("illegal toggle action name"), name
) << endmsg
;
330 /* 10 = strlen ("<Actions>/") */
331 size_t len
= last_slash
- (name
+ 10);
333 char* group_name
= new char[len
+1];
334 memcpy (group_name
, name
+ 10, len
);
335 group_name
[len
] = '\0';
337 char* action_name
= last_slash
+ 1;
339 RefPtr
<Action
> act
= get_action (group_name
, action_name
);
341 RefPtr
<ToggleAction
> tact
= RefPtr
<ToggleAction
>::cast_dynamic(act
);
342 tact
->set_active (false);
344 error
<< string_compose (_("Unknown action name: %1"), name
) << endmsg
;
347 delete [] group_name
;
350 /** Examine the state of a Configuration setting and a toggle action, and toggle the Configuration
351 * setting if its state doesn't match the toggle action.
352 * @param group Action group.
353 * @param action Action name.
354 * @param Method to set the state of the Configuration setting.
355 * @param Method to get the state of the Configuration setting.
358 ActionManager::toggle_config_state (const char* group
, const char* action
, bool (Configuration::*set
)(bool), bool (Configuration::*get
)(void) const)
360 Glib::RefPtr
<Action
> act
= ActionManager::get_action (group
, action
);
362 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
365 bool x
= (Config
->*get
)();
367 if (x
!= tact
->get_active()) {
375 ActionManager::toggle_config_state (const char* group
, const char* action
, sigc::slot
<void> theSlot
)
377 Glib::RefPtr
<Action
> act
= ActionManager::get_action (group
, action
);
379 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
380 if (tact
->get_active()) {
387 /** Set the state of a ToggleAction using a particular Configuration get() method
388 * @param group Action group.
389 * @param action Action name.
390 * @param get Method to obtain the state that the ToggleAction should have.
393 ActionManager::map_some_state (const char* group
, const char* action
, bool (Configuration::*get
)() const)
395 Glib::RefPtr
<Action
> act
= ActionManager::get_action (group
, action
);
397 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
401 bool x
= (Config
->*get
)();
403 if (tact
->get_active() != x
) {
404 tact
->set_active (x
);
407 cerr
<< group
<< ':' << action
<< " is not a toggle\n";
410 cerr
<< group
<< ':' << action
<< " not an action\n";