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
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
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 = "--";
|
|
|
|
|
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-10-04 14:51:05 -04:00
|
|
|
|
2014-06-24 09:56:08 -04:00
|
|
|
GtkActionGroup* group = (GtkActionGroup*) node->data;
|
2015-10-04 14:51:05 -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 ();
|
2015-10-05 10:17:49 -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
|
|
|
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);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-08-04 03:48:47 -04:00
|
|
|
if (! ui_manager) {
|
2010-12-06 08:59:59 -05:00
|
|
|
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;
|
|
|
|
}
|
2016-06-07 19:25:11 -04:00
|
|
|
|
|
|
|
break;
|
2009-12-04 15:52:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return act;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2017-08-09 07:33:22 -04:00
|
|
|
ActionManager::check_toggleaction (const string& n)
|
2012-06-07 17:51:25 -04:00
|
|
|
{
|
|
|
|
set_toggleaction_state (n, true);
|
|
|
|
}
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
void
|
2017-08-09 07:33:22 -04:00
|
|
|
ActionManager::uncheck_toggleaction (const string& n)
|
2012-06-07 17:51:25 -04:00
|
|
|
{
|
|
|
|
set_toggleaction_state (n, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-08-09 07:33:22 -04:00
|
|
|
ActionManager::set_toggleaction_state (const 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 ();
|
2015-10-05 10:17:49 -04:00
|
|
|
|
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;
|
2017-08-09 07:33:22 -04:00
|
|
|
if (!set_toggleaction_state (group_name, action_name, s)) {
|
|
|
|
error << string_compose (_("Unknown action name: %1/%2"), group_name, action_name) << endmsg;
|
|
|
|
}
|
2009-12-04 15:52:04 -05:00
|
|
|
|
2017-08-09 07:33:22 -04:00
|
|
|
delete [] group_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ActionManager::set_toggleaction_state (const char* group_name, const char* action_name, bool s)
|
|
|
|
{
|
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);
|
2017-08-09 07:33:22 -04:00
|
|
|
if (tact) {
|
|
|
|
tact->set_active (s);
|
|
|
|
return true;
|
|
|
|
}
|
2009-12-04 15:52:04 -05:00
|
|
|
}
|
2017-08-09 07:33:22 -04:00
|
|
|
return false;
|
2009-12-04 15:52:04 -05:00
|
|
|
}
|
2010-05-25 12:45:21 -04:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|