X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Factions.cc;h=49ac38d405fd1f23a731d291c7e0046c0aed9b38;hb=7b3e1a1061ea12e6ba81441174e876915dbda2be;hp=c455b30ed03e93ba0a30c268c138e5c425ef6d54;hpb=1424e6ca6fe1315d3c0d87c7e34646eb09ead008;p=ardour.git diff --git a/gtk2_ardour/actions.cc b/gtk2_ardour/actions.cc index c455b30ed0..49ac38d405 100644 --- a/gtk2_ardour/actions.cc +++ b/gtk2_ardour/actions.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2005 Paul Davis + 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 @@ -15,157 +15,174 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ -#include +#include +#include +#include + #include +#include +#include + #include #include +#include "pbd/error.h" +#include "pbd/file_utils.h" + +#include "ardour/ardour.h" +#include "ardour/filesystem_paths.h" +#include "ardour/rc_configuration.h" + +#include "gtkmm2ext/actions.h" + +#include "utils.h" #include "actions.h" +#include "i18n.h" using namespace std; using namespace Gtk; using namespace Glib; -using namespace sigc; - -vector > ActionManager::session_sensitive_actions; -vector > ActionManager::region_list_selection_sensitive_actions; -vector > ActionManager::region_selection_sensitive_actions; -vector > ActionManager::track_selection_sensitive_actions; -vector > ActionManager::plugin_selection_sensitive_actions; -vector > ActionManager::range_sensitive_actions; -vector > ActionManager::jack_sensitive_actions; +using namespace PBD; +using namespace ARDOUR; + +vector > ActionManager::session_sensitive_actions; +vector > ActionManager::write_sensitive_actions; +vector > ActionManager::region_list_selection_sensitive_actions; +vector > ActionManager::plugin_selection_sensitive_actions; +vector > ActionManager::region_selection_sensitive_actions; +vector > ActionManager::track_selection_sensitive_actions; +vector > ActionManager::point_selection_sensitive_actions; +vector > ActionManager::time_selection_sensitive_actions; +vector > ActionManager::line_selection_sensitive_actions; +vector > ActionManager::playlist_selection_sensitive_actions; +vector > ActionManager::mouse_edit_point_requires_canvas_actions; + +vector > ActionManager::range_sensitive_actions; +vector > ActionManager::jack_sensitive_actions; +vector > ActionManager::jack_opposite_sensitive_actions; +vector > ActionManager::transport_sensitive_actions; +vector > ActionManager::edit_point_in_region_sensitive_actions; -namespace ActionManager { - -static vector > ui_managers; void -register_ui_manager (Glib::RefPtr uim) +ActionManager::init () { - ui_managers.push_back (uim); -} + ui_manager = UIManager::create (); -RefPtr -register_action (RefPtr group, string name, string label, slot sl, guint key, Gdk::ModifierType mods) -{ - RefPtr act = register_action (group, name, label, sl); - AccelMap::add_entry (act->get_accel_path(), key, mods); - - return act; -} + sys::path ui_file; -RefPtr -register_action (RefPtr group, string name, string label, slot sl) -{ - RefPtr act = register_action (group, name, label); - group->add (act, sl); + SearchPath spath = ardour_search_path() + user_config_directory() + system_config_search_path(); - return act; -} + find_file_in_search_path (spath, "ardour.menus", ui_file); -RefPtr -register_action (RefPtr group, string name, string label) -{ - RefPtr act; + bool loaded = false; - act = Action::create (name, label); - group->add (act); + try { + ui_manager->add_ui_from_file (ui_file.to_string()); + info << string_compose (_("Loading menus from %1"), ui_file.to_string()) << endmsg; + loaded = true; + } catch (Glib::MarkupError& err) { + error << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endmsg; + cerr << string_compose (_("badly formatted UI definition file: %1"), err.what()) << endl; + } catch (...) { + error << string_compose (_("%1 menu definition file not found"), PROGRAM_NAME) << endmsg; + } - return act; + if (!loaded) { + cerr << string_compose (_("%1 will not work without a valid ardour.menus file"), PROGRAM_NAME) << endl; + error << string_compose (_("%1 will not work without a valid ardour.menus file"), PROGRAM_NAME) << endmsg; + exit(1); + } } - -RefPtr -register_radio_action (RefPtr group, RadioAction::Group rgroup, string name, string label, slot sl, guint key, Gdk::ModifierType mods) +/** Examine the state of a Configuration setting and a toggle action, and toggle the Configuration + * setting if its state doesn't match the toggle action. + * @param group Action group. + * @param action Action name. + * @param Method to set the state of the Configuration setting. + * @param Method to get the state of the Configuration setting. + */ +void +ActionManager::toggle_config_state (const char* group, const char* action, bool (RCConfiguration::*set)(bool), bool (RCConfiguration::*get)(void) const) { - RefPtr act = register_radio_action (group, rgroup, name, label, sl); - AccelMap::add_entry (act->get_accel_path(), key, mods); + Glib::RefPtr act = ActionManager::get_action (group, action); - return act; -} + if (act) { + Glib::RefPtr tact = Glib::RefPtr::cast_dynamic(act); -RefPtr -register_radio_action (RefPtr group, RadioAction::Group rgroup, string name, string label, slot sl) -{ - RefPtr act; + if (tact) { + bool x = (Config->*get)(); - act = RadioAction::create (rgroup, name, label); - group->add (act, sl); - - return act; + if (x != tact->get_active()) { + (Config->*set) (!x); + } + } + } } - -RefPtr -register_toggle_action (RefPtr group, string name, string label, slot sl, guint key, Gdk::ModifierType mods) +void +ActionManager::toggle_config_state_foo (const char* group, const char* action, sigc::slot set, sigc::slot get) { - RefPtr act = register_toggle_action (group,name, label, sl); - AccelMap::add_entry (act->get_accel_path(), key, mods); + Glib::RefPtr act = ActionManager::get_action (group, action); + + if (act) { + Glib::RefPtr tact = Glib::RefPtr::cast_dynamic(act); + + if (tact) { + bool const x = get (); - return act; + if (x != tact->get_active ()) { + set (!x); + } + } + } } -RefPtr -register_toggle_action (RefPtr group, string name, string label, slot sl) + +/** Set the state of a ToggleAction using a particular Configuration get() method + * @param group Action group. + * @param action Action name. + * @param get Method to obtain the state that the ToggleAction should have. + */ +void +ActionManager::map_some_state (const char* group, const char* action, bool (RCConfiguration::*get)() const) { - RefPtr act; + Glib::RefPtr act = ActionManager::get_action (group, action); + if (act) { + Glib::RefPtr tact = Glib::RefPtr::cast_dynamic(act); - act = ToggleAction::create (name, label); - group->add (act, sl); + if (tact) { - return act; -} + bool x = (Config->*get)(); -bool lookup_entry (const Glib::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)); + if (tact->get_active() != x) { + tact->set_active (x); + } + } else { + cerr << group << ':' << action << " is not a toggle\n"; + } } else { - key = AccelKey (GDK_VoidSymbol, Gdk::ModifierType (0)); + cerr << group << ':' << action << " not an action\n"; } - - return known; } void -get_all_actions (vector& names, vector& paths, vector& keys, vector& bindings) +ActionManager::map_some_state (const char* group, const char* action, sigc::slot get) { - for (vector >::iterator u = ui_managers.begin(); u != ui_managers.end(); ++u) { + Glib::RefPtr act = ActionManager::get_action (group, action); + if (act) { + Glib::RefPtr tact = Glib::RefPtr::cast_dynamic(act); - ListHandle > uim_groups = (*u)->get_action_groups (); + if (tact) { - for (ListHandle >::iterator g = uim_groups.begin(); g != uim_groups.end(); ++g) { + bool const x = get (); - ListHandle > group_actions = (*g)->get_actions(); - - for (ListHandle >::iterator a = group_actions.begin(); a != group_actions.end(); ++a) { - - ustring accel_path; - - accel_path = (*a)->get_accel_path(); - - names.push_back ((*a)->get_name()); - paths.push_back (accel_path); - - AccelKey key; - bool known = lookup_entry (accel_path, key); - - if (known) { - keys.push_back ((*u)->get_accel_group()->name (key.get_key(), Gdk::ModifierType (key.get_mod()))); - } else { - keys.push_back ("--"); - } - - bindings.push_back (AccelKey (key.get_key(), Gdk::ModifierType (key.get_mod()))); + if (tact->get_active() != x) { + tact->set_active (x); } } } } -}