move generic parts of Keyboard into gtkmm2ext. imperfectly done, but makes modifiers...
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 4 Dec 2009 22:51:32 +0000 (22:51 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 4 Dec 2009 22:51:32 +0000 (22:51 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@6288 d708f5d6-7413-0410-9779-e7cbd77b26cf

30 files changed:
gtk2_ardour/ardour_dialog.cc
gtk2_ardour/ardour_ui.cc
gtk2_ardour/ardour_ui.h
gtk2_ardour/ardour_ui_dependents.cc
gtk2_ardour/audio_clock.cc
gtk2_ardour/crossfade_edit.cc
gtk2_ardour/editor.cc
gtk2_ardour/editor_canvas_events.cc
gtk2_ardour/editor_drag.cc
gtk2_ardour/editor_mouse.cc
gtk2_ardour/editor_ops.cc
gtk2_ardour/editor_regions.cc
gtk2_ardour/editor_route_groups.cc
gtk2_ardour/editor_routes.cc
gtk2_ardour/editor_summary.cc
gtk2_ardour/gain_meter.cc
gtk2_ardour/group_tabs.cc
gtk2_ardour/keyboard.cc
gtk2_ardour/keyboard.h
gtk2_ardour/keyeditor.cc
gtk2_ardour/midi_region_view.cc
gtk2_ardour/panner2d.cc
gtk2_ardour/port_matrix_grid.cc
gtk2_ardour/route_time_axis.cc
gtk2_ardour/time_axis_view.cc
gtk2_ardour/utils.cc
libs/gtkmm2ext/gtkmm2ext/actions.h
libs/gtkmm2ext/gtkmm2ext/keyboard.h [new file with mode: 0644]
libs/gtkmm2ext/keyboard.cc [new file with mode: 0644]
libs/gtkmm2ext/wscript

index 5affa6e36335058800498693b548322144716b33..63c32e8c2d00610e209be78e157519b20eac4b8a 100644 (file)
@@ -32,6 +32,7 @@
 using namespace std;
 using namespace sigc;
 using namespace Gtk;
+using namespace Gtkmm2ext;
 
 sigc::signal<void> ArdourDialog::CloseAllDialogs;
 
index 234f05705d32eedbcabf81e13d349340f3f1e87e..28dd679f1052379ae7b5844af8ad720573a356a1 100644 (file)
@@ -274,7 +274,12 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[])
 
        /* we like keyboards */
 
-       keyboard = new Keyboard;
+       keyboard = new ArdourKeyboard;
+
+       XMLNode* node = ARDOUR_UI::instance()->keyboard_settings();
+       if (node) {
+               keyboard->set_state (*node, Stateful::loading_state_version);
+       }
 
        reset_dpi();
 
index 1d279ff281bed4873749829955ae9daef8b20823..f356db6c0a1c3f2c4658c3acd930b82607ed3090 100644 (file)
 class About;
 class AddRouteDialog;
 class ArdourStartup;
+class ArdourKeyboard;
 class AudioClock;
 class BundleManager;
 class ConnectionEditor;
 class KeyEditor;
-class Keyboard;
 class LocationUIWindow;
 class Mixer_UI;
 class PublicEditor;
@@ -596,8 +596,8 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        /* Keyboard Handling */
 
-       Keyboard* keyboard;
-
+       ArdourKeyboard* keyboard;
+       
        /* Keymap handling */
 
        void install_actions ();
index 9a9a575e73b11d5628d3daf637b2a0292e48b173..0b6b327e8b343928f82cb69269b92250e50ed642 100644 (file)
@@ -58,9 +58,7 @@ ARDOUR_UI::we_have_dependents ()
 {
        install_actions ();
        ProcessorBox::register_actions ();
-
-       Keyboard::setup_keybindings ();
-
+       keyboard->setup_keybindings ();
        editor->UpdateAllTransportClocks.connect (mem_fun (*this, &ARDOUR_UI::update_transport_clocks));
 }
 
index 8235aca5d57e994abe3fbcceb400c1a0a5d7325d..1e9e24e5bc4d69efabe88fd14857188aec2ae452 100644 (file)
@@ -43,6 +43,8 @@ using namespace sigc;
 using namespace Gtk;
 using namespace std;
 
+using Gtkmm2ext::Keyboard;
+
 using PBD::atoi;
 using PBD::atof;
 
index cc8d4871858e2240884c21c6ed3d301a1ee4fb2b..c20b7c492ad93e53125a35f54c293f56bee0d032 100644 (file)
@@ -57,6 +57,8 @@ using namespace Gtk;
 using namespace sigc;
 using namespace Editing;
 
+using Gtkmm2ext::Keyboard;
+
 #include "i18n.h"
 
 const int32_t CrossfadeEditor::Point::size = 7;
index 54f73e2f4ca7d957682e23cbafd71c540bf5c628..817b02ea2905e4dc074178040ebd435ae32ed02c 100644 (file)
@@ -125,6 +125,7 @@ using namespace Editing;
 
 using PBD::internationalize;
 using PBD::atoi;
+using Gtkmm2ext::Keyboard;
 
 const double Editor::timebar_height = 15.0;
 
index 525abf8d00de8d21728683b16a220f96cfc57f9f..cf03587e8a2945877961df718fa07263a27598dc 100644 (file)
@@ -59,6 +59,8 @@ using namespace PBD;
 using namespace Gtk;
 using namespace ArdourCanvas;
 
+using Gtkmm2ext::Keyboard;
+
 bool
 Editor::track_canvas_scroll (GdkEventScroll* ev)
 {
index f24463ef455041a286c25f6796c97cbdb90e55d6..4c68a3f495129357fcce353cb27837b3e688eda3 100644 (file)
@@ -48,6 +48,8 @@ using namespace Gtk;
 using namespace Editing;
 using namespace ArdourCanvas;
 
+using Gtkmm2ext::Keyboard;
+
 double const ControlPointDrag::_zero_gain_fraction = gain_to_slider_position (dB_to_coefficient (0.0));
 
 Drag::Drag (Editor* e, ArdourCanvas::Item* i) 
@@ -2181,7 +2183,7 @@ MarkerDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
                _editor->show_verbose_time_cursor (location->end(), 10);
        }
 
-       Selection::Operation op = Keyboard::selection_type (event->button.state);
+       Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
 
        switch (op) {
        case Selection::Toggle:
@@ -2394,7 +2396,7 @@ MarkerDrag::finished (GdkEvent* event, bool movement_occurred)
                   off the selection process
                */
 
-               Selection::Operation op = Keyboard::selection_type (event->button.state);
+               Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
 
                switch (op) {
                case Selection::Set:
@@ -2748,7 +2750,7 @@ RubberbandSelectDrag::finished (GdkEvent* event, bool movement_occurred)
                }
 
 
-               Selection::Operation op = Keyboard::selection_type (event->button.state);
+               Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
                bool committed;
 
                _editor->begin_reversible_command (_("rubberband selection"));
index 1b0f5bb229d45745a4fad2d802838594c62b5db2..56acaf1077515efa1433ccd43e802fd2bcad7400 100644 (file)
@@ -79,6 +79,7 @@ using namespace PBD;
 using namespace sigc;
 using namespace Gtk;
 using namespace Editing;
+using Gtkmm2ext::Keyboard;
 
 bool
 Editor::mouse_frame (nframes64_t& where, bool& in_track_canvas) const
@@ -440,7 +441,7 @@ Editor::button_selection (ArdourCanvas::Item* /*item*/, GdkEvent* event, ItemTyp
                }
        }
 
-       Selection::Operation op = Keyboard::selection_type (event->button.state);
+       Selection::Operation op = ArdourKeyboard::selection_type (event->button.state);
        bool press = (event->type == GDK_BUTTON_PRESS);
 
        // begin_reversible_command (_("select on click"));
index 3b60f3c903946fb436408809d4058d536b2031c6..833ac580a2b262809ab1c5d882436d91b7a22a79 100644 (file)
@@ -88,6 +88,7 @@ using namespace sigc;
 using namespace Gtk;
 using namespace Gtkmm2ext;
 using namespace Editing;
+using Gtkmm2ext::Keyboard;
 
 /***********************************************************************
   Editor operations
index 697c46bba57d31c57be888ef94e8d35edce2caf9..92670b8659666911f36845ba2a7a8ff06595b93c 100644 (file)
@@ -52,6 +52,7 @@ using namespace PBD;
 using namespace Gtk;
 using namespace Glib;
 using namespace Editing;
+using Gtkmm2ext::Keyboard;
 
 EditorRegions::EditorRegions (Editor* e)
        : EditorComponent (e),
index 1a2fb35f9ef4a67d14e828130630372c8e3b5bbf..79049e02bcb19e6f27ec923e5789b8e4f8a82043 100644 (file)
@@ -46,6 +46,7 @@ using namespace sigc;
 using namespace ARDOUR;
 using namespace PBD;
 using namespace Gtk;
+using Gtkmm2ext::Keyboard;
 
 EditorRouteGroups::EditorRouteGroups (Editor* e)
        : EditorComponent (e),
index ca22b8cbf70bb7ee98fc4925fc883fab26328dee..e92e0544262c8367502bc73c71e2e5cc2f701b7f 100644 (file)
@@ -55,6 +55,7 @@ using namespace PBD;
 using namespace Gtk;
 using namespace Gtkmm2ext;
 using namespace Glib;
+using Gtkmm2ext::Keyboard;
 
 EditorRoutes::EditorRoutes (Editor* e)
        : EditorComponent (e),
index 7998b090d674b9ef37ae49a63fca44835d2d9273..be609638cf401466a08f3bd95efff3e052df83b2 100644 (file)
@@ -30,6 +30,7 @@
 using namespace std;
 using namespace sigc;
 using namespace ARDOUR;
+using Gtkmm2ext::Keyboard;
 
 /** Construct an EditorSummary.
  *  @param e Editor to represent.
index f77a1049e0d767377443f8019a5ca63ccc5f6b65..95e41b5ee62b83afc9acf714b2a470a99e81b701 100644 (file)
@@ -58,6 +58,7 @@ using namespace Gtkmm2ext;
 using namespace Gtk;
 using namespace sigc;
 using namespace std;
+using Gtkmm2ext::Keyboard;
 
 sigc::signal<void> GainMeterBase::ResetAllPeakDisplays;
 sigc::signal<void,RouteGroup*> GainMeterBase::ResetGroupPeakDisplays;
index 9a10adf554f513543ad0ac78ed3fdebe976dc006..b099c0d309f6a79f76b26e1a1125d3d7983b9663 100644 (file)
@@ -29,6 +29,7 @@
 using namespace std;
 using namespace Gtk;
 using namespace ARDOUR;
+using Gtkmm2ext::Keyboard;
 
 GroupTabs::GroupTabs (Editor* e)
        : EditorComponent (e),
index 200a666fea877d47acfa8005f553bd5bdbe265ef..bcdd551c0ab82a67e24de16b805aed5162dd2f8c 100644 (file)
 
 */
 
-#include <vector>
-#include "ardour/ardour.h"
-
-#include "ardour_ui.h"
-
-#include <algorithm>
-#include <fstream>
-#include <iostream>
-
-#include <ctype.h>
-
-#include <gtkmm/accelmap.h>
-
-#include <gdk/gdkkeysyms.h>
 #include "pbd/error.h"
 #include "pbd/file_utils.h"
 
 #include "ardour/filesystem_paths.h"
 
 #include "keyboard.h"
-#include "gui_thread.h"
 #include "opts.h"
-#include "actions.h"
 
 #include "i18n.h"
 
+using namespace std;
+using namespace Gtk;
 using namespace PBD;
 using namespace ARDOUR;
-using namespace Gtk;
-using namespace std;
-
-#define KBD_DEBUG 1
-bool debug_keyboard = false;
-
-guint Keyboard::edit_but = 3;
-guint Keyboard::edit_mod = GDK_CONTROL_MASK;
-guint Keyboard::delete_but = 3;
-guint Keyboard::delete_mod = GDK_SHIFT_MASK;
-guint Keyboard::snap_mod = GDK_MOD3_MASK;
-
-#ifdef GTKOSX
-guint Keyboard::PrimaryModifier = GDK_META_MASK;   // Command
-guint Keyboard::SecondaryModifier = GDK_MOD1_MASK; // Alt/Option
-guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK; // Shift
-guint Keyboard::Level4Modifier = GDK_CONTROL_MASK; // Control
-guint Keyboard::CopyModifier = GDK_MOD1_MASK;      // Alt/Option
-guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
-guint Keyboard::button2_modifiers = Keyboard::SecondaryModifier|Keyboard::Level4Modifier;
-#else
-guint Keyboard::PrimaryModifier = GDK_CONTROL_MASK; // Control
-guint Keyboard::SecondaryModifier = GDK_MOD1_MASK;  // Alt/Option
-guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK;  // Shift
-guint Keyboard::Level4Modifier = GDK_MOD4_MASK;     // Mod4/Windows
-guint Keyboard::CopyModifier = GDK_CONTROL_MASK;
-guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
-guint Keyboard::button2_modifiers = 0; /* not used */
-#endif
-
-
-Keyboard*    Keyboard::_the_keyboard = 0;
-Gtk::Window* Keyboard::current_window = 0;
-bool         Keyboard::_some_magic_widget_has_focus = false;
-
-std::string Keyboard::user_keybindings_path;
-bool Keyboard::can_save_keybindings = false;
-bool Keyboard::bindings_changed_after_save_became_legal = false;
-map<string,string> Keyboard::binding_files;
-string Keyboard::_current_binding_name = _("Unknown");
-map<AccelKey,pair<string,string>,Keyboard::AccelKeyLess> Keyboard::release_keys;
-
-/* set this to initially contain the modifiers we care about, then track changes in ::set_edit_modifier() etc. */
-
-GdkModifierType Keyboard::RelevantModifierKeyMask;
-
-void
-Keyboard::magic_widget_grab_focus ()
-{
-       _some_magic_widget_has_focus = true;
-}
-
-void
-Keyboard::magic_widget_drop_focus ()
-{
-       _some_magic_widget_has_focus = false;
-}
-
-bool
-Keyboard::some_magic_widget_has_focus ()
-{
-       return _some_magic_widget_has_focus;
-}
-
-Keyboard::Keyboard ()
-{
-       if (_the_keyboard == 0) {
-               _the_keyboard = this;
-       }
-
-       RelevantModifierKeyMask = (GdkModifierType) gtk_accelerator_get_default_mod_mask ();
-
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | PrimaryModifier);
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | SecondaryModifier);
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | TertiaryModifier);
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | Level4Modifier);
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | CopyModifier);
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | RangeSelectModifier);
-
-       gtk_accelerator_set_default_mod_mask (RelevantModifierKeyMask);
-
-       snooper_id = gtk_key_snooper_install (_snooper, (gpointer) this);
-
-       XMLNode* node = ARDOUR_UI::instance()->keyboard_settings();
-       set_state (*node, Stateful::loading_state_version);
-}
-
-Keyboard::~Keyboard ()
-{
-       gtk_key_snooper_remove (snooper_id);
-}
-
-XMLNode&
-Keyboard::get_state (void)
-{
-       XMLNode* node = new XMLNode ("Keyboard");
-       char buf[32];
-
-       snprintf (buf, sizeof (buf), "%d", edit_but);
-       node->add_property ("edit-button", buf);
-       snprintf (buf, sizeof (buf), "%d", edit_mod);
-       node->add_property ("edit-modifier", buf);
-       snprintf (buf, sizeof (buf), "%d", delete_but);
-       node->add_property ("delete-button", buf);
-       snprintf (buf, sizeof (buf), "%d", delete_mod);
-       node->add_property ("delete-modifier", buf);
-       snprintf (buf, sizeof (buf), "%d", snap_mod);
-       node->add_property ("snap-modifier", buf);
-
-       return *node;
-}
-
-int
-Keyboard::set_state (const XMLNode& node, int /*version*/)
-{
-       const XMLProperty* prop;
-
-       if ((prop = node.property ("edit-button")) != 0) {
-               sscanf (prop->value().c_str(), "%d", &edit_but);
-       }
-
-       if ((prop = node.property ("edit-modifier")) != 0) {
-               sscanf (prop->value().c_str(), "%d", &edit_mod);
-       }
-
-       if ((prop = node.property ("delete-button")) != 0) {
-               sscanf (prop->value().c_str(), "%d", &delete_but);
-       }
-
-       if ((prop = node.property ("delete-modifier")) != 0) {
-               sscanf (prop->value().c_str(), "%d", &delete_mod);
-       }
-
-       if ((prop = node.property ("snap-modifier")) != 0) {
-               sscanf (prop->value().c_str(), "%d", &snap_mod);
-       }
-
-       return 0;
-}
-
-gint
-Keyboard::_snooper (GtkWidget *widget, GdkEventKey *event, gpointer data)
-{
-       return ((Keyboard *) data)->snooper (widget, event);
-}
-
-gint
-Keyboard::snooper (GtkWidget *widget, GdkEventKey *event)
-{
-       uint32_t keyval;
-       bool ret = false;
-
-#if 0
-       cerr << "snoop widget " << widget << " key " << event->keyval << " type: " << event->type
-            << " state " << std::hex << event->state << std::dec
-            << endl;
-#endif
-
-#if KBD_DEBUG
-       if (debug_keyboard) {
-               cerr << "snoop widget " << widget << " key " << event->keyval << " type: " << event->type
-                    << endl;
-       }
-#endif
-
-       if (event->keyval == GDK_Shift_R) {
-               keyval = GDK_Shift_L;
-
-       } else  if (event->keyval == GDK_Control_R) {
-               keyval = GDK_Control_L;
-
-       } else {
-               keyval = event->keyval;
-       }
-
-       if (event->type == GDK_KEY_PRESS) {
-
-               if (find (state.begin(), state.end(), keyval) == state.end()) {
-                       state.push_back (keyval);
-                       sort (state.begin(), state.end());
-
-               } else {
-
-                       /* key is already down. if its also used for release,
-                          prevent auto-repeat events.
-                       */
-
-                       for (map<AccelKey,two_strings,AccelKeyLess>::iterator k = release_keys.begin(); k != release_keys.end(); ++k) {
-
-                               const AccelKey& ak (k->first);
-
-                               if (keyval == ak.get_key() && (Gdk::ModifierType)((event->state & Keyboard::RelevantModifierKeyMask) | Gdk::RELEASE_MASK) == ak.get_mod()) {
-                                       cerr << "Suppress auto repeat\n";
-                                       ret = true;
-                                       break;
-                               }
-                       }
-               }
-
-       } else if (event->type == GDK_KEY_RELEASE) {
-
-               State::iterator i;
-
-               if ((i = find (state.begin(), state.end(), keyval)) != state.end()) {
-                       state.erase (i);
-                       sort (state.begin(), state.end());
-               }
-
-               for (map<AccelKey,two_strings,AccelKeyLess>::iterator k = release_keys.begin(); k != release_keys.end(); ++k) {
-
-                       const AccelKey& ak (k->first);
-                       two_strings ts (k->second);
-
-                       if (keyval == ak.get_key() && (Gdk::ModifierType)((event->state & Keyboard::RelevantModifierKeyMask) | Gdk::RELEASE_MASK) == ak.get_mod()) {
-                               Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (ts.first.c_str(), ts.second.c_str());
-                               if (act) {
-                                       act->activate();
-                                       cerr << "use repeat, suppress other\n";
-                                       ret = true;
-                               }
-                               break;
-                       }
-               }
-       }
-
-       /* Special keys that we want to handle in
-          any dialog, no matter whether it uses
-          the regular set of accelerators or not
-       */
-
-       if (event->type == GDK_KEY_RELEASE && modifier_state_equals (event->state, PrimaryModifier)) {
-               switch (event->keyval) {
-               case GDK_w:
-                       if (current_window) {
-                               current_window->hide ();
-                               current_window = 0;
-                               ret = true;
-                       }
-                       break;
-               }
-       }
-
-       return ret;
-}
-
-bool
-Keyboard::key_is_down (uint32_t keyval)
-{
-       return find (state.begin(), state.end(), keyval) != state.end();
-}
-
-bool
-Keyboard::enter_window (GdkEventCrossing *, Gtk::Window* win)
-{
-       current_window = win;
-       return false;
-}
-
-bool
-Keyboard::leave_window (GdkEventCrossing *ev, Gtk::Window* /*win*/)
-{
-       if (ev) {
-               switch (ev->detail) {
-               case GDK_NOTIFY_INFERIOR:
-                       if (debug_keyboard) {
-                               cerr << "INFERIOR crossing ... out\n";
-                       }
-                       break;
-
-               case GDK_NOTIFY_VIRTUAL:
-                       if (debug_keyboard) {
-                               cerr << "VIRTUAL crossing ... out\n";
-                       }
-                       /* fallthru */
-
-               default:
-                       if (debug_keyboard) {
-                               cerr << "REAL CROSSING ... out\n";
-                               cerr << "clearing current target\n";
-                       }
-                       state.clear ();
-                       current_window = 0;
-               }
-       } else {
-               current_window = 0;
-       }
-
-       return false;
-}
-
-void
-Keyboard::set_edit_button (guint but)
-{
-       edit_but = but;
-}
-
-void
-Keyboard::set_edit_modifier (guint mod)
-{
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~edit_mod);
-       edit_mod = mod;
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | edit_mod);
-}
-
-void
-Keyboard::set_delete_button (guint but)
-{
-       delete_but = but;
-}
-
-void
-Keyboard::set_delete_modifier (guint mod)
-{
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~delete_mod);
-       delete_mod = mod;
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | delete_mod);
-}
-
-void
-Keyboard::set_modifier (uint32_t newval, uint32_t& var)
-{
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~var);
-       var = newval;
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | var);
-}
-
-void
-Keyboard::set_snap_modifier (guint mod)
-{
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~snap_mod);
-       snap_mod = mod;
-       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | snap_mod);
-}
-
-bool
-Keyboard::is_edit_event (GdkEventButton *ev)
-{
-       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
-               (ev->button == Keyboard::edit_button()) &&
-               ((ev->state & RelevantModifierKeyMask) == Keyboard::edit_modifier());
-}
-
-bool
-Keyboard::is_button2_event (GdkEventButton* ev)
-{
-#ifdef GTKOSX
-       return (ev->button == 2) ||
-               ((ev->button == 1) &&
-                ((ev->state & Keyboard::button2_modifiers) == Keyboard::button2_modifiers));
-#else
-       return ev->button == 2;
-#endif
-}
-
-bool
-Keyboard::is_delete_event (GdkEventButton *ev)
-{
-       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
-               (ev->button == Keyboard::delete_button()) &&
-               ((ev->state & RelevantModifierKeyMask) == Keyboard::delete_modifier());
-}
-
-bool
-Keyboard::is_context_menu_event (GdkEventButton *ev)
-{
-       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
-               (ev->button == 3) &&
-               ((ev->state & RelevantModifierKeyMask) == 0);
-}
-
-bool
-Keyboard::no_modifiers_active (guint state)
-{
-       return (state & RelevantModifierKeyMask) == 0;
-}
-
-bool
-Keyboard::modifier_state_contains (guint state, ModifierMask mask)
-{
-       return (state & mask) == (guint) mask;
-}
-
-bool
-Keyboard::modifier_state_equals (guint state, ModifierMask mask)
-{
-       return (state & RelevantModifierKeyMask) == (guint) mask;
-}
-
-Selection::Operation
-Keyboard::selection_type (guint state)
-{
-       /* note that there is no modifier for "Add" */
-
-       if (modifier_state_equals (state, RangeSelectModifier)) {
-               return Selection::Extend;
-       } else if (modifier_state_equals (state, PrimaryModifier)) {
-               return Selection::Toggle;
-       } else {
-               return Selection::Set;
-       }
-}
-
+using Gtkmm2ext::Keyboard;
 
 static void
 accel_map_changed (GtkAccelMap* /*map*/,
@@ -459,34 +44,10 @@ accel_map_changed (GtkAccelMap* /*map*/,
 }
 
 void
-Keyboard::keybindings_changed ()
-{
-       if (Keyboard::can_save_keybindings) {
-               Keyboard::bindings_changed_after_save_became_legal = true;
-       }
-
-       Keyboard::save_keybindings ();
-}
-
-void
-Keyboard::set_can_save_keybindings (bool yn)
-{
-       can_save_keybindings = yn;
-}
-
-void
-Keyboard::save_keybindings ()
-{
-       if (can_save_keybindings && bindings_changed_after_save_became_legal) {
-               Gtk::AccelMap::save (user_keybindings_path);
-       }
-}
-
-void
-Keyboard::setup_keybindings ()
+ArdourKeyboard::setup_keybindings ()
 {
        using namespace ARDOUR_COMMAND_LINE;
-       std::string default_bindings = "mnemonic-us.bindings";
+       string default_bindings = "mnemonic-us.bindings";
        vector<string> strs;
 
        binding_files.clear ();
@@ -615,69 +176,18 @@ Keyboard::setup_keybindings ()
        g_signal_connect (accelmap, "changed", (GCallback) accel_map_changed, 0);
 }
 
-bool
-Keyboard::load_keybindings (string path)
+Selection::Operation
+ArdourKeyboard::selection_type (guint state)
 {
-       try {
-               info << "Loading bindings from " << path << endl;
-
-               Gtk::AccelMap::load (path);
-
-               _current_binding_name = _("Unknown");
-
-               for (map<string,string>::iterator x = binding_files.begin(); x != binding_files.end(); ++x) {
-                       if (path == x->second) {
-                               _current_binding_name = x->first;
-                               break;
-                       }
-               }
-
-
-       } catch (...) {
-               error << string_compose (_("Ardour key bindings file not found at \"%1\" or contains errors."), path)
-                     << endmsg;
-               return false;
-       }
-
-       /* now find all release-driven bindings */
-
-       vector<string> groups;
-       vector<string> names;
-       vector<AccelKey> bindings;
-
-       ActionManager::get_all_actions (groups, names, bindings);
-
-       vector<string>::iterator g;
-       vector<AccelKey>::iterator b;
-       vector<string>::iterator n;
-
-       release_keys.clear ();
-
-       bool show_bindings = (getenv ("ARDOUR_SHOW_BINDINGS") != 0);
-
-       for (n = names.begin(), b = bindings.begin(), g = groups.begin(); n != names.end(); ++n, ++b, ++g) {
-
-               if (show_bindings) {
-
-                       cerr << "Action: " << (*n) << " Group: " << (*g) << " binding = ";
-
-                       if ((*b).get_key() != GDK_VoidSymbol) {
-                               cerr << (*b).get_key() << " w/mod = " << hex << (*b).get_mod() << dec << " = " << (*b).get_abbrev();
-                       } else {
-                               cerr << "unbound";
-                       }
-
-                       cerr << endl;
-               }
-       }
+       /* note that there is no modifier for "Add" */
 
-       for (n = names.begin(), b = bindings.begin(), g = groups.begin(); n != names.end(); ++n, ++b, ++g) {
-               if ((*b).get_mod() & Gdk::RELEASE_MASK) {
-                       release_keys.insert (pair<AccelKey,two_strings> (*b, two_strings (*g, *n)));
-               }
+       if (modifier_state_equals (state, RangeSelectModifier)) {
+               return Selection::Extend;
+       } else if (modifier_state_equals (state, PrimaryModifier)) {
+               return Selection::Toggle;
+       } else {
+               return Selection::Set;
        }
-
-       return true;
 }
 
 
index e34c424329f3e0761ffd5325be2d7421b8d86b28..d4f1158e35664e1af0cf07bd5e7ac7d45f008586 100644 (file)
 #ifndef __ardour_keyboard_h__
 #define __ardour_keyboard_h__
 
-#include <map>
-#include <vector>
-#include <string>
-
-#include <sigc++/signal.h>
-#include <gtk/gtk.h>
-#include <gtkmm/accelkey.h>
-
 #include "ardour/types.h"
-#include "pbd/stateful.h"
+#include "gtkmm2ext/keyboard.h"
 
 #include "selection.h"
 
-class Keyboard : public sigc::trackable, PBD::Stateful
+
+class ArdourKeyboard : public Gtkmm2ext::Keyboard 
 {
   public:
-       Keyboard ();
-       ~Keyboard ();
-
-       XMLNode& get_state (void);
-       int set_state (const XMLNode&, int version);
-
-       typedef std::vector<uint32_t> State;
-       typedef uint32_t ModifierMask;
-
-       static uint32_t PrimaryModifier;
-       static uint32_t SecondaryModifier;
-       static uint32_t TertiaryModifier;
-       static uint32_t Level4Modifier;
-       static uint32_t CopyModifier;
-       static uint32_t RangeSelectModifier;
-
-       static void set_primary_modifier (uint32_t newval) {
-               set_modifier (newval, PrimaryModifier);
-       }
-       static void set_secondary_modifier (uint32_t newval) {
-               set_modifier (newval, SecondaryModifier);
-       }
-       static void set_tertiary_modifier (uint32_t newval) {
-               set_modifier (newval, TertiaryModifier);
-       }
-       static void set_level4_modifier (uint32_t newval) {
-               set_modifier (newval, Level4Modifier);
-       }
-       static void set_copy_modifier (uint32_t newval) {
-               set_modifier (newval, CopyModifier);
-       }
-       static void set_range_select_modifier (uint32_t newval) {
-               set_modifier (newval, RangeSelectModifier);
-       }
-
-       bool key_is_down (uint32_t keyval);
+       ArdourKeyboard() {}
 
-       static GdkModifierType RelevantModifierKeyMask;
-
-       static bool no_modifier_keys_pressed(GdkEventButton* ev) {
-               return (ev->state & RelevantModifierKeyMask) == 0;
-       }
-
-       bool leave_window (GdkEventCrossing *ev, Gtk::Window*);
-       bool enter_window (GdkEventCrossing *ev, Gtk::Window*);
-
-       static bool modifier_state_contains (guint state, ModifierMask);
-       static bool modifier_state_equals   (guint state, ModifierMask);
+       void setup_keybindings ();
 
        static Selection::Operation selection_type (guint state);
-
-       static bool no_modifiers_active (guint state);
-
-       static void set_snap_modifier (guint);
-
-       /** @return Modifier mask to temporarily toggle grid setting; with this modifier
-        *  - magnetic or normal grid should become no grid and
-        *  - no grid should become normal grid
-        */
-       static ModifierMask snap_modifier () { return ModifierMask (snap_mod); }
-
-       static guint edit_button() { return edit_but; }
-       static void set_edit_button (guint);
-       static guint edit_modifier() { return edit_mod; }
-       static void set_edit_modifier(guint);
-
-       static guint delete_button() { return delete_but; }
-       static void set_delete_button(guint);
-       static guint delete_modifier() { return delete_mod; }
-       static void set_delete_modifier(guint);
-
-       static bool is_edit_event (GdkEventButton*);
-       static bool is_delete_event (GdkEventButton*);
-       static bool is_context_menu_event (GdkEventButton*);
-       static bool is_button2_event (GdkEventButton*);
-
-       static Keyboard& the_keyboard() { return *_the_keyboard; }
-
-       static bool some_magic_widget_has_focus ();
-       static void magic_widget_grab_focus ();
-       static void magic_widget_drop_focus ();
-
-       static void setup_keybindings ();
-       static void keybindings_changed ();
-       static void save_keybindings ();
-       static bool load_keybindings (std::string path);
-       static void set_can_save_keybindings (bool yn);
-       static std::string current_binding_name () { return _current_binding_name; }
-       static std::map<std::string,std::string> binding_files;
-
-       struct AccelKeyLess {
-           bool operator() (const Gtk::AccelKey a, const Gtk::AccelKey b) const {
-                   if (a.get_key() != b.get_key()) {
-                           return a.get_key() < b.get_key();
-                   } else {
-                           return a.get_mod() < b.get_mod();
-                   }
-           }
-       };
-
-  private:
-       static Keyboard* _the_keyboard;
-
-       guint           snooper_id;
-       State           state;
-
-       static guint     edit_but;
-       static guint     edit_mod;
-       static guint     delete_but;
-       static guint     delete_mod;
-       static guint     snap_mod;
-       static guint     button2_modifiers;
-       static Gtk::Window* current_window;
-       static std::string user_keybindings_path;
-       static bool can_save_keybindings;
-       static bool bindings_changed_after_save_became_legal;
-       static std::string _current_binding_name;
-
-       typedef std::pair<std::string,std::string> two_strings;
-
-       static std::map<Gtk::AccelKey,two_strings,AccelKeyLess> release_keys;
-
-       static gint _snooper (GtkWidget*, GdkEventKey*, gpointer);
-       gint snooper (GtkWidget*, GdkEventKey*);
-
-       static void set_modifier (uint32_t newval, uint32_t& variable);
-
-       static bool _some_magic_widget_has_focus;
 };
 
 #endif /* __ardour_keyboard_h__ */
index b8bfb5677b06f37247ed5e8d5b65b93dd9a6475d..f54cc4f739ed1fd0a4b36fb5b0cbc8242a8f5295 100644 (file)
@@ -25,6 +25,8 @@ using namespace Gtk;
 using namespace Gdk;
 using namespace PBD;
 
+using Gtkmm2ext::Keyboard;
+
 KeyEditor::KeyEditor ()
        : ArdourDialog (_("Key Bindings"), false)
        , unbind_button (_("Remove shortcut"))
index 2644be763ab4939b07a628b32dd4cef388c53a65..4760bf593b03952277603bc83a8693af3e305dc8 100644 (file)
@@ -70,6 +70,7 @@ using namespace ARDOUR;
 using namespace PBD;
 using namespace Editing;
 using namespace ArdourCanvas;
+using Gtkmm2ext::Keyboard;
 
 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv,
                boost::shared_ptr<MidiRegion> r, double spu, Gdk::Color const & basic_color)
index 7917604b6223b885307276f5563221211ef1c34c..f03946e9aa3c631a055047d55562af5dba1e8561 100644 (file)
@@ -39,6 +39,7 @@ using namespace Gtk;
 using namespace sigc;
 using namespace ARDOUR;
 using namespace PBD;
+using Gtkmm2ext::Keyboard;
 
 Panner2d::Target::Target (float xa, float ya, const char *txt)
        : x (xa, 0.0, 1.0, 0.01, 0.1)
index 9a2c5c189f75bad0f7655e0ab34b727749de12f4..5136285e48b3b472cb1315047e88ac6580baa555 100644 (file)
@@ -27,6 +27,7 @@
 #include "keyboard.h"
 
 using namespace std;
+using Gtkmm2ext::Keyboard;
 
 PortMatrixGrid::PortMatrixGrid (PortMatrix* m, PortMatrixBody* b)
        : PortMatrixComponent (m, b),
index a90680de4db5b2a164afa7242f8804211d98302a..ef948307a2846ce85f36597009bf89a917edb2a0 100644 (file)
@@ -1171,7 +1171,7 @@ RouteTimeAxisView::selection_click (GdkEventButton* ev)
 
        PublicEditor::TrackViewList* tracks = _editor.get_valid_views (this, _route->route_group());
 
-       switch (Keyboard::selection_type (ev->state)) {
+       switch (ArdourKeyboard::selection_type (ev->state)) {
        case Selection::Toggle:
                _editor.get_selection().toggle (*tracks);
                break;
index 31bea78acacbb8a8228b8f438042829f2a5eab55..577fbcdda6109ade84e4c515a70079949cd217ba 100644 (file)
@@ -62,6 +62,7 @@ using namespace ARDOUR;
 using namespace PBD;
 using namespace Editing;
 using namespace ArdourCanvas;
+using Gtkmm2ext::Keyboard;
 
 const double trim_handle_size = 6.0; /* pixels */
 
@@ -338,7 +339,7 @@ TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
 void
 TimeAxisView::selection_click (GdkEventButton* ev)
 {
-       Selection::Operation op = Keyboard::selection_type (ev->state);
+       Selection::Operation op = ArdourKeyboard::selection_type (ev->state);
        _editor.set_selected_track (*this, op, false);
 }
 
index 2c64594c975d706025ac22a0477f4da5e3538b1e..a98435f0d94a479d1ac52a384ed1fb9ab446af7b 100644 (file)
@@ -53,6 +53,7 @@ using namespace Gtk;
 using namespace sigc;
 using namespace Glib;
 using namespace PBD;
+using Gtkmm2ext::Keyboard;
 
 sigc::signal<void>  DPIReset;
 
index 3c3825944fa8e9fb1207e41562b1f8a44b334aba..5616bbb302f0a99f87b4d24b795ce75bcf0508cb 100644 (file)
@@ -21,6 +21,7 @@
 #define __libgtkmm2ext_actions_h__
 
 #include <vector>
+
 #include <gtkmm/action.h>
 #include <gtkmm/radioaction.h>
 #include <gtkmm/toggleaction.h>
diff --git a/libs/gtkmm2ext/gtkmm2ext/keyboard.h b/libs/gtkmm2ext/gtkmm2ext/keyboard.h
new file mode 100644 (file)
index 0000000..864eeae
--- /dev/null
@@ -0,0 +1,173 @@
+/*
+    Copyright (C) 2001 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.
+
+*/
+
+#ifndef __libgtkmm2ext_keyboard_h__
+#define __libgtkmm2ext_keyboard_h__
+
+#include <map>
+#include <vector>
+#include <string>
+
+#include <sigc++/signal.h>
+#include <gtk/gtk.h>
+#include <gtkmm/accelkey.h>
+
+#include "pbd/stateful.h"
+
+namespace Gtk {
+       class Window;
+}
+
+namespace Gtkmm2ext {
+
+class Keyboard : public sigc::trackable, PBD::Stateful
+{
+  public:
+       Keyboard ();
+       ~Keyboard ();
+
+       XMLNode& get_state (void);
+       int set_state (const XMLNode&, int version);
+
+       virtual void setup_keybindings () = 0;
+
+       typedef std::vector<uint32_t> State;
+       typedef uint32_t ModifierMask;
+
+       static uint32_t PrimaryModifier;
+       static uint32_t SecondaryModifier;
+       static uint32_t TertiaryModifier;
+       static uint32_t Level4Modifier;
+       static uint32_t CopyModifier;
+       static uint32_t RangeSelectModifier;
+
+       static void set_primary_modifier (uint32_t newval) {
+               set_modifier (newval, PrimaryModifier);
+       }
+       static void set_secondary_modifier (uint32_t newval) {
+               set_modifier (newval, SecondaryModifier);
+       }
+       static void set_tertiary_modifier (uint32_t newval) {
+               set_modifier (newval, TertiaryModifier);
+       }
+       static void set_level4_modifier (uint32_t newval) {
+               set_modifier (newval, Level4Modifier);
+       }
+       static void set_copy_modifier (uint32_t newval) {
+               set_modifier (newval, CopyModifier);
+       }
+       static void set_range_select_modifier (uint32_t newval) {
+               set_modifier (newval, RangeSelectModifier);
+       }
+
+       bool key_is_down (uint32_t keyval);
+
+       static GdkModifierType RelevantModifierKeyMask;
+
+       static bool no_modifier_keys_pressed(GdkEventButton* ev) {
+               return (ev->state & RelevantModifierKeyMask) == 0;
+       }
+
+       bool leave_window (GdkEventCrossing *ev, Gtk::Window*);
+       bool enter_window (GdkEventCrossing *ev, Gtk::Window*);
+
+       static bool modifier_state_contains (guint state, ModifierMask);
+       static bool modifier_state_equals   (guint state, ModifierMask);
+
+       static bool no_modifiers_active (guint state);
+
+       static void set_snap_modifier (guint);
+
+       /** @return Modifier mask to temporarily toggle grid setting; with this modifier
+        *  - magnetic or normal grid should become no grid and
+        *  - no grid should become normal grid
+        */
+       static ModifierMask snap_modifier () { return ModifierMask (snap_mod); }
+
+       static guint edit_button() { return edit_but; }
+       static void set_edit_button (guint);
+       static guint edit_modifier() { return edit_mod; }
+       static void set_edit_modifier(guint);
+
+       static guint delete_button() { return delete_but; }
+       static void set_delete_button(guint);
+       static guint delete_modifier() { return delete_mod; }
+       static void set_delete_modifier(guint);
+
+       static bool is_edit_event (GdkEventButton*);
+       static bool is_delete_event (GdkEventButton*);
+       static bool is_context_menu_event (GdkEventButton*);
+       static bool is_button2_event (GdkEventButton*);
+
+       static Keyboard& the_keyboard() { return *_the_keyboard; }
+
+       static bool some_magic_widget_has_focus ();
+       static void magic_widget_grab_focus ();
+       static void magic_widget_drop_focus ();
+
+       static void keybindings_changed ();
+       static void save_keybindings ();
+       static bool load_keybindings (std::string path);
+       static void set_can_save_keybindings (bool yn);
+       static std::string current_binding_name () { return _current_binding_name; }
+       static std::map<std::string,std::string> binding_files;
+
+       struct AccelKeyLess {
+           bool operator() (const Gtk::AccelKey a, const Gtk::AccelKey b) const {
+                   if (a.get_key() != b.get_key()) {
+                           return a.get_key() < b.get_key();
+                   } else {
+                           return a.get_mod() < b.get_mod();
+                   }
+           }
+       };
+
+  protected:
+       static Keyboard* _the_keyboard;
+
+       guint           snooper_id;
+       State           state;
+
+       static guint     edit_but;
+       static guint     edit_mod;
+       static guint     delete_but;
+       static guint     delete_mod;
+       static guint     snap_mod;
+       static guint     button2_modifiers;
+       static Gtk::Window* current_window;
+       static std::string user_keybindings_path;
+       static bool can_save_keybindings;
+       static bool bindings_changed_after_save_became_legal;
+       static std::string _current_binding_name;
+
+       typedef std::pair<std::string,std::string> two_strings;
+
+       static std::map<Gtk::AccelKey,two_strings,AccelKeyLess> release_keys;
+
+       static gint _snooper (GtkWidget*, GdkEventKey*, gpointer);
+       gint snooper (GtkWidget*, GdkEventKey*);
+
+       static void set_modifier (uint32_t newval, uint32_t& variable);
+
+       static bool _some_magic_widget_has_focus;
+};
+
+} /* namespace */
+
+#endif /* __libgtkmm2ext_keyboard_h__ */
diff --git a/libs/gtkmm2ext/keyboard.cc b/libs/gtkmm2ext/keyboard.cc
new file mode 100644 (file)
index 0000000..da51d4e
--- /dev/null
@@ -0,0 +1,519 @@
+/*
+    Copyright (C) 2001 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 <vector>
+
+#include <algorithm>
+#include <fstream>
+#include <iostream>
+
+#include <ctype.h>
+
+#include <gtkmm/widget.h>
+#include <gtkmm/window.h>
+#include <gtkmm/accelmap.h>
+#include <gdk/gdkkeysyms.h>
+
+#include "pbd/error.h"
+#include "pbd/file_utils.h"
+#include "pbd/search_path.h"
+#include "pbd/xml++.h"
+
+#include "gtkmm2ext/keyboard.h"
+#include "gtkmm2ext/actions.h"
+
+#include "i18n.h"
+
+using namespace PBD;
+using namespace Gtk;
+using namespace Gtkmm2ext;
+using namespace std;
+
+#define KBD_DEBUG 1
+bool debug_keyboard = false;
+
+guint Keyboard::edit_but = 3;
+guint Keyboard::edit_mod = GDK_CONTROL_MASK;
+guint Keyboard::delete_but = 3;
+guint Keyboard::delete_mod = GDK_SHIFT_MASK;
+guint Keyboard::snap_mod = GDK_MOD3_MASK;
+
+#ifdef GTKOSX
+guint Keyboard::PrimaryModifier = GDK_META_MASK;   // Command
+guint Keyboard::SecondaryModifier = GDK_MOD1_MASK; // Alt/Option
+guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK; // Shift
+guint Keyboard::Level4Modifier = GDK_CONTROL_MASK; // Control
+guint Keyboard::CopyModifier = GDK_MOD1_MASK;      // Alt/Option
+guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
+guint Keyboard::button2_modifiers = Keyboard::SecondaryModifier|Keyboard::Level4Modifier;
+#else
+guint Keyboard::PrimaryModifier = GDK_CONTROL_MASK; // Control
+guint Keyboard::SecondaryModifier = GDK_MOD1_MASK;  // Alt/Option
+guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK;  // Shift
+guint Keyboard::Level4Modifier = GDK_MOD4_MASK;     // Mod4/Windows
+guint Keyboard::CopyModifier = GDK_CONTROL_MASK;
+guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
+guint Keyboard::button2_modifiers = 0; /* not used */
+#endif
+
+
+Keyboard*    Keyboard::_the_keyboard = 0;
+Gtk::Window* Keyboard::current_window = 0;
+bool         Keyboard::_some_magic_widget_has_focus = false;
+
+std::string Keyboard::user_keybindings_path;
+bool Keyboard::can_save_keybindings = false;
+bool Keyboard::bindings_changed_after_save_became_legal = false;
+map<string,string> Keyboard::binding_files;
+string Keyboard::_current_binding_name = _("Unknown");
+map<AccelKey,pair<string,string>,Keyboard::AccelKeyLess> Keyboard::release_keys;
+
+/* set this to initially contain the modifiers we care about, then track changes in ::set_edit_modifier() etc. */
+
+GdkModifierType Keyboard::RelevantModifierKeyMask;
+
+void
+Keyboard::magic_widget_grab_focus ()
+{
+       _some_magic_widget_has_focus = true;
+}
+
+void
+Keyboard::magic_widget_drop_focus ()
+{
+       _some_magic_widget_has_focus = false;
+}
+
+bool
+Keyboard::some_magic_widget_has_focus ()
+{
+       return _some_magic_widget_has_focus;
+}
+
+Keyboard::Keyboard ()
+{
+       if (_the_keyboard == 0) {
+               _the_keyboard = this;
+       }
+
+       RelevantModifierKeyMask = (GdkModifierType) gtk_accelerator_get_default_mod_mask ();
+
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | PrimaryModifier);
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | SecondaryModifier);
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | TertiaryModifier);
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | Level4Modifier);
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | CopyModifier);
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | RangeSelectModifier);
+
+       gtk_accelerator_set_default_mod_mask (RelevantModifierKeyMask);
+
+       snooper_id = gtk_key_snooper_install (_snooper, (gpointer) this);
+}
+
+Keyboard::~Keyboard ()
+{
+       gtk_key_snooper_remove (snooper_id);
+}
+
+XMLNode&
+Keyboard::get_state (void)
+{
+       XMLNode* node = new XMLNode ("Keyboard");
+       char buf[32];
+
+       snprintf (buf, sizeof (buf), "%d", edit_but);
+       node->add_property ("edit-button", buf);
+       snprintf (buf, sizeof (buf), "%d", edit_mod);
+       node->add_property ("edit-modifier", buf);
+       snprintf (buf, sizeof (buf), "%d", delete_but);
+       node->add_property ("delete-button", buf);
+       snprintf (buf, sizeof (buf), "%d", delete_mod);
+       node->add_property ("delete-modifier", buf);
+       snprintf (buf, sizeof (buf), "%d", snap_mod);
+       node->add_property ("snap-modifier", buf);
+
+       return *node;
+}
+
+int
+Keyboard::set_state (const XMLNode& node, int /*version*/)
+{
+       const XMLProperty* prop;
+
+       if ((prop = node.property ("edit-button")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &edit_but);
+       }
+
+       if ((prop = node.property ("edit-modifier")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &edit_mod);
+       }
+
+       if ((prop = node.property ("delete-button")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &delete_but);
+       }
+
+       if ((prop = node.property ("delete-modifier")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &delete_mod);
+       }
+
+       if ((prop = node.property ("snap-modifier")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &snap_mod);
+       }
+
+       return 0;
+}
+
+gint
+Keyboard::_snooper (GtkWidget *widget, GdkEventKey *event, gpointer data)
+{
+       return ((Keyboard *) data)->snooper (widget, event);
+}
+
+gint
+Keyboard::snooper (GtkWidget *widget, GdkEventKey *event)
+{
+       uint32_t keyval;
+       bool ret = false;
+
+#if 0
+       cerr << "snoop widget " << widget << " key " << event->keyval << " type: " << event->type
+            << " state " << std::hex << event->state << std::dec
+            << endl;
+#endif
+
+#if KBD_DEBUG
+       if (debug_keyboard) {
+               cerr << "snoop widget " << widget << " key " << event->keyval << " type: " << event->type
+                    << endl;
+       }
+#endif
+
+       if (event->keyval == GDK_Shift_R) {
+               keyval = GDK_Shift_L;
+
+       } else  if (event->keyval == GDK_Control_R) {
+               keyval = GDK_Control_L;
+
+       } else {
+               keyval = event->keyval;
+       }
+
+       if (event->type == GDK_KEY_PRESS) {
+
+               if (find (state.begin(), state.end(), keyval) == state.end()) {
+                       state.push_back (keyval);
+                       sort (state.begin(), state.end());
+
+               } else {
+
+                       /* key is already down. if its also used for release,
+                          prevent auto-repeat events.
+                       */
+
+                       for (map<AccelKey,two_strings,AccelKeyLess>::iterator k = release_keys.begin(); k != release_keys.end(); ++k) {
+
+                               const AccelKey& ak (k->first);
+
+                               if (keyval == ak.get_key() && (Gdk::ModifierType)((event->state & Keyboard::RelevantModifierKeyMask) | Gdk::RELEASE_MASK) == ak.get_mod()) {
+                                       cerr << "Suppress auto repeat\n";
+                                       ret = true;
+                                       break;
+                               }
+                       }
+               }
+
+       } else if (event->type == GDK_KEY_RELEASE) {
+
+               State::iterator i;
+
+               if ((i = find (state.begin(), state.end(), keyval)) != state.end()) {
+                       state.erase (i);
+                       sort (state.begin(), state.end());
+               }
+
+               for (map<AccelKey,two_strings,AccelKeyLess>::iterator k = release_keys.begin(); k != release_keys.end(); ++k) {
+
+                       const AccelKey& ak (k->first);
+                       two_strings ts (k->second);
+
+                       if (keyval == ak.get_key() && (Gdk::ModifierType)((event->state & Keyboard::RelevantModifierKeyMask) | Gdk::RELEASE_MASK) == ak.get_mod()) {
+                               Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (ts.first.c_str(), ts.second.c_str());
+                               if (act) {
+                                       act->activate();
+                                       cerr << "use repeat, suppress other\n";
+                                       ret = true;
+                               }
+                               break;
+                       }
+               }
+       }
+
+       /* Special keys that we want to handle in
+          any dialog, no matter whether it uses
+          the regular set of accelerators or not
+       */
+
+       if (event->type == GDK_KEY_RELEASE && modifier_state_equals (event->state, PrimaryModifier)) {
+               switch (event->keyval) {
+               case GDK_w:
+                       if (current_window) {
+                               current_window->hide ();
+                               current_window = 0;
+                               ret = true;
+                       }
+                       break;
+               }
+       }
+
+       return ret;
+}
+
+bool
+Keyboard::key_is_down (uint32_t keyval)
+{
+       return find (state.begin(), state.end(), keyval) != state.end();
+}
+
+bool
+Keyboard::enter_window (GdkEventCrossing *, Gtk::Window* win)
+{
+       current_window = win;
+       return false;
+}
+
+bool
+Keyboard::leave_window (GdkEventCrossing *ev, Gtk::Window* /*win*/)
+{
+       if (ev) {
+               switch (ev->detail) {
+               case GDK_NOTIFY_INFERIOR:
+                       if (debug_keyboard) {
+                               cerr << "INFERIOR crossing ... out\n";
+                       }
+                       break;
+
+               case GDK_NOTIFY_VIRTUAL:
+                       if (debug_keyboard) {
+                               cerr << "VIRTUAL crossing ... out\n";
+                       }
+                       /* fallthru */
+
+               default:
+                       if (debug_keyboard) {
+                               cerr << "REAL CROSSING ... out\n";
+                               cerr << "clearing current target\n";
+                       }
+                       state.clear ();
+                       current_window = 0;
+               }
+       } else {
+               current_window = 0;
+       }
+
+       return false;
+}
+
+void
+Keyboard::set_edit_button (guint but)
+{
+       edit_but = but;
+}
+
+void
+Keyboard::set_edit_modifier (guint mod)
+{
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~edit_mod);
+       edit_mod = mod;
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | edit_mod);
+}
+
+void
+Keyboard::set_delete_button (guint but)
+{
+       delete_but = but;
+}
+
+void
+Keyboard::set_delete_modifier (guint mod)
+{
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~delete_mod);
+       delete_mod = mod;
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | delete_mod);
+}
+
+void
+Keyboard::set_modifier (uint32_t newval, uint32_t& var)
+{
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~var);
+       var = newval;
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | var);
+}
+
+void
+Keyboard::set_snap_modifier (guint mod)
+{
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~snap_mod);
+       snap_mod = mod;
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | snap_mod);
+}
+
+bool
+Keyboard::is_edit_event (GdkEventButton *ev)
+{
+       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
+               (ev->button == Keyboard::edit_button()) &&
+               ((ev->state & RelevantModifierKeyMask) == Keyboard::edit_modifier());
+}
+
+bool
+Keyboard::is_button2_event (GdkEventButton* ev)
+{
+#ifdef GTKOSX
+       return (ev->button == 2) ||
+               ((ev->button == 1) &&
+                ((ev->state & Keyboard::button2_modifiers) == Keyboard::button2_modifiers));
+#else
+       return ev->button == 2;
+#endif
+}
+
+bool
+Keyboard::is_delete_event (GdkEventButton *ev)
+{
+       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
+               (ev->button == Keyboard::delete_button()) &&
+               ((ev->state & RelevantModifierKeyMask) == Keyboard::delete_modifier());
+}
+
+bool
+Keyboard::is_context_menu_event (GdkEventButton *ev)
+{
+       return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
+               (ev->button == 3) &&
+               ((ev->state & RelevantModifierKeyMask) == 0);
+}
+
+bool
+Keyboard::no_modifiers_active (guint state)
+{
+       return (state & RelevantModifierKeyMask) == 0;
+}
+
+bool
+Keyboard::modifier_state_contains (guint state, ModifierMask mask)
+{
+       return (state & mask) == (guint) mask;
+}
+
+bool
+Keyboard::modifier_state_equals (guint state, ModifierMask mask)
+{
+       return (state & RelevantModifierKeyMask) == (guint) mask;
+}
+
+void
+Keyboard::keybindings_changed ()
+{
+       if (Keyboard::can_save_keybindings) {
+               Keyboard::bindings_changed_after_save_became_legal = true;
+       }
+
+       Keyboard::save_keybindings ();
+}
+
+void
+Keyboard::set_can_save_keybindings (bool yn)
+{
+       can_save_keybindings = yn;
+}
+
+void
+Keyboard::save_keybindings ()
+{
+       if (can_save_keybindings && bindings_changed_after_save_became_legal) {
+               Gtk::AccelMap::save (user_keybindings_path);
+       }
+}
+
+bool
+Keyboard::load_keybindings (string path)
+{
+       try {
+               info << "Loading bindings from " << path << endl;
+
+               Gtk::AccelMap::load (path);
+
+               _current_binding_name = _("Unknown");
+
+               for (map<string,string>::iterator x = binding_files.begin(); x != binding_files.end(); ++x) {
+                       if (path == x->second) {
+                               _current_binding_name = x->first;
+                               break;
+                       }
+               }
+
+
+       } catch (...) {
+               error << string_compose (_("Ardour key bindings file not found at \"%1\" or contains errors."), path)
+                     << endmsg;
+               return false;
+       }
+
+       /* now find all release-driven bindings */
+
+       vector<string> groups;
+       vector<string> names;
+       vector<AccelKey> bindings;
+
+       ActionManager::get_all_actions (groups, names, bindings);
+
+       vector<string>::iterator g;
+       vector<AccelKey>::iterator b;
+       vector<string>::iterator n;
+
+       release_keys.clear ();
+
+       bool show_bindings = (getenv ("ARDOUR_SHOW_BINDINGS") != 0);
+
+       for (n = names.begin(), b = bindings.begin(), g = groups.begin(); n != names.end(); ++n, ++b, ++g) {
+
+               if (show_bindings) {
+
+                       cerr << "Action: " << (*n) << " Group: " << (*g) << " binding = ";
+
+                       if ((*b).get_key() != GDK_VoidSymbol) {
+                               cerr << (*b).get_key() << " w/mod = " << hex << (*b).get_mod() << dec << " = " << (*b).get_abbrev();
+                       } else {
+                               cerr << "unbound";
+                       }
+
+                       cerr << endl;
+               }
+       }
+
+       for (n = names.begin(), b = bindings.begin(), g = groups.begin(); n != names.end(); ++n, ++b, ++g) {
+               if ((*b).get_mod() & Gdk::RELEASE_MASK) {
+                       release_keys.insert (pair<AccelKey,two_strings> (*b, two_strings (*g, *n)));
+               }
+       }
+
+       return true;
+}
+
+
index 8e348602cb74e51defb959b3845be6168a749b46..46babcc7cffbc2f2003e1a5a1ed2cc5c37b7cbd6 100644 (file)
@@ -33,6 +33,7 @@ gtkmm2ext_sources = [
        'grouped_buttons.cc',
        'gtk_ui.cc',
        'idle_adjustment.cc',
+       'keyboard.cc',
        'pixfader.cc',
        'pixscroller.cc',
        'popup.cc',