enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / keyboard.cc
index 8a7c811c3c2dc1e6518ac59f57ea01289d21e97e..6341071451f94d3b5e99b72169e8405652ff53e2 100644 (file)
@@ -20,6 +20,7 @@
 #include "pbd/convert.h"
 #include "pbd/error.h"
 #include "pbd/file_utils.h"
+#include "pbd/basename.h"
 
 #include "ardour/filesystem_paths.h"
 
@@ -27,8 +28,9 @@
 #include "public_editor.h"
 #include "keyboard.h"
 #include "opts.h"
+#include "ui_config.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace Gtk;
@@ -36,18 +38,11 @@ using namespace PBD;
 using namespace ARDOUR;
 using Gtkmm2ext::Keyboard;
 
-static void
-accel_map_changed (GtkAccelMap* /*map*/,
-                  gchar* /*path*/,
-                  guint /*key*/,
-                  GdkModifierType /*mod*/,
-                  gpointer keyboard)
-{
-       ArdourKeyboard* me = (ArdourKeyboard*)keyboard;
-       Keyboard::keybindings_changed ();
-       me->ui.setup_tooltips ();
-}
-
+#ifdef __APPLE__
+guint ArdourKeyboard::constraint_mod = Keyboard::PrimaryModifier;
+#else
+guint ArdourKeyboard::constraint_mod = Keyboard::SecondaryModifier;
+#endif
 guint ArdourKeyboard::trim_contents_mod = Keyboard::PrimaryModifier;
 guint ArdourKeyboard::trim_overlap_mod = Keyboard::TertiaryModifier;
 guint ArdourKeyboard::trim_anchored_mod = Keyboard::TertiaryModifier;
@@ -55,22 +50,43 @@ guint ArdourKeyboard::fine_adjust_mod = Keyboard::SecondaryModifier;
 guint ArdourKeyboard::push_points_mod = Keyboard::PrimaryModifier;
 guint ArdourKeyboard::note_size_relative_mod = Keyboard::PrimaryModifier;
 
+void
+ArdourKeyboard::find_bindings_files (map<string,string>& files)
+{
+       vector<std::string> found;
+       Searchpath spath = ardour_config_search_path();
+
+       find_files_matching_pattern (found, spath, string_compose ("*%1", Keyboard::binding_filename_suffix));
+
+       if (found.empty()) {
+               return;
+       }
+
+       for (vector<std::string>::iterator x = found.begin(); x != found.end(); ++x) {
+               std::string path(*x);
+               pair<string,string> namepath;
+               namepath.second = path;
+               namepath.first = PBD::basename_nosuffix (path);
+               files.insert (namepath);
+       }
+}
+
 void
 ArdourKeyboard::setup_keybindings ()
 {
        using namespace ARDOUR_COMMAND_LINE;
-       string default_bindings = "mnemonic-us.bindings";
+       string default_bindings = string_compose ("%1%2", UIConfiguration::instance().get_default_bindings(), Keyboard::binding_filename_suffix);
        vector<string> strs;
 
        binding_files.clear ();
 
-       ARDOUR::find_bindings_files (binding_files);
+       find_bindings_files (binding_files);
 
        /* set up the per-user bindings path */
 
-       string lowercase_program_name = downcase (PROGRAM_NAME);
+       string lowercase_program_name = downcase (string(PROGRAM_NAME));
 
-       user_keybindings_path = Glib::build_filename (user_config_directory(), lowercase_program_name + ".bindings");
+       user_keybindings_path = Glib::build_filename (user_config_directory(), lowercase_program_name + binding_filename_suffix);
 
        if (Glib::file_test (user_keybindings_path, Glib::FILE_TEST_EXISTS)) {
                std::pair<string,string> newpair;
@@ -79,11 +95,10 @@ ArdourKeyboard::setup_keybindings ()
                binding_files.insert (newpair);
        }
 
-       /* check to see if they gave a style name ("SAE", "ergonomic") or
-          an actual filename (*.bindings)
+       /* check to see if they gave a style name ("ergonomic") or an actual filename (*.bindings)
        */
 
-       if (!keybindings_path.empty() && keybindings_path.find (".bindings") == string::npos) {
+       if (!keybindings_path.empty() && keybindings_path.find (binding_filename_suffix) == string::npos) {
 
                // just a style name - allow user to
                // specify the layout type.
@@ -104,7 +119,7 @@ ArdourKeyboard::setup_keybindings ()
                        keybindings_path += "-us";
                }
 
-               keybindings_path += ".bindings";
+               keybindings_path += binding_filename_suffix;
        }
 
        if (keybindings_path.empty()) {
@@ -127,6 +142,8 @@ ArdourKeyboard::setup_keybindings ()
                keybindings_path = default_bindings;
        }
 
+       cerr << "KP is " << keybindings_path << endl;
+
        while (true) {
 
                if (!Glib::path_is_absolute (keybindings_path)) {
@@ -134,7 +151,7 @@ ArdourKeyboard::setup_keybindings ()
                        /* not absolute - look in the usual places */
                        std::string keybindings_file;
 
-                       if ( ! find_file (ardour_config_search_path(), keybindings_path, keybindings_file)) {
+                       if (!find_file (ardour_config_search_path(), keybindings_path, keybindings_file)) {
 
                                if (keybindings_path == default_bindings) {
                                        error << string_compose (_("Default keybindings not found - %1 will be hard to use!"), PROGRAM_NAME) << endmsg;
@@ -173,12 +190,14 @@ ArdourKeyboard::setup_keybindings ()
                }
        }
 
+       info << string_compose (_("Loading keybindings from %1"), keybindings_path) << endmsg;
+
        load_keybindings (keybindings_path);
 
-       /* catch changes */
+       /* catch changes made via some GTK mechanism */
 
-       GtkAccelMap* accelmap = gtk_accel_map_get();
-       g_signal_connect (accelmap, "changed", (GCallback) accel_map_changed, this);
+       // GtkAccelMap* accelmap = gtk_accel_map_get();
+       // g_signal_connect (accelmap, "changed", (GCallback) accel_map_changed, this);
 }
 
 XMLNode&
@@ -187,6 +206,8 @@ ArdourKeyboard::get_state (void)
        XMLNode* node = &Keyboard::get_state ();
        char buf[32];
 
+       snprintf (buf, sizeof (buf), "%d", constraint_mod);
+       node->add_property ("constraint-modifier", buf);
        snprintf (buf, sizeof (buf), "%d", trim_contents_mod);
        node->add_property ("trim-contents-modifier", buf);
        snprintf (buf, sizeof (buf), "%d", trim_overlap_mod);
@@ -206,7 +227,11 @@ ArdourKeyboard::get_state (void)
 int
 ArdourKeyboard::set_state (const XMLNode& node, int version)
 {
-       const XMLProperty* prop;
+       XMLProperty const * prop;
+
+       if ((prop = node.property ("constraint-modifier")) != 0) {
+               sscanf (prop->value().c_str(), "%d", &constraint_mod);
+       }
 
        if ((prop = node.property ("trim-contents-modifier")) != 0) {
                sscanf (prop->value().c_str(), "%d", &trim_contents_mod);
@@ -235,24 +260,35 @@ ArdourKeyboard::set_state (const XMLNode& node, int version)
        return Keyboard::set_state (node, version);
 }
 
+/* Snap and snap delta modifiers may contain each other, so we use the
+ * following two methods to sort that out:
+ */
 bool
 ArdourKeyboard::indicates_snap (guint state)
 {
-       const bool contains_s = Keyboard::modifier_state_contains (state, Keyboard::snap_modifier());
-       const bool contains_d = Keyboard::modifier_state_contains (state, Keyboard::snap_delta_modifier());
-       const bool equals_d = Keyboard::modifier_state_equals (state, Keyboard::snap_delta_modifier());
+       const bool contains_s = Keyboard::modifier_state_contains (state, Keyboard::snap_modifier ());
+       const bool contains_d = Keyboard::modifier_state_contains (state, Keyboard::snap_delta_modifier ());
+       const bool s_contains_d = Keyboard::modifier_state_contains (Keyboard::snap_modifier (), Keyboard::snap_delta_modifier ());
 
-       return  (contains_s && ((contains_d && !equals_d) || !contains_d));
+       return  (contains_s && ((contains_d && s_contains_d) || !contains_d));
 }
 
 bool
 ArdourKeyboard::indicates_snap_delta (guint state)
 {
-       const bool contains_d = Keyboard::modifier_state_contains (state, Keyboard::snap_delta_modifier());
-       const bool contains_s = Keyboard::modifier_state_contains (state, Keyboard::snap_modifier());
-       const bool equals_s = Keyboard::modifier_state_equals (state, Keyboard::snap_modifier());
+       const bool contains_d = Keyboard::modifier_state_contains (state, Keyboard::snap_delta_modifier ());
+       const bool contains_s = Keyboard::modifier_state_contains (state, Keyboard::snap_modifier ());
+       const bool d_contains_s = Keyboard::modifier_state_contains (Keyboard::snap_delta_modifier (), Keyboard::snap_modifier ());
+
+       return (contains_d && ((contains_s && d_contains_s) || !contains_s));
+}
 
-       return (contains_d && ((contains_s && !equals_s) || !contains_s));
+void
+ArdourKeyboard::set_constraint_modifier (guint mod)
+{
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~constraint_mod);
+       constraint_mod = mod;
+       RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | constraint_mod);
 }
 
 void