fe7303b290295eb8bdc4d42560ebbaab2ba21c58
[ardour.git] / libs / gtkmm2ext / keyboard.cc
1 /*
2     Copyright (C) 2001 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <vector>
21
22 #include <algorithm>
23 #include <cerrno>
24 #include <ctype.h>
25
26 #include "pbd/gstdio_compat.h"
27
28 #include <gtkmm/widget.h>
29 #include <gtkmm/window.h>
30 #include <gtkmm/accelmap.h>
31 #include <gdk/gdkkeysyms.h>
32
33 #include "pbd/error.h"
34 #include "pbd/convert.h"
35 #include "pbd/file_utils.h"
36 #include "pbd/search_path.h"
37 #include "pbd/xml++.h"
38 #include "pbd/debug.h"
39 #include "pbd/unwind.h"
40
41 #include "gtkmm2ext/actions.h"
42 #include "gtkmm2ext/bindings.h"
43 #include "gtkmm2ext/keyboard.h"
44 #include "gtkmm2ext/debug.h"
45 #include "gtkmm2ext/utils.h"
46
47 #include "pbd/i18n.h"
48
49 using namespace PBD;
50 using namespace Gtk;
51 using namespace Gtkmm2ext;
52 using namespace std;
53
54 guint Keyboard::edit_but = 3;
55 guint Keyboard::edit_mod = GDK_CONTROL_MASK;
56 guint Keyboard::delete_but = 3;
57 guint Keyboard::delete_mod = GDK_SHIFT_MASK;
58 guint Keyboard::insert_note_but = 1;
59 guint Keyboard::insert_note_mod = GDK_CONTROL_MASK;
60
61 #ifdef __APPLE__
62
63 uint Keyboard::PrimaryModifier = GDK_MOD2_MASK;   // Command
64 guint Keyboard::SecondaryModifier = GDK_CONTROL_MASK; // Control
65 guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK; // Shift
66 guint Keyboard::Level4Modifier = GDK_MOD1_MASK; // Alt/Option
67 guint Keyboard::CopyModifier = GDK_CONTROL_MASK;      // Control
68 guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
69 guint Keyboard::button2_modifiers = Keyboard::SecondaryModifier|Keyboard::Level4Modifier;
70
71 const char* Keyboard::primary_modifier_name() { return _("Command"); }
72 const char* Keyboard::secondary_modifier_name() { return _("Control"); }
73 const char* Keyboard::tertiary_modifier_name() { return S_("Key|Shift"); }
74 const char* Keyboard::level4_modifier_name() { return _("Option"); }
75
76 const char* Keyboard::primary_modifier_short_name() { return _("Cmd"); }
77 const char* Keyboard::secondary_modifier_short_name() { return _("Ctrl"); }
78 const char* Keyboard::tertiary_modifier_short_name() { return S_("Key|Shift"); }
79 const char* Keyboard::level4_modifier_short_name() { return _("Opt"); }
80
81 guint Keyboard::snap_mod = Keyboard::Level4Modifier|Keyboard::TertiaryModifier; // XXX this is probably completely wrong
82 guint Keyboard::snap_delta_mod = Keyboard::Level4Modifier;
83
84 #else
85
86 guint Keyboard::PrimaryModifier = GDK_CONTROL_MASK; // Control
87 guint Keyboard::SecondaryModifier = GDK_MOD1_MASK;  // Alt/Option
88 guint Keyboard::TertiaryModifier = GDK_SHIFT_MASK;  // Shift
89 guint Keyboard::Level4Modifier = GDK_MOD4_MASK;     // Mod4/Windows
90 guint Keyboard::CopyModifier = GDK_CONTROL_MASK;
91 guint Keyboard::RangeSelectModifier = GDK_SHIFT_MASK;
92 guint Keyboard::button2_modifiers = 0; /* not used */
93
94 const char* Keyboard::primary_modifier_name() { return _("Control"); }
95 const char* Keyboard::secondary_modifier_name() { return _("Alt"); }
96 const char* Keyboard::tertiary_modifier_name() { return S_("Key|Shift"); }
97 const char* Keyboard::level4_modifier_name() { return _("Windows"); }
98
99 const char* Keyboard::primary_modifier_short_name() { return _("Ctrl"); }
100 const char* Keyboard::secondary_modifier_short_name() { return _("Alt"); }
101 const char* Keyboard::tertiary_modifier_short_name() { return S_("Key|Shift"); }
102 const char* Keyboard::level4_modifier_short_name() { return _("Win"); }
103
104 guint Keyboard::snap_mod = Keyboard::SecondaryModifier;
105 guint Keyboard::snap_delta_mod = Keyboard::SecondaryModifier|Keyboard::Level4Modifier;
106
107 #endif
108
109 guint Keyboard::GainFineScaleModifier = Keyboard::PrimaryModifier;
110 guint Keyboard::GainExtraFineScaleModifier = Keyboard::SecondaryModifier;
111
112 guint Keyboard::ScrollZoomVerticalModifier = Keyboard::SecondaryModifier;
113 guint Keyboard::ScrollZoomHorizontalModifier = Keyboard::PrimaryModifier;
114 guint Keyboard::ScrollHorizontalModifier = Keyboard::TertiaryModifier;
115
116 Keyboard*    Keyboard::_the_keyboard = 0;
117 Gtk::Window* Keyboard::current_window = 0;
118 bool         Keyboard::_some_magic_widget_has_focus = false;
119
120 std::string Keyboard::user_keybindings_path;
121 bool Keyboard::can_save_keybindings = false;
122 bool Keyboard::bindings_changed_after_save_became_legal = false;
123 map<string,string> Keyboard::binding_files;
124 string Keyboard::_current_binding_name;
125 string Keyboard::binding_filename_suffix = X_(".keys");
126 Gtk::Window* Keyboard::pre_dialog_active_window = 0;
127
128 /* set this to initially contain the modifiers we care about, then track changes in ::set_edit_modifier() etc. */
129 GdkModifierType Keyboard::RelevantModifierKeyMask;
130 sigc::signal0<void> Keyboard::RelevantModifierKeysChanged;
131
132 void
133 Keyboard::magic_widget_grab_focus ()
134 {
135         _some_magic_widget_has_focus = true;
136 }
137
138 void
139 Keyboard::magic_widget_drop_focus ()
140 {
141         _some_magic_widget_has_focus = false;
142 }
143
144 bool
145 Keyboard::some_magic_widget_has_focus ()
146 {
147         return _some_magic_widget_has_focus;
148 }
149
150 Keyboard::Keyboard ()
151 {
152         if (_the_keyboard == 0) {
153                 _the_keyboard = this;
154                 _current_binding_name = _("Unknown");
155         }
156
157         reset_relevant_modifier_key_mask();
158
159         snooper_id = gtk_key_snooper_install (_snooper, (gpointer) this);
160 }
161
162 Keyboard::~Keyboard ()
163 {
164         gtk_key_snooper_remove (snooper_id);
165 }
166
167 XMLNode&
168 Keyboard::get_state (void)
169 {
170         XMLNode* node = new XMLNode ("Keyboard");
171         char buf[32];
172
173         snprintf (buf, sizeof (buf), "%d", CopyModifier);
174         node->add_property ("copy-modifier", buf);
175         snprintf (buf, sizeof (buf), "%d", edit_but);
176         node->add_property ("edit-button", buf);
177         snprintf (buf, sizeof (buf), "%d", edit_mod);
178         node->add_property ("edit-modifier", buf);
179         snprintf (buf, sizeof (buf), "%d", delete_but);
180         node->add_property ("delete-button", buf);
181         snprintf (buf, sizeof (buf), "%d", delete_mod);
182         node->add_property ("delete-modifier", buf);
183         snprintf (buf, sizeof (buf), "%d", snap_mod);
184         node->add_property ("snap-modifier", buf);
185         snprintf (buf, sizeof (buf), "%d", snap_delta_mod);
186         node->add_property ("snap-delta-modifier", buf);
187         snprintf (buf, sizeof (buf), "%d", insert_note_but);
188         node->add_property ("insert-note-button", buf);
189         snprintf (buf, sizeof (buf), "%d", insert_note_mod);
190         node->add_property ("insert-note-modifier", buf);
191
192         return *node;
193 }
194
195 int
196 Keyboard::set_state (const XMLNode& node, int /*version*/)
197 {
198         XMLProperty const * prop;
199
200         if ((prop = node.property ("copy-modifier")) != 0) {
201                 sscanf (prop->value().c_str(), "%d", &CopyModifier);
202         }
203
204         if ((prop = node.property ("edit-button")) != 0) {
205                 sscanf (prop->value().c_str(), "%d", &edit_but);
206         }
207
208         if ((prop = node.property ("edit-modifier")) != 0) {
209                 sscanf (prop->value().c_str(), "%d", &edit_mod);
210         }
211
212         if ((prop = node.property ("delete-button")) != 0) {
213                 sscanf (prop->value().c_str(), "%d", &delete_but);
214         }
215
216         if ((prop = node.property ("delete-modifier")) != 0) {
217                 sscanf (prop->value().c_str(), "%d", &delete_mod);
218         }
219
220         if ((prop = node.property ("snap-modifier")) != 0) {
221                 sscanf (prop->value().c_str(), "%d", &snap_mod);
222         }
223
224         if ((prop = node.property ("snap-delta-modifier")) != 0) {
225                 sscanf (prop->value().c_str(), "%d", &snap_delta_mod);
226         }
227
228         if ((prop = node.property ("insert-note-button")) != 0) {
229                 sscanf (prop->value().c_str(), "%d", &insert_note_but);
230         }
231
232         if ((prop = node.property ("insert-note-modifier")) != 0) {
233                 sscanf (prop->value().c_str(), "%d", &insert_note_mod);
234         }
235
236         return 0;
237 }
238
239 gint
240 Keyboard::_snooper (GtkWidget *widget, GdkEventKey *event, gpointer data)
241 {
242         return ((Keyboard *) data)->snooper (widget, event);
243 }
244
245
246 gint
247 Keyboard::snooper (GtkWidget *widget, GdkEventKey *event)
248 {
249         uint32_t keyval;
250         bool ret = false;
251
252         DEBUG_TRACE (
253                 DEBUG::Keyboard,
254                 string_compose (
255                         "Snoop widget %1 name: [%6] key %2 [%8] type %3 state %4 [%7] magic %5\n",
256                         widget, event->keyval, event->type, event->state, _some_magic_widget_has_focus,
257                         gtk_widget_get_name (widget), show_gdk_event_state (event->state), gdk_keyval_name (event->keyval)
258                         )
259                 );
260
261         if (event->keyval == GDK_Shift_R) {
262                 keyval = GDK_Shift_L;
263
264         } else if (event->keyval == GDK_Control_R) {
265                 keyval = GDK_Control_L;
266
267         } else {
268                 keyval = event->keyval;
269         }
270
271         if (event->state & ScrollZoomVerticalModifier) {
272                 /* There is a special and rather hacky situation in Editor which makes
273                    it useful to know when the modifier key for vertical zoom has been
274                    released, so emit a signal here (see Editor::_stepping_axis_view).
275                    Note that the state bit for the modifier key is set for the key-up
276                    event when the modifier is released, but not the key-down when it
277                    is pressed, so we get here on key-up, which is what we want.
278                 */
279                 ZoomVerticalModifierReleased (); /* EMIT SIGNAL */
280         }
281
282         if (event->type == GDK_KEY_PRESS) {
283
284                 if (find (state.begin(), state.end(), keyval) == state.end()) {
285                         state.push_back (keyval);
286                         sort (state.begin(), state.end());
287
288                 } else {
289
290                         /* key is already down. if its also used for release,
291                            prevent auto-repeat events.
292                         */
293
294 #if 0
295                         /* August 2015: we don't have any release bindings
296                          */
297
298                         for (map<AccelKey,two_strings,AccelKeyLess>::iterator k = release_keys.begin(); k != release_keys.end(); ++k) {
299
300                                 const AccelKey& ak (k->first);
301
302                                 if (keyval == ak.get_key() && (Gdk::ModifierType)((event->state & Keyboard::RelevantModifierKeyMask) | Gdk::RELEASE_MASK) == ak.get_mod()) {
303                                         DEBUG_TRACE (DEBUG::Keyboard, "Suppress auto repeat\n");
304                                         ret = true;
305                                         break;
306                                 }
307                         }
308 #endif
309                 }
310         }
311
312         /* Special keys that we want to handle in
313            any dialog, no matter whether it uses
314            the regular set of accelerators or not
315         */
316
317         if (event->type == GDK_KEY_RELEASE && modifier_state_equals (event->state, PrimaryModifier)) {
318                 switch (event->keyval) {
319                 case GDK_w:
320                         close_current_dialog ();
321                         ret = true;
322                         break;
323                 }
324         }
325
326         DEBUG_TRACE (DEBUG::Keyboard, string_compose ("snooper returns %1\n", ret));
327
328         return ret;
329 }
330
331 void
332 Keyboard::reset_relevant_modifier_key_mask ()
333 {
334         RelevantModifierKeyMask = (GdkModifierType) gtk_accelerator_get_default_mod_mask ();
335
336         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | PrimaryModifier);
337         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | SecondaryModifier);
338         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | TertiaryModifier);
339         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | Level4Modifier);
340         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | CopyModifier);
341         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask | RangeSelectModifier);
342
343         gtk_accelerator_set_default_mod_mask (RelevantModifierKeyMask);
344
345 #ifdef __APPLE__
346         /* Remove SUPER,HYPER,META.
347          *
348          * GTK on OS X adds META when Command is pressed for various indefensible reasons, since
349          * it also uses MOD2 to indicate Command. Our code assumes that each
350          * modifier (Primary, Secondary etc.) is represented by a single bit in
351          * the modifier mask, but GTK's (STUPID) design uses two (MOD2 + META)
352          * to represent the Command key. Some discussion about this is here:
353          * https://bugzilla.gnome.org/show_bug.cgi?id=692597
354          *
355          * We cannot do this until AFTER we told GTK what the default modifier
356          * was, because otherwise it will fail to recognize MOD2-META-<key> as
357          * an accelerator.
358          *
359          * Note that in the tabbed branch, we no longer use GTK accelerators
360          * for functional purposes, so this is as critical for that branch.
361          */
362
363         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~GDK_SUPER_MASK);
364         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~GDK_HYPER_MASK);
365         RelevantModifierKeyMask = GdkModifierType (RelevantModifierKeyMask & ~GDK_META_MASK);
366 #endif
367         RelevantModifierKeysChanged(); /* EMIT SIGNAL */
368 }
369
370 void
371 Keyboard::close_current_dialog ()
372 {
373         if (current_window) {
374                 current_window->hide ();
375                 current_window = 0;
376
377                 if (pre_dialog_active_window) {
378                         pre_dialog_active_window->present ();
379                         pre_dialog_active_window = 0;
380                 }
381         }
382 }
383
384 bool
385 Keyboard::catch_user_event_for_pre_dialog_focus (GdkEvent* ev, Gtk::Window* w)
386 {
387         switch (ev->type) {
388         case GDK_BUTTON_PRESS:
389         case GDK_BUTTON_RELEASE:
390         case GDK_KEY_PRESS:
391         case GDK_KEY_RELEASE:
392                 pre_dialog_active_window = w;
393                 break;
394
395         case GDK_FOCUS_CHANGE:
396                 if (ev->focus_change.in) {
397                         pre_dialog_active_window = w;
398                 }
399                 break;
400
401         default:
402                 break;
403         }
404         return false;
405 }
406
407 bool
408 Keyboard::key_is_down (uint32_t keyval)
409 {
410         return find (state.begin(), state.end(), keyval) != state.end();
411 }
412
413 bool
414 Keyboard::enter_window (GdkEventCrossing *, Gtk::Window* win)
415 {
416         current_window = win;
417         DEBUG_TRACE (DEBUG::Keyboard, string_compose ("Entering window, title = %1\n", win->get_title()));
418         return false;
419 }
420
421 bool
422 Keyboard::leave_window (GdkEventCrossing *ev, Gtk::Window* /*win*/)
423 {
424         if (ev) {
425                 switch (ev->detail) {
426                 case GDK_NOTIFY_INFERIOR:
427                         DEBUG_TRACE (DEBUG::Keyboard, "INFERIOR crossing ... out\n");
428                         break;
429
430                 case GDK_NOTIFY_VIRTUAL:
431                         DEBUG_TRACE (DEBUG::Keyboard, "VIRTUAL crossing ... out\n");
432                         /* fallthru */
433
434                 default:
435                         DEBUG_TRACE (DEBUG::Keyboard, "REAL crossing ... out\n");
436                         DEBUG_TRACE (DEBUG::Keyboard, "Clearing current target\n");
437                         state.clear ();
438                         current_window = 0;
439                 }
440         } else {
441                 DEBUG_TRACE (DEBUG::Keyboard, "LEAVE window without event\n");
442                 current_window = 0;
443         }
444
445         return false;
446 }
447
448 bool
449 Keyboard::focus_in_window (GdkEventFocus *, Gtk::Window* win)
450 {
451         current_window = win;
452         DEBUG_TRACE (DEBUG::Keyboard, string_compose ("Focusing in window, title = %1\n", win->get_title()));
453         return false;
454 }
455
456 bool
457 Keyboard::focus_out_window (GdkEventFocus * ev, Gtk::Window* win)
458 {
459         if (ev) {
460                 state.clear ();
461                 current_window = 0;
462         }  else {
463                 if (win == current_window) {
464                         current_window = 0;
465                 }
466         }
467
468         DEBUG_TRACE (DEBUG::Keyboard, string_compose ("Foucusing out window, title = %1\n", win->get_title()));
469
470         return false;
471 }
472
473 void
474 Keyboard::set_edit_button (guint but)
475 {
476         edit_but = but;
477 }
478
479 void
480 Keyboard::set_edit_modifier (guint mod)
481 {
482         edit_mod = mod;
483         reset_relevant_modifier_key_mask();
484 }
485
486 void
487 Keyboard::set_delete_button (guint but)
488 {
489         delete_but = but;
490 }
491
492 void
493 Keyboard::set_delete_modifier (guint mod)
494 {
495         delete_mod = mod;
496         reset_relevant_modifier_key_mask();
497 }
498
499 void
500 Keyboard::set_insert_note_button (guint but)
501 {
502         insert_note_but = but;
503 }
504
505 void
506 Keyboard::set_insert_note_modifier (guint mod)
507 {
508         insert_note_mod = mod;
509         reset_relevant_modifier_key_mask();
510 }
511
512
513 void
514 Keyboard::set_modifier (uint32_t newval, uint32_t& var)
515 {
516         var = newval;
517         reset_relevant_modifier_key_mask();
518 }
519
520 void
521 Keyboard::set_snap_modifier (guint mod)
522 {
523         snap_mod = mod;
524         reset_relevant_modifier_key_mask();
525 }
526
527 void
528 Keyboard::set_snap_delta_modifier (guint mod)
529 {
530         snap_delta_mod = mod;
531         reset_relevant_modifier_key_mask();
532 }
533
534 bool
535 Keyboard::is_edit_event (GdkEventButton *ev)
536 {
537         return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
538                 (ev->button == Keyboard::edit_button()) &&
539                 ((ev->state & RelevantModifierKeyMask) == Keyboard::edit_modifier());
540 }
541
542 bool
543 Keyboard::is_insert_note_event (GdkEventButton *ev)
544 {
545         return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
546                 (ev->button == Keyboard::insert_note_button()) &&
547                 ((ev->state & RelevantModifierKeyMask) == Keyboard::insert_note_modifier());
548 }
549
550 bool
551 Keyboard::is_button2_event (GdkEventButton* ev)
552 {
553 #ifdef __APPLE__
554         return (ev->button == 2) ||
555                 ((ev->button == 1) &&
556                  ((ev->state & Keyboard::button2_modifiers) == Keyboard::button2_modifiers));
557 #else
558         return ev->button == 2;
559 #endif
560 }
561
562 bool
563 Keyboard::is_delete_event (GdkEventButton *ev)
564 {
565         return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
566                 (ev->button == Keyboard::delete_button()) &&
567                 ((ev->state & RelevantModifierKeyMask) == Keyboard::delete_modifier());
568 }
569
570 bool
571 Keyboard::is_context_menu_event (GdkEventButton *ev)
572 {
573         return (ev->type == GDK_BUTTON_PRESS || ev->type == GDK_BUTTON_RELEASE) &&
574                 (ev->button == 3) &&
575                 ((ev->state & RelevantModifierKeyMask) == 0);
576 }
577
578 bool
579 Keyboard::no_modifiers_active (guint state)
580 {
581         return (state & RelevantModifierKeyMask) == 0;
582 }
583
584 bool
585 Keyboard::modifier_state_contains (guint state, ModifierMask mask)
586 {
587         return (state & mask) == (guint) mask;
588 }
589
590 bool
591 Keyboard::modifier_state_equals (guint state, ModifierMask mask)
592 {
593         return (state & RelevantModifierKeyMask) == (guint) mask;
594 }
595
596 void
597 Keyboard::keybindings_changed ()
598 {
599         if (Keyboard::can_save_keybindings) {
600                 Keyboard::bindings_changed_after_save_became_legal = true;
601         }
602
603         Keyboard::save_keybindings ();
604 }
605
606 void
607 Keyboard::set_can_save_keybindings (bool yn)
608 {
609         can_save_keybindings = yn;
610 }
611
612 void
613 Keyboard::save_keybindings ()
614 {
615         if (can_save_keybindings && bindings_changed_after_save_became_legal) {
616                 /* Call to specific implementation to save bindings to path */
617                 store_keybindings (user_keybindings_path);
618         }
619 }
620
621 bool
622 Keyboard::load_keybindings (string const & path)
623 {
624         try {
625                 info << "Loading bindings from " << path << endl;
626
627                 /* Call to specific implementation to load bindings from path */
628                 read_keybindings (path);
629
630                 _current_binding_name = _("Unknown");
631
632                 for (map<string,string>::iterator x = binding_files.begin(); x != binding_files.end(); ++x) {
633                         if (path == x->second) {
634                                 _current_binding_name = x->first;
635                                 break;
636                         }
637                 }
638
639
640         } catch (...) {
641                 error << string_compose (_("key bindings file not found at \"%2\" or contains errors."), path)
642                       << endmsg;
643                 return false;
644         }
645
646         return true;
647 }
648
649 int
650 Keyboard::read_keybindings (string const & path)
651 {
652         XMLTree tree;
653
654         if (!tree.read (path.c_str())) {
655                 return -1;
656         }
657
658         /* toplevel node is "BindingSet; children are "Bindings" */
659
660         XMLNodeList const& children = tree.root()->children();
661
662         for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
663                 XMLNode const * child = *i;
664                 if (child->name() == X_("Bindings")) {
665                         XMLProperty const* name = child->property (X_("name"));
666                         if (!name) {
667                                 warning << _("Keyboard binding found without a name") << endmsg;
668                                 continue;
669                         }
670
671                         Bindings* b = new Bindings (name->value());
672                         b->load (**i);
673                 }
674         }
675
676         return 0;
677 }
678
679 int
680 Keyboard::store_keybindings (string const & path)
681 {
682         XMLNode* node = new XMLNode (X_("BindingSet"));
683         XMLNode* bnode;
684         int ret = 0;
685
686         for (list<Bindings*>::const_iterator b = Bindings::bindings.begin(); b != Bindings::bindings.end(); ++b) {
687                 bnode = new XMLNode (X_("Bindings"));
688                 bnode->add_property (X_("name"), (*b)->name());
689                 (*b)->save (*bnode);
690                 node->add_child_nocopy (*bnode);
691         }
692
693         XMLTree tree;
694         tree.set_root (node); /* tree now owns root and will delete it */
695
696         if (!tree.write (path)) {
697                 error << string_compose (_("Cannot save key bindings to %1"), path) << endmsg;
698                 ret = -1;
699         }
700
701         return ret;
702 }
703
704 int
705 Keyboard::reset_bindings ()
706 {
707         if (Glib::file_test (user_keybindings_path,  Glib::FILE_TEST_EXISTS)) {
708
709                 string new_path = user_keybindings_path;
710                 new_path += ".old";
711
712                 if (::g_rename (user_keybindings_path.c_str(), new_path.c_str())) {
713                         error << string_compose (_("Cannot rename your own keybinding file (%1)"), strerror (errno)) << endmsg;
714                         return -1;
715                 }
716         }
717
718         {
719                 PBD::Unwinder<bool> uw (can_save_keybindings, false);
720                 setup_keybindings ();
721                 Bindings::associate_all ();
722         }
723
724         return 0;
725 }