[GRASS-SVN] r46090 - grass-addons/gui/wxpython/wx.psmap/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Apr 24 05:36:20 EDT 2011
Author: annakrat
Date: 2011-04-24 02:36:20 -0700 (Sun, 24 Apr 2011)
New Revision: 46090
Modified:
grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap.py
grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap_dialogs.py
Log:
wx.psmap: psmap_dialog.py documentation - list of classes
Modified: grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap.py
===================================================================
--- grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap.py 2011-04-23 16:28:38 UTC (rev 46089)
+++ grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap.py 2011-04-24 09:36:20 UTC (rev 46090)
@@ -299,7 +299,7 @@
self.cmdThread = CmdThread(self, self.requestQ, self.resultQ)
self._layout()
- self.SetMinSize(wx.Size(700, 600))
+ self.SetMinSize(wx.Size(750, 600))
self.Bind(fnb.EVT_FLATNOTEBOOK_PAGE_CHANGING, self.OnPageChanging)
self.Bind(fnb.EVT_FLATNOTEBOOK_PAGE_CHANGED, self.OnPageChanged)
Modified: grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap_dialogs.py
===================================================================
--- grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap_dialogs.py 2011-04-23 16:28:38 UTC (rev 46089)
+++ grass-addons/gui/wxpython/wx.psmap/gui_modules/psmap_dialogs.py 2011-04-24 09:36:20 UTC (rev 46090)
@@ -1,13 +1,39 @@
"""!
@package psmap_dialogs
- at brief dialogs for ps.map
+ at brief map feature objects and dialogs for ps.map
Classes:
- UnitConversion
+ - TCValidator
+ - PenStyleComboBox
+ - CheckListCtrl
+ - Instruction
+ - InstructionObject
+ - InitMap
+ - MapFrame
+ - PageSetup
+ - Mapinfo
+ - Text
+ - Scalebar
+ - RasterLegend
+ - VectorLegend
+ - Raster
+ - Vector
+ - VProperties
+ - PsmapDialog
- PageSetupDialog
- - MapDialog
+ - MapDialog
+ - MapFramePanel
+ - RasterPanel
+ - VectorPanel
+ - RasterDialog
+ - MainVectorDialog
+ - VPropertiesDialog
- LegendDialog
+ - MapinfoDialog
+ - ScalebarDialog
+ - TextDialog
(C) 2011 by Anna Kratochvilova, and the GRASS Development Team
This program is free software under the GNU General Public License
@@ -2567,9 +2593,7 @@
vmap = self.select.GetValue()
try:
topoInfo = grass.vector_info_topo(map = vmap)
- except grass.ScriptError, e:
- GError(parent = self,
- message = e.value)
+ except grass.ScriptError:
return
self.vectorType.EnableItem(2, bool(topoInfo['areas']))
More information about the grass-commit
mailing list