2009-12-04 15:52:04 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2005 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <list>
|
2014-06-24 09:56:08 -04:00
|
|
|
#include <stack>
|
2010-05-25 12:45:21 -04:00
|
|
|
#include <stdint.h>
|
2009-12-04 15:52:04 -05:00
|
|
|
|
2014-06-24 09:56:08 -04:00
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
#include <gtk/gtkaccelmap.h>
|
|
|
|
#include <gtk/gtkuimanager.h>
|
|
|
|
#include <gtk/gtkactiongroup.h>
|
|
|
|
|
2013-08-26 12:28:03 -04:00
|
|
|
#include <gtkmm.h>
|
2009-12-04 15:52:04 -05:00
|
|
|
#include <gtkmm/accelmap.h>
|
|
|
|
#include <gtkmm/uimanager.h>
|
|
|
|
|
2014-07-04 07:48:41 -04:00
|
|
|
#include <glibmm/miscutils.h>
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
|
|
|
|
#include "gtkmm2ext/actions.h"
|
2010-05-25 12:45:21 -04:00
|
|
|
#include "gtkmm2ext/utils.h"
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Glib;
|
|
|
|
using namespace sigc;
|
|
|
|
using namespace PBD;
|
2010-05-25 12:45:21 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
RefPtr<UIManager> ActionManager::ui_manager;
|
|
|
|
string ActionManager::unbound_string = "--";
|
|
|
|
|
|
|
|
|
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = Action::create (name, label);
|
|
|
|
group->add (act, sl);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_action (RefPtr<ActionGroup> group, const char * name, const char * label)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = Action::create (name, label);
|
|
|
|
group->add (act);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_radio_action (RefPtr<ActionGroup> group, RadioAction::Group& rgroup, const char * name, const char * label, slot<void> sl)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = RadioAction::create (rgroup, name, label);
|
|
|
|
group->add (act, sl);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
2011-02-20 12:29:52 -05:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_radio_action (
|
|
|
|
RefPtr<ActionGroup> group, RadioAction::Group& rgroup, string const & name, string const & label, string const & tooltip, slot<void> sl
|
|
|
|
)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = RadioAction::create (rgroup, name, label, tooltip);
|
|
|
|
group->add (act, sl);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_toggle_action (RefPtr<ActionGroup> group, const char * name, const char * label, slot<void> sl)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = ToggleAction::create (name, label);
|
|
|
|
group->add (act, sl);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
2011-02-20 12:29:52 -05:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::register_toggle_action (RefPtr<ActionGroup> group, string const & name, string const & label, string const & tooltip, slot<void> sl)
|
|
|
|
{
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
act = ToggleAction::create (name, label, tooltip);
|
|
|
|
group->add (act, sl);
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
bool
|
|
|
|
ActionManager::lookup_entry (const ustring accel_path, Gtk::AccelKey& key)
|
|
|
|
{
|
|
|
|
GtkAccelKey gkey;
|
|
|
|
bool known = gtk_accel_map_lookup_entry (accel_path.c_str(), &gkey);
|
|
|
|
|
|
|
|
if (known) {
|
|
|
|
key = AccelKey (gkey.accel_key, Gdk::ModifierType (gkey.accel_mods));
|
|
|
|
} else {
|
|
|
|
key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0));
|
|
|
|
}
|
|
|
|
|
|
|
|
return known;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SortActionsByLabel {
|
2015-05-06 11:51:04 -04:00
|
|
|
bool operator() (Glib::RefPtr<Gtk::Action> a, Glib::RefPtr<Gtk::Action> b) {
|
|
|
|
ustring astr = a->get_accel_path();
|
|
|
|
ustring bstr = b->get_accel_path();
|
|
|
|
return astr < bstr;
|
|
|
|
}
|
2009-12-04 15:52:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2011-02-20 12:29:52 -05:00
|
|
|
ActionManager::get_all_actions (vector<string>& groups, vector<string>& names, vector<string>& tooltips, vector<AccelKey>& bindings)
|
2009-12-04 15:52:04 -05:00
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
|
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
GList* acts;
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
|
|
|
|
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
|
|
|
|
|
|
|
/* first pass: collect them all */
|
|
|
|
|
|
|
|
typedef std::list<Glib::RefPtr<Gtk::Action> > action_list;
|
|
|
|
action_list the_acts;
|
|
|
|
|
|
|
|
for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
|
|
|
|
GtkAction* action = (GtkAction*) acts->data;
|
|
|
|
the_acts.push_back (Glib::wrap (action, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now sort by label */
|
|
|
|
|
|
|
|
SortActionsByLabel cmp;
|
|
|
|
the_acts.sort (cmp);
|
|
|
|
|
|
|
|
for (action_list::iterator a = the_acts.begin(); a != the_acts.end(); ++a) {
|
|
|
|
|
|
|
|
string accel_path = (*a)->get_accel_path ();
|
|
|
|
|
|
|
|
groups.push_back (gtk_action_group_get_name(group));
|
|
|
|
names.push_back (accel_path.substr (accel_path.find_last_of ('/') + 1));
|
2011-02-20 12:29:52 -05:00
|
|
|
tooltips.push_back ((*a)->get_tooltip ());
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
AccelKey key;
|
|
|
|
lookup_entry (accel_path, key);
|
|
|
|
bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-02-20 12:29:52 -05:00
|
|
|
ActionManager::get_all_actions (vector<string>& names, vector<string>& paths, vector<string>& tooltips, vector<string>& keys, vector<AccelKey>& bindings)
|
2009-12-04 15:52:04 -05:00
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
|
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
GList* acts;
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
|
|
|
|
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
|
|
|
|
|
|
|
/* first pass: collect them all */
|
|
|
|
|
|
|
|
typedef std::list<Glib::RefPtr<Gtk::Action> > action_list;
|
|
|
|
action_list the_acts;
|
|
|
|
|
|
|
|
for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
|
|
|
|
GtkAction* action = (GtkAction*) acts->data;
|
|
|
|
the_acts.push_back (Glib::wrap (action, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now sort by label */
|
|
|
|
|
|
|
|
SortActionsByLabel cmp;
|
|
|
|
the_acts.sort (cmp);
|
|
|
|
|
|
|
|
for (action_list::iterator a = the_acts.begin(); a != the_acts.end(); ++a) {
|
|
|
|
|
2011-02-20 12:29:52 -05:00
|
|
|
ustring const label = (*a)->property_label ();
|
|
|
|
string const accel_path = (*a)->get_accel_path ();
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
names.push_back (label);
|
|
|
|
paths.push_back (accel_path);
|
2011-02-20 12:29:52 -05:00
|
|
|
tooltips.push_back ((*a)->get_tooltip ());
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
AccelKey key;
|
|
|
|
keys.push_back (get_key_representation (accel_path, key));
|
|
|
|
bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-04 07:48:41 -04:00
|
|
|
void
|
|
|
|
ActionManager::enable_accelerators ()
|
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
|
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
GList* acts;
|
|
|
|
string ui_string = "<ui>";
|
|
|
|
|
|
|
|
/* get all actions, build a string describing them all as <accelerator
|
|
|
|
* action="name"/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
|
|
|
|
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
|
|
|
|
|
|
|
for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
|
|
|
|
ui_string += "<accelerator action=\"";
|
|
|
|
|
|
|
|
/* OK, this is pretty stupid ... there is the full
|
|
|
|
* accel path returned by gtk_action_get_accel_path ()
|
|
|
|
* but of course the UIManager doesn't use that, but
|
|
|
|
* just a name, which is the last component of the
|
|
|
|
* path. What a totally ridiculous design.
|
|
|
|
*/
|
|
|
|
|
|
|
|
string fullpath = gtk_action_get_accel_path ((GtkAction*) acts->data);
|
|
|
|
|
|
|
|
ui_string += Glib::path_get_basename (fullpath);
|
|
|
|
ui_string += "\"/>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_string += "</ui>";
|
|
|
|
|
|
|
|
/* and load it */
|
|
|
|
|
|
|
|
ui_manager->add_ui_from_string (ui_string);
|
|
|
|
}
|
|
|
|
|
2014-06-24 09:56:08 -04:00
|
|
|
struct ActionState {
|
|
|
|
GtkAction* action;
|
|
|
|
bool sensitive;
|
|
|
|
ActionState (GtkAction* a, bool s) : action (a), sensitive (s) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<ActionState> ActionStates;
|
|
|
|
|
2015-05-06 11:51:04 -04:00
|
|
|
static ActionStates action_states_to_restore;
|
|
|
|
static bool actions_disabled = false;
|
2014-06-24 09:56:08 -04:00
|
|
|
|
2015-05-06 11:51:04 -04:00
|
|
|
void
|
|
|
|
ActionManager::save_action_states ()
|
2014-06-24 09:56:08 -04:00
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ActionManager::ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
GList* acts;
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
2015-05-06 11:51:04 -04:00
|
|
|
|
2014-06-24 09:56:08 -04:00
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
2015-05-06 11:51:04 -04:00
|
|
|
|
2014-06-24 09:56:08 -04:00
|
|
|
for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
|
|
|
|
GtkAction* action = (GtkAction*) acts->data;
|
2015-05-06 11:51:04 -04:00
|
|
|
action_states_to_restore.push_back (ActionState (action, gtk_action_get_sensitive (action)));
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-06 11:51:04 -04:00
|
|
|
ActionManager::enable_active_actions ()
|
2014-06-24 09:56:08 -04:00
|
|
|
{
|
2015-05-06 11:51:04 -04:00
|
|
|
if (!actions_disabled) {
|
|
|
|
return ;
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
|
|
|
|
2015-05-06 11:51:04 -04:00
|
|
|
for (ActionStates::iterator i = action_states_to_restore.begin(); i != action_states_to_restore.end(); ++i) {
|
|
|
|
if ((*i).action && (*i).sensitive) {
|
|
|
|
gtk_action_set_sensitive ((*i).action, true);
|
|
|
|
}
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
2015-05-06 11:51:04 -04:00
|
|
|
|
|
|
|
action_states_to_restore.clear ();
|
|
|
|
actions_disabled = false;
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-06 11:51:04 -04:00
|
|
|
ActionManager::disable_active_actions ()
|
2014-06-24 09:56:08 -04:00
|
|
|
{
|
2015-05-06 11:51:04 -04:00
|
|
|
if (actions_disabled == true ) {
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
// save all action's states to action_states_to_restore
|
|
|
|
save_action_states ();
|
2014-06-24 09:56:08 -04:00
|
|
|
|
2015-05-06 11:51:04 -04:00
|
|
|
// set all action's states disabled
|
|
|
|
for (ActionStates::iterator i = action_states_to_restore.begin(); i != action_states_to_restore.end(); ++i) {
|
|
|
|
if ((*i).sensitive) {
|
|
|
|
gtk_action_set_sensitive ((*i).action, false);
|
|
|
|
}
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
2015-05-06 11:51:04 -04:00
|
|
|
actions_disabled = true;
|
2014-06-24 09:56:08 -04:00
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
void
|
|
|
|
ActionManager::add_action_group (RefPtr<ActionGroup> grp)
|
|
|
|
{
|
|
|
|
ui_manager->insert_action_group (grp);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget*
|
|
|
|
ActionManager::get_widget (const char * name)
|
|
|
|
{
|
|
|
|
return ui_manager->get_widget (name);
|
|
|
|
}
|
|
|
|
|
2012-04-17 12:07:11 -04:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::get_action (const char* path)
|
|
|
|
{
|
2012-04-17 16:41:31 -04:00
|
|
|
if (!path) {
|
|
|
|
return RefPtr<Action>();
|
|
|
|
}
|
|
|
|
|
2012-04-17 17:36:48 -04:00
|
|
|
/* Skip <Actions>/ in path */
|
|
|
|
|
|
|
|
int len = strlen (path);
|
|
|
|
|
|
|
|
if (len < 3) {
|
|
|
|
/* shortest possible path: "a/b" */
|
|
|
|
return RefPtr<Action>();
|
2012-04-17 16:41:31 -04:00
|
|
|
}
|
|
|
|
|
2012-04-17 17:36:48 -04:00
|
|
|
if (len > 10 && !strncmp (path, "<Actions>/", 10 )) {
|
|
|
|
path = path+10;
|
|
|
|
} else if (path[0] == '/') {
|
|
|
|
path++;
|
|
|
|
}
|
|
|
|
|
2013-08-26 12:28:03 -04:00
|
|
|
vector<char> copy(len+1);
|
|
|
|
strcpy (©[0], path);
|
|
|
|
char* slash = strchr (©[0], '/');
|
2012-04-17 12:07:11 -04:00
|
|
|
if (!slash) {
|
|
|
|
return RefPtr<Action> ();
|
|
|
|
}
|
|
|
|
*slash = '\0';
|
2012-04-17 17:36:48 -04:00
|
|
|
|
2013-08-26 12:28:03 -04:00
|
|
|
return get_action (©[0], ++slash);
|
2012-04-17 12:07:11 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::get_action (const char* group_name, const char* action_name)
|
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
|
2010-12-06 08:59:59 -05:00
|
|
|
if (ui_manager == 0) {
|
|
|
|
return RefPtr<Action> ();
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
RefPtr<Action> act;
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
|
|
|
|
|
|
|
GtkActionGroup* _ag = (GtkActionGroup*) node->data;
|
|
|
|
|
|
|
|
if (strcmp (group_name, gtk_action_group_get_name (_ag)) == 0) {
|
|
|
|
|
|
|
|
GtkAction* _act;
|
|
|
|
|
|
|
|
if ((_act = gtk_action_group_get_action (_ag, action_name)) != 0) {
|
|
|
|
act = Glib::wrap (_act, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
2012-04-17 16:41:31 -04:00
|
|
|
RefPtr<Action>
|
|
|
|
ActionManager::get_action_from_name (const char* name)
|
|
|
|
{
|
|
|
|
/* the C++ API for functions used here appears to be broken in
|
|
|
|
gtkmm2.6, so we fall back to the C level.
|
|
|
|
*/
|
|
|
|
|
|
|
|
GList* list = gtk_ui_manager_get_action_groups (ui_manager->gobj());
|
|
|
|
GList* node;
|
|
|
|
GList* acts;
|
|
|
|
|
|
|
|
for (node = list; node; node = g_list_next (node)) {
|
|
|
|
|
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
|
|
|
|
|
|
|
for (acts = gtk_action_group_list_actions (group); acts; acts = g_list_next (acts)) {
|
|
|
|
GtkAction* action = (GtkAction*) acts->data;
|
|
|
|
if (!strcmp (gtk_action_get_name (action), name)) {
|
|
|
|
return Glib::wrap (action, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return RefPtr<Action>();
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
void
|
|
|
|
ActionManager::set_sensitive (vector<RefPtr<Action> >& actions, bool state)
|
|
|
|
{
|
2015-05-06 11:51:04 -04:00
|
|
|
// if actions weren't disabled
|
|
|
|
if (!actions_disabled) {
|
|
|
|
for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
|
|
|
|
(*i)->set_sensitive (state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// actions were disabled
|
|
|
|
// so we should just set necessary action's states in action_states_to_restore
|
|
|
|
for (vector<RefPtr<Action> >::iterator i = actions.begin(); i != actions.end(); ++i) {
|
|
|
|
// go through action_states_to_restore and set state of actions
|
|
|
|
for (ActionStates::iterator j = action_states_to_restore.begin(); j != action_states_to_restore.end(); ++j) {
|
|
|
|
// all actions should have their individual name, so we can use it for comparison
|
|
|
|
if (gtk_action_get_name ((*j).action) == (*i)->get_name ()) {
|
|
|
|
(*j).sensitive = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-12-04 15:52:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-07 17:51:25 -04:00
|
|
|
void
|
|
|
|
ActionManager::check_toggleaction (string n)
|
|
|
|
{
|
|
|
|
set_toggleaction_state (n, true);
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
void
|
2010-08-24 09:28:27 -04:00
|
|
|
ActionManager::uncheck_toggleaction (string n)
|
2012-06-07 17:51:25 -04:00
|
|
|
{
|
|
|
|
set_toggleaction_state (n, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ActionManager::set_toggleaction_state (string n, bool s)
|
2009-12-04 15:52:04 -05:00
|
|
|
{
|
2010-08-24 09:28:27 -04:00
|
|
|
char const * name = n.c_str ();
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
const char *last_slash = strrchr (name, '/');
|
|
|
|
|
|
|
|
if (last_slash == 0) {
|
|
|
|
fatal << string_compose ("programmer error: %1 %2", "illegal toggle action name", name) << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2009-12-04 15:52:04 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 10 = strlen ("<Actions>/") */
|
|
|
|
size_t len = last_slash - (name + 10);
|
|
|
|
|
|
|
|
char* group_name = new char[len+1];
|
|
|
|
memcpy (group_name, name + 10, len);
|
|
|
|
group_name[len] = '\0';
|
|
|
|
|
|
|
|
const char* action_name = last_slash + 1;
|
|
|
|
|
2015-05-06 11:51:04 -04:00
|
|
|
RefPtr<Action> act = get_action (group_name, action_name);
|
2009-12-04 15:52:04 -05:00
|
|
|
if (act) {
|
2015-05-06 11:51:04 -04:00
|
|
|
RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
tact->set_active (s);
|
2009-12-04 15:52:04 -05:00
|
|
|
} else {
|
|
|
|
error << string_compose (_("Unknown action name: %1"), name) << endmsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete [] group_name;
|
|
|
|
}
|
2010-05-25 12:45:21 -04:00
|
|
|
|
|
|
|
string
|
|
|
|
ActionManager::get_key_representation (const string& accel_path, AccelKey& key)
|
|
|
|
{
|
|
|
|
bool known = lookup_entry (accel_path, key);
|
|
|
|
|
|
|
|
if (known) {
|
|
|
|
uint32_t k = possibly_translate_legal_accelerator_to_real_key (key.get_key());
|
|
|
|
key = AccelKey (k, Gdk::ModifierType (key.get_mod()));
|
2011-12-04 17:01:59 -05:00
|
|
|
return ui_manager->get_accel_group()->get_label (key.get_key(), Gdk::ModifierType (key.get_mod()));
|
2010-05-25 12:45:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return unbound_string;
|
|
|
|
}
|
2012-01-24 11:19:38 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ActionManager::do_action (const char* group, const char*action)
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (group, action);
|
|
|
|
if (act) {
|
|
|
|
act->activate ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-27 14:05:03 -05:00
|
|
|
void
|
|
|
|
ActionManager::set_toggle_action (const char* group, const char*action, bool yn)
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (group, action);
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
|
|
|
|
if (tact) {
|
|
|
|
tact->set_active (yn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|