/* Copyright (C) 2002 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. */ #ifdef WAF_BUILD #include "gtk2ardour-config.h" #endif #include #include #include #include #include #include #include "gtkmm2ext/bindings.h" #include "gtkmm2ext/utils.h" #include "pbd/strsplit.h" #include "ardour/filesystem_paths.h" #include "ardour/profile.h" #include "actions.h" #include "keyboard.h" #include "keyeditor.h" #include "i18n.h" using namespace std; using namespace Gtk; using namespace Gdk; using namespace PBD; using Gtkmm2ext::Keyboard; using Gtkmm2ext::Bindings; KeyEditor::KeyEditor () : ArdourWindow (_("Key Bindings")) , unbind_button (_("Remove shortcut")) , unbind_box (BUTTONBOX_END) { last_keyval = 0; notebook.signal_switch_page ().connect (sigc::mem_fun (*this, &KeyEditor::page_change)); vpacker.pack_start (notebook, true, true); if (!ARDOUR::Profile->get_sae()) { Label* hint = manage (new Label (_("Select an action, then press the key(s) to (re)set its shortcut"))); hint->show (); unbind_box.set_spacing (6); unbind_box.pack_start (*hint, false, true); unbind_box.pack_start (unbind_button, false, false); unbind_button.signal_clicked().connect (sigc::mem_fun (*this, &KeyEditor::unbind)); vpacker.pack_start (unbind_box, false, false); unbind_box.show (); unbind_button.show (); } reset_button.add (reset_label); reset_label.set_markup (string_compose ("%1", _("Reset Bindings to Defaults"))); reset_box.pack_start (reset_button, true, false); reset_box.show (); reset_button.show (); reset_label.show (); reset_button.signal_clicked().connect (sigc::mem_fun (*this, &KeyEditor::reset)); vpacker.pack_start (reset_box, false, false); add (vpacker); unbind_button.set_sensitive (false); } void KeyEditor::add_tab (string const & name, Bindings& bindings) { Tab* t = new Tab (*this, name, &bindings); t->populate (); t->show_all (); notebook.append_page (*t, name); } void KeyEditor::unbind () { current_tab()->unbind (); } void KeyEditor::page_change (GtkNotebookPage*, guint) { current_tab()->view.get_selection()->unselect_all (); unbind_button.set_sensitive (false); } bool KeyEditor::on_key_press_event (GdkEventKey* ev) { if (!ev->is_modifier) { last_keyval = ev->keyval; } return ArdourWindow::on_key_press_event (ev); } bool KeyEditor::on_key_release_event (GdkEventKey* ev) { if (ARDOUR::Profile->get_sae() || last_keyval == 0) { return false; } current_tab()->bind (ev, last_keyval); last_keyval = 0; return true; } KeyEditor::Tab::Tab (KeyEditor& ke, string const & str, Bindings* b) : owner (ke) , name (str) , bindings (b) { model = TreeStore::create(columns); view.set_model (model); view.append_column (_("Action"), columns.action); view.append_column (_("Shortcut"), columns.binding); view.set_headers_visible (true); view.get_selection()->set_mode (SELECTION_SINGLE); view.set_reorderable (false); view.set_size_request (500,300); view.set_enable_search (false); view.set_rules_hint (true); view.set_name (X_("KeyEditorTree")); view.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &Tab::action_selected)); scroller.add (view); scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC); set_spacing (6); set_border_width (12); pack_start (scroller); } void KeyEditor::Tab::action_selected () { if (view.get_selection()->count_selected_rows() == 0) { return; } TreeModel::iterator i = view.get_selection()->get_selected(); owner.unbind_button.set_sensitive (false); if (i != model->children().end()) { string path = (*i)[columns.path]; if (!(*i)[columns.bindable]) { return; } string binding = (*i)[columns.binding]; if (!binding.empty()) { owner.unbind_button.set_sensitive (true); } } } void KeyEditor::Tab::unbind () { TreeModel::iterator i = view.get_selection()->get_selected(); owner.unbind_button.set_sensitive (false); if (i != model->children().end()) { string path = (*i)[columns.path]; if (!(*i)[columns.bindable]) { return; } bool result = AccelMap::change_entry (path, 0, (ModifierType) 0, true); if (result) { (*i)[columns.binding] = string (); } } } void KeyEditor::Tab::bind (GdkEventKey* release_event, guint pressed_key) { TreeModel::iterator i = view.get_selection()->get_selected(); if (i != model->children().end()) { string path = (*i)[columns.path]; if (!(*i)[columns.bindable]) { return; } GdkModifierType mod = (GdkModifierType)(Keyboard::RelevantModifierKeyMask & release_event->state); Gtkmm2ext::possibly_translate_keyval_to_make_legal_accelerator (release_event->keyval); Gtkmm2ext::possibly_translate_mod_to_make_legal_accelerator (mod); bool result = AccelMap::change_entry (path, pressed_key, Gdk::ModifierType(mod), true); if (result) { AccelKey key; (*i)[columns.binding] = ActionManager::get_key_representation (path, key); owner.unbind_button.set_sensitive (true); } } } void KeyEditor::Tab::populate () { vector paths; vector labels; vector tooltips; vector keys; vector binds; typedef std::map NodeMap; NodeMap nodes; NodeMap::iterator r; bindings->get_all_actions (labels, paths, tooltips, keys, binds); vector::iterator k; vector::iterator p; vector::iterator t; vector::iterator l; model->clear (); for (l = labels.begin(), k = keys.begin(), p = paths.begin(), t = tooltips.begin(); l != labels.end(); ++k, ++p, ++t, ++l) { TreeModel::Row row; vector parts; parts.clear (); split (*p, parts, '/'); if (parts.empty()) { continue; } //kinda kludgy way to avoid displaying menu items as mappable if ((parts[1].find ("Menu") == parts[1].length() - 4) || (parts[1].find ("menu") == parts[1].length() - 4) || (parts[1] == _("RegionList"))) { continue; } if ((r = nodes.find (parts[1])) == nodes.end()) { /* top level is missing */ TreeIter rowp; TreeModel::Row parent; rowp = model->append(); nodes[parts[1]] = rowp; parent = *(rowp); parent[columns.action] = parts[1]; parent[columns.bindable] = false; row = *(model->append (parent.children())); } else { row = *(model->append ((*r->second)->children())); } /* add this action */ if (l->empty ()) { row[columns.action] = *t; } else { row[columns.action] = *l; } row[columns.path] = (*p); row[columns.bindable] = true; if (*k == ActionManager::unbound_string) { row[columns.binding] = string(); } else { row[columns.binding] = (*k); } } } void KeyEditor::reset () { Keyboard::the_keyboard().reset_bindings (); for (Tabs::iterator t = tabs.begin(); t != tabs.end(); ++t) { (*t)->view.get_selection()->unselect_all (); (*t)->populate (); } } KeyEditor::Tab* KeyEditor::current_tab () { return dynamic_cast (notebook.get_nth_page (notebook.get_current_page())); }