[GRASS-SVN] r40024 - in grass/trunk/gui/wxpython: docs xml

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Dec 16 13:21:52 EST 2009


Author: martinl
Date: 2009-12-16 13:21:51 -0500 (Wed, 16 Dec 2009)
New Revision: 40024

Modified:
   grass/trunk/gui/wxpython/docs/wxGUI.html
   grass/trunk/gui/wxpython/xml/menudata.xml
Log:
wxGUI: more shortcuts


Modified: grass/trunk/gui/wxpython/docs/wxGUI.html
===================================================================
--- grass/trunk/gui/wxpython/docs/wxGUI.html	2009-12-16 17:55:58 UTC (rev 40023)
+++ grass/trunk/gui/wxpython/docs/wxGUI.html	2009-12-16 18:21:51 UTC (rev 40024)
@@ -1,10 +1,13 @@
 <h2>DESCRIPTION</h2>
 
+wxGUI is native <em>Graphical User Interface</em> (GUI) from GRASS GIS.
+
+<p>
 If wxGUI is not your default UI, you can define it as default by
 typing at GRASS command line prompt
 
 <div class="code"><pre>
-   g.gui -u wxpython& 
+   g.gui -u wxpython 
 </pre></div>
 
 or define in your <tt>.grass7/rc</tt> file 'GRASS_GUI' variable
@@ -17,7 +20,7 @@
 can be restarted from the GRASS command line prompt by typing
 
 <div class="code"><pre>
-    g.gui wxpython&
+    g.gui wxpython
 </pre></div>
 
 or  to restart with previously saved workspace type:
@@ -262,8 +265,12 @@
   <dd>Save workspace</dd>
   <dt>Ctrl+C</dt>
   <dd>Close workspace</dd>
+  <dt>Ctrl+L</dt>
+  <dd>Load map layers</dd>
+  <dt>Ctrl+E</dt>
+  <dd>Exit GUI</dd>
   <dt>Ctrl+Q</dt>
-  <dd>Quit GUI</dd>
+  <dd>Quit GRASS</dd>
 </dl>
 
 <b>Global</b>

Modified: grass/trunk/gui/wxpython/xml/menudata.xml
===================================================================
--- grass/trunk/gui/wxpython/xml/menudata.xml	2009-12-16 17:55:58 UTC (rev 40023)
+++ grass/trunk/gui/wxpython/xml/menudata.xml	2009-12-16 18:21:51 UTC (rev 40024)
@@ -33,12 +33,14 @@
 	      <label>Close</label>
 	      <help>Close workspace file</help>
 	      <handler>self.OnWorkspaceClose</handler>
+	      <shortcut>Ctrl+C</shortcut>
 	    </menuitem>
 	    <separator />
 	    <menuitem>
 	      <label>Load map layers</label>
 	      <help>Load map layers into layer tree</help>
 	      <handler>self.OnWorkspaceLoad</handler>
+	      <shortcut>Ctrl+L</shortcut>
 	    </menuitem>
 	    <separator />
 	    <menuitem>
@@ -649,9 +651,10 @@
 	</menuitem>
 	<separator />
 	<menuitem>
-	  <label>Quit GUI</label>
+	  <label>Exit GUI</label>
 	  <help>Quit wxGUI session</help>
 	  <handler>self.OnCloseWindow</handler>
+	  <shortcut>Ctrl+E</shortcut>
 	</menuitem>
 	<menuitem>
 	  <label>Quit GRASS GIS</label>



More information about the grass-commit mailing list