Start autoscroll in from the right-hand edge of the screen if the editor list is...
[ardour.git] / gtk2_ardour / keyeditor.cc
index b8bfb5677b06f37247ed5e8d5b65b93dd9a6475d..5ebc4178c82af9ca0fdc47b5a8baa12fbe0471de 100644 (file)
@@ -1,3 +1,26 @@
+/*
+    Copyright (C) 2002 Paul Davis
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifdef WAF_BUILD
+#include "gtk2ardour-config.h"
+#endif
+
 #include <map>
 
 #include "ardour/profile.h"
@@ -8,6 +31,8 @@
 #include <gtkmm/accelmap.h>
 #include <gtkmm/uimanager.h>
 
+#include "gtkmm2ext/utils.h"
+
 #include "pbd/strsplit.h"
 #include "pbd/replace_all.h"
 
@@ -25,8 +50,10 @@ using namespace Gtk;
 using namespace Gdk;
 using namespace PBD;
 
+using Gtkmm2ext::Keyboard;
+
 KeyEditor::KeyEditor ()
-       : ArdourDialog (_("Key Bindings"), false)
+       : ArdourWindow (_("Key Bindings"))
        , unbind_button (_("Remove shortcut"))
        , unbind_box (BUTTONBOX_END)
 
@@ -47,14 +74,12 @@ KeyEditor::KeyEditor ()
        view.set_rules_hint (true);
        view.set_name (X_("KeyEditorTree"));
 
-       view.get_selection()->signal_changed().connect (mem_fun (*this, &KeyEditor::action_selected));
+       view.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &KeyEditor::action_selected));
 
        scroller.add (view);
        scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
 
-
-       get_vbox()->set_spacing (6);
-       get_vbox()->pack_start (scroller);
+       add (scroller);
 
        if (!ARDOUR::Profile->get_sae()) {
 
@@ -63,16 +88,14 @@ KeyEditor::KeyEditor ()
                unbind_box.set_spacing (6);
                unbind_box.pack_start (*hint, false, true);
                unbind_box.pack_start (unbind_button, false, false);
-               unbind_button.signal_clicked().connect (mem_fun (*this, &KeyEditor::unbind));
+               unbind_button.signal_clicked().connect (sigc::mem_fun (*this, &KeyEditor::unbind));
 
-               get_vbox()->pack_start (unbind_box, false, false);
+               add (unbind_box);
                unbind_box.show ();
                unbind_button.show ();
 
        }
 
-       get_vbox()->set_border_width (12);
-
        view.show ();
        scroller.show ();
 
@@ -110,13 +133,13 @@ KeyEditor::on_show ()
 {
        populate ();
        view.get_selection()->unselect_all ();
-       ArdourDialog::on_show ();
+       ArdourWindow::on_show ();
 }
 
 void
 KeyEditor::on_unmap ()
 {
-       ArdourDialog::on_unmap ();
+       ArdourWindow::on_unmap ();
 }
 
 void
@@ -171,7 +194,7 @@ KeyEditor::on_key_release_event (GdkEventKey* ev)
                }
 
                cerr << "real lkeyval: " << ev->keyval << endl;
-               possibly_translate_keyval_to_make_legal_accelerator (ev->keyval);
+                Gtkmm2ext::possibly_translate_keyval_to_make_legal_accelerator (ev->keyval);
                cerr << "using keyval = " << ev->keyval << endl;
 
 
@@ -198,21 +221,23 @@ KeyEditor::populate ()
 {
        vector<string> paths;
        vector<string> labels;
+       vector<string> tooltips;
        vector<string> keys;
        vector<AccelKey> bindings;
        typedef std::map<string,TreeIter> NodeMap;
        NodeMap nodes;
        NodeMap::iterator r;
 
-       ActionManager::get_all_actions (labels, paths, keys, bindings);
+       ActionManager::get_all_actions (labels, paths, tooltips, keys, bindings);
 
        vector<string>::iterator k;
        vector<string>::iterator p;
+       vector<string>::iterator t;
        vector<string>::iterator l;
 
        model->clear ();
 
-       for (l = labels.begin(), k = keys.begin(), p = paths.begin(); l != labels.end(); ++k, ++p, ++l) {
+       for (l = labels.begin(), k = keys.begin(), p = paths.begin(), t = tooltips.begin(); l != labels.end(); ++k, ++p, ++t, ++l) {
 
                TreeModel::Row row;
                vector<string> parts;
@@ -247,7 +272,11 @@ KeyEditor::populate ()
 
                /* add this action */
 
-               row[columns.action] = (*l);
+               if (l->empty ()) {
+                       row[columns.action] = *t;
+               } else {
+                       row[columns.action] = *l;
+               }
                row[columns.path] = (*p);
                row[columns.bindable] = true;