Переглянути джерело

wxGUI: document key shortcuts & cosmetics in menu

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@39039 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 роки тому
батько
коміт
2f47eecaeb
2 змінених файлів з 27 додано та 3 видалено
  1. 24 0
      gui/wxpython/docs/wxGUI.html
  2. 3 3
      gui/wxpython/xml/menudata.xml

+ 24 - 0
gui/wxpython/docs/wxGUI.html

@@ -228,6 +228,30 @@ see <em><a href="d.labels.html">d.labels</a></em>.</dd>
 
 </dl>
 
+<h4>Key shortcuts</h4>
+
+<b>Menu</b>
+<dl>
+  <dt>Ctrl+N</dt>
+  <dd>Create new workspace</dd>
+  <dt>Ctrl+O</dt>
+  <dd>Load workspace from file</dd>
+  <dt>Ctrl+S</dt>
+  <dd>Save workspace</dd>
+  <dt>Ctrl+C</dt>
+  <dd>Close workspace</dd>
+  <dt>Ctrl+Q</dt>
+  <dd>Quit GUI</dd>
+</dl>
+
+<b>Global</b>
+<dl>
+  <dt>Alt+R</dt>
+  <dd>Add raster map layer</dd>
+  <dt>Alt+V</dt>
+  <dd>Add vector map layer</dd>
+</dl>
+
 <h3>Map Display Window</h3>
 
 This component includes toolbar area (set of toolbars), map canvas

+ 3 - 3
gui/wxpython/xml/menudata.xml

@@ -20,7 +20,7 @@
 	    </menuitem>
 	    <menuitem>
 	      <label>Save</label>
-	      <help>Save workspace to open file</help>
+	      <help>Save workspace</help>
 	      <handler>self.OnWorkspaceSave</handler>
 	      <shortcut>Ctrl+S</shortcut>
 	    </menuitem>
@@ -31,7 +31,7 @@
 	    </menuitem>
 	    <menuitem>
 	      <label>Close</label>
-	      <help>Close loaded workspace</help>
+	      <help>Close workspace file</help>
 	      <handler>self.OnWorkspaceClose</handler>
 	      <shortcut>Ctrl+C</shortcut>
 	    </menuitem>
@@ -645,7 +645,7 @@
 	<separator />
 	<menuitem>
 	  <label>E&amp;xit</label>
-	  <help>Exit GUI</help>
+	  <help>Quit GUI</help>
 	  <handler>self.OnCloseWindow</handler>
 	  <shortcut>Ctrl+Q</shortcut>
 	</menuitem>