2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "pbd/file_utils.h"
|
2008-02-16 17:43:18 -05:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/filesystem_paths.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
#include "ardour_ui.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "keyboard.h"
|
2008-02-16 17:43:18 -05:00
|
|
|
#include "opts.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2009-12-04 17:51:32 -05:00
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2008-02-16 17:43:18 -05:00
|
|
|
using namespace ARDOUR;
|
2009-12-04 17:51:32 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2008-02-16 17:43:18 -05:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
static void
|
2009-07-21 11:55:17 -04:00
|
|
|
accel_map_changed (GtkAccelMap* /*map*/,
|
|
|
|
gchar* /*path*/,
|
|
|
|
guint /*key*/,
|
|
|
|
GdkModifierType /*mod*/,
|
2010-02-08 19:50:24 -05:00
|
|
|
gpointer keyboard)
|
2008-02-16 17:43:18 -05:00
|
|
|
{
|
2010-02-08 19:50:24 -05:00
|
|
|
ArdourKeyboard* me = (ArdourKeyboard*)keyboard;
|
2008-09-10 11:03:30 -04:00
|
|
|
Keyboard::keybindings_changed ();
|
2010-02-08 19:50:24 -05:00
|
|
|
me->ui.setup_tooltips ();
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-04 17:51:32 -05:00
|
|
|
ArdourKeyboard::setup_keybindings ()
|
2008-02-16 17:43:18 -05:00
|
|
|
{
|
|
|
|
using namespace ARDOUR_COMMAND_LINE;
|
2009-12-04 17:51:32 -05:00
|
|
|
string default_bindings = "mnemonic-us.bindings";
|
2008-02-16 17:43:18 -05:00
|
|
|
vector<string> strs;
|
|
|
|
|
|
|
|
binding_files.clear ();
|
|
|
|
|
|
|
|
ARDOUR::find_bindings_files (binding_files);
|
|
|
|
|
|
|
|
/* set up the per-user bindings path */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-02-15 08:48:50 -05:00
|
|
|
sys::path p (user_config_directory ());
|
|
|
|
p /= "ardour.bindings";
|
2008-02-16 17:43:18 -05:00
|
|
|
|
2011-02-15 08:48:50 -05:00
|
|
|
user_keybindings_path = p.to_string ();
|
2008-02-16 17:43:18 -05:00
|
|
|
|
|
|
|
if (Glib::file_test (user_keybindings_path, Glib::FILE_TEST_EXISTS)) {
|
|
|
|
std::pair<string,string> newpair;
|
|
|
|
newpair.first = _("your own");
|
|
|
|
newpair.second = user_keybindings_path;
|
|
|
|
binding_files.insert (newpair);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check to see if they gave a style name ("SAE", "ergonomic") or
|
|
|
|
an actual filename (*.bindings)
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!keybindings_path.empty() && keybindings_path.find (".bindings") == string::npos) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
// just a style name - allow user to
|
2009-10-14 12:10:01 -04:00
|
|
|
// specify the layout type.
|
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
char* layout;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
if ((layout = getenv ("ARDOUR_KEYBOARD_LAYOUT")) != 0 && layout[0] != '\0') {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
/* user-specified keyboard layout */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path += '-';
|
|
|
|
keybindings_path += layout;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* default to US/ANSI - we have to pick something */
|
|
|
|
|
|
|
|
keybindings_path += "-us";
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path += ".bindings";
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2008-02-16 17:43:18 -05:00
|
|
|
|
|
|
|
if (keybindings_path.empty()) {
|
|
|
|
|
|
|
|
/* no path or binding name given: check the user one first */
|
|
|
|
|
|
|
|
if (!Glib::file_test (user_keybindings_path, Glib::FILE_TEST_EXISTS)) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path = "";
|
|
|
|
|
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path = user_keybindings_path;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2008-02-16 17:43:18 -05:00
|
|
|
|
|
|
|
/* if we still don't have a path at this point, use the default */
|
|
|
|
|
|
|
|
if (keybindings_path.empty()) {
|
|
|
|
keybindings_path = default_bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
|
|
|
if (!Glib::path_is_absolute (keybindings_path)) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
/* not absolute - look in the usual places */
|
|
|
|
sys::path keybindings_file;
|
|
|
|
|
|
|
|
SearchPath spath = ardour_search_path() + user_config_directory() + system_config_search_path();
|
|
|
|
|
2008-02-21 14:30:01 -05:00
|
|
|
if ( ! find_file_in_search_path (spath, keybindings_path, keybindings_file)) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
if (keybindings_path == default_bindings) {
|
2010-03-14 22:31:27 -04:00
|
|
|
error << string_compose (_("Default keybindings not found - %1 will be hard to use!"), PROGRAM_NAME) << endmsg;
|
2008-02-16 17:43:18 -05:00
|
|
|
return;
|
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
warning << string_compose (_("Key bindings file \"%1\" not found. Default bindings used instead"),
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path)
|
|
|
|
<< endmsg;
|
|
|
|
keybindings_path = default_bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* use it */
|
|
|
|
|
2008-02-21 14:30:01 -05:00
|
|
|
keybindings_path = keybindings_file.to_string();
|
2008-02-16 17:43:18 -05:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
/* path is absolute already */
|
|
|
|
|
|
|
|
if (!Glib::file_test (keybindings_path, Glib::FILE_TEST_EXISTS)) {
|
|
|
|
if (keybindings_path == default_bindings) {
|
2010-03-14 22:31:27 -04:00
|
|
|
error << string_compose (_("Default keybindings not found - %1 will be hard to use!"), PROGRAM_NAME) << endmsg;
|
2008-02-16 17:43:18 -05:00
|
|
|
return;
|
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
warning << string_compose (_("Key bindings file \"%1\" not found. Default bindings used instead"),
|
2008-02-16 17:43:18 -05:00
|
|
|
keybindings_path)
|
|
|
|
<< endmsg;
|
|
|
|
keybindings_path = default_bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
load_keybindings (keybindings_path);
|
|
|
|
|
|
|
|
/* catch changes */
|
|
|
|
|
|
|
|
GtkAccelMap* accelmap = gtk_accel_map_get();
|
2010-02-08 19:50:24 -05:00
|
|
|
g_signal_connect (accelmap, "changed", (GCallback) accel_map_changed, this);
|
2008-02-16 17:43:18 -05:00
|
|
|
}
|
|
|
|
|
2009-12-04 17:51:32 -05:00
|
|
|
Selection::Operation
|
|
|
|
ArdourKeyboard::selection_type (guint state)
|
2008-02-16 17:43:18 -05:00
|
|
|
{
|
2009-12-04 17:51:32 -05:00
|
|
|
/* note that there is no modifier for "Add" */
|
2009-04-15 14:04:23 -04:00
|
|
|
|
2009-12-04 17:51:32 -05:00
|
|
|
if (modifier_state_equals (state, RangeSelectModifier)) {
|
|
|
|
return Selection::Extend;
|
|
|
|
} else if (modifier_state_equals (state, PrimaryModifier)) {
|
|
|
|
return Selection::Toggle;
|
|
|
|
} else {
|
|
|
|
return Selection::Set;
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2008-02-16 17:43:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|