changeset 254:79ba5b50a40e

Add selection strip mouse actions to key and mouse reference
author Chris Cannam
date Wed, 02 Apr 2014 09:47:27 +0100
parents b6b2f69c516d
children 72622fcdd12c
files src/MainWindow.cpp
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/MainWindow.cpp	Wed Apr 02 09:18:45 2014 +0100
+++ b/src/MainWindow.cpp	Wed Apr 02 09:47:27 2014 +0100
@@ -489,6 +489,18 @@
     CommandHistory::getInstance()->registerMenu(menu);
     menu->addSeparator();
 
+    m_keyReference->setCategory
+        (tr("Selection Strip Mouse Actions"));
+    m_keyReference->registerShortcut
+        (tr("Jump"), tr("Left"), 
+         tr("Click left button to move the playback position to a time"));
+    m_keyReference->registerShortcut
+        (tr("Select"), tr("Left"), 
+         tr("Click left button and drag to select a region of time"));
+    m_keyReference->registerShortcut
+        (tr("Select Note Duration"), tr("Double-Click Left"), 
+         tr("Double-click left button to select the region of time corresponding to a note"));
+
     QToolBar *toolbar = addToolBar(tr("Tools Toolbar"));
     
     CommandHistory::getInstance()->registerToolbar(toolbar);