~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to src/prefs/MousePrefs.cpp

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
   mList->InsertColumn(ButtonsColumn, _("Buttons"),         wxLIST_FORMAT_LEFT );
96
96
   mList->InsertColumn(CommentColumn, _("Comments"),        wxLIST_FORMAT_LEFT );
97
97
 
98
 
   AddItem( _("Left-Click"),       _("Select"),    _("Set Selection Point") );
99
 
   AddItem( _("Left-Drag"),        _("Select"),    _("Set Selection Range") );
100
 
   AddItem( _("Shift-Left-Click"), _("Select"),    _("Extend Selection Range") );
 
98
   AddItem( _("Left-Click"),        _("Select"),   _("Set Selection Point") );
 
99
   AddItem( _("Left-Drag"),         _("Select"),   _("Set Selection Range") );
 
100
   AddItem( _("Shift-Left-Click"),  _("Select"),   _("Extend Selection Range") );
 
101
   AddItem( _("Left-Double-Click"), _("Select"),   _("Select Clip or Entire Track") );
 
102
   AddItem( _("Ctrl-Left-Click"),   _("Select"),   _("Set Selection Point and Play") );
101
103
 
102
104
   AddItem( _("Left-Click"),       _("Zoom"),      _("Zoom in on Point") );
103
105
   AddItem( _("Left-Drag"),        _("Zoom"),      _("Zoom in on a Range"), _("same as right-drag") );
104
106
   AddItem( _("Right-Click"),      _("Zoom"),      _("Zoom out one step") );
105
107
   AddItem( _("Right-Drag"),       _("Zoom"),      _("Zoom in on a Range"), _("same as left-drag") );
 
108
   AddItem( _("Shift-Drag"),       _("Zoom"),      _("Zoom out on a Range"));
 
109
   AddItem( _("Middle-Click"),     _("Zoom"),      _("Zoom default"));
106
110
 
107
111
   AddItem( _("Left-Drag"),        _("Time-Shift"),_("Time shift clip or move up/down between tracks") );
108
112
   AddItem( _("Shift-Left-Drag"),  _("Time-Shift"),_("Time shift all clips in track") );
120
124
   AddItem( _("Right-Click"),      _("Multi"),     _("Zoom out one step"),   _("same as zoom tool") );
121
125
   AddItem( _("Right-Drag"),       _("Multi"),     _("Zoom in on a Range"),  _("same as zoom tool") );
122
126
 
123
 
   AddItem( _("Wheel-Rotate"),     _("Any"),       _("Scroll up or down") );
124
 
   AddItem( _("Ctrl-Wheel-Rotate"),_("Any"),       _("Zoom in or out") );
 
127
   AddItem( _("Wheel-Rotate"),      _("Any"),      _("Scroll up or down") );
 
128
   AddItem( _("Shift-Wheel-Rotate"),_("Any"),      _("Scroll left or right") );
 
129
   AddItem( _("Ctrl-Wheel-Rotate"), _("Any"),      _("Zoom in or out") );
125
130
 
126
131
   mList->SetColumnWidth( BlankColumn,  0 ); // First column width is zero, to hide it.
127
132
   mList->SetColumnWidth( ToolColumn,   wxLIST_AUTOSIZE );