[GRASS-SVN] r62260 - in grass/branches/releasebranch_7_0: . gui/icons/grass gui/wxpython/lmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Oct 14 19:39:10 PDT 2014


Author: wenzeslaus
Date: 2014-10-14 19:39:10 -0700 (Tue, 14 Oct 2014)
New Revision: 62260

Added:
   grass/branches/releasebranch_7_0/gui/icons/grass/aspect-arrow.png
   grass/branches/releasebranch_7_0/gui/icons/grass/cell-cats.png
   grass/branches/releasebranch_7_0/gui/icons/grass/his.png
   grass/branches/releasebranch_7_0/gui/icons/grass/label.png
   grass/branches/releasebranch_7_0/gui/icons/grass/raster.png
   grass/branches/releasebranch_7_0/gui/icons/grass/raster3d.png
   grass/branches/releasebranch_7_0/gui/icons/grass/rgb.png
   grass/branches/releasebranch_7_0/gui/icons/grass/shaded-relief.png
   grass/branches/releasebranch_7_0/gui/icons/grass/vector-chart.png
   grass/branches/releasebranch_7_0/gui/icons/grass/vector-thematic.png
   grass/branches/releasebranch_7_0/gui/icons/grass/vector.png
   grass/branches/releasebranch_7_0/gui/icons/grass/wms.png
Modified:
   grass/branches/releasebranch_7_0/
   grass/branches/releasebranch_7_0/gui/wxpython/lmgr/layertree.py
Log:
wxGUI: icons for layers in lmgr tree without 'layer' and 'add' symbols (backport of r61280)


Property changes on: grass/branches/releasebranch_7_0
___________________________________________________________________
Modified: svn:mergeinfo
   - /grass/trunk:62144
   + /grass/trunk:61280,62144

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/aspect-arrow.png (from rev 61280, grass/trunk/gui/icons/grass/aspect-arrow.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/cell-cats.png (from rev 61280, grass/trunk/gui/icons/grass/cell-cats.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/his.png (from rev 61280, grass/trunk/gui/icons/grass/his.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/label.png (from rev 61280, grass/trunk/gui/icons/grass/label.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/raster.png (from rev 61280, grass/trunk/gui/icons/grass/raster.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/raster3d.png (from rev 61280, grass/trunk/gui/icons/grass/raster3d.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/rgb.png (from rev 61280, grass/trunk/gui/icons/grass/rgb.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/shaded-relief.png (from rev 61280, grass/trunk/gui/icons/grass/shaded-relief.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/vector-chart.png (from rev 61280, grass/trunk/gui/icons/grass/vector-chart.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/vector-thematic.png (from rev 61280, grass/trunk/gui/icons/grass/vector-thematic.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/vector.png (from rev 61280, grass/trunk/gui/icons/grass/vector.png)
===================================================================
(Binary files differ)

Copied: grass/branches/releasebranch_7_0/gui/icons/grass/wms.png (from rev 61280, grass/trunk/gui/icons/grass/wms.png)
===================================================================
(Binary files differ)

Modified: grass/branches/releasebranch_7_0/gui/wxpython/lmgr/layertree.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/lmgr/layertree.py	2014-10-15 02:04:05 UTC (rev 62259)
+++ grass/branches/releasebranch_7_0/gui/wxpython/lmgr/layertree.py	2014-10-15 02:39:10 UTC (rev 62260)
@@ -70,23 +70,23 @@
                             label = _('Add command layer')),
     'quit'       : MetaIcon(img = 'quit',
                             label = _('Quit')),
-    'layerRaster'    : MetaIcon(img = 'layer-raster-add',
+    'layerRaster'    : MetaIcon(img = 'raster',
                             label = _('Add raster map layer')),
-    'layerRgb'     : MetaIcon(img = 'layer-rgb-add',
+    'layerRgb'     : MetaIcon(img = 'rgb',
                             label = _('Add RGB map layer')),
-    'layerHis'     : MetaIcon(img = 'layer-his-add',
+    'layerHis'     : MetaIcon(img = 'his',
                                     label = _('Add HIS map layer')),
-    'layerShaded'  : MetaIcon(img = 'layer-shaded-relief-add',
+    'layerShaded'  : MetaIcon(img = 'shaded-relief',
                               label = _('Add shaded relief map layer')),
-    'layerRastarrow'  : MetaIcon(img = 'layer-aspect-arrow-add',
+    'layerRastarrow'  : MetaIcon(img = 'aspect-arrow',
                             label = _('Add raster flow arrows')),
-    'layerRastnum'    : MetaIcon(img = 'layer-cell-cats-add',
+    'layerRastnum'    : MetaIcon(img = 'cell-cats',
                             label = _('Add raster cell numbers')),
-    'layerVector'    : MetaIcon(img = 'layer-vector-add',
+    'layerVector'    : MetaIcon(img = 'vector',
                             label = _('Add vector map layer')),
-    'layerThememap': MetaIcon(img = 'layer-vector-thematic-add',
+    'layerThememap': MetaIcon(img = 'vector-thematic',
                             label = _('Add thematic area (choropleth) map layer')),
-    'layerThemechart'   : MetaIcon(img = 'layer-vector-chart-add',
+    'layerThemechart'   : MetaIcon(img = 'vector-chart',
                             label = _('Add thematic chart layer')),
     'layerGrid'    : MetaIcon(img = 'layer-grid-add',
                             label = _('Add grid layer')),
@@ -94,12 +94,12 @@
                             label = _('Add geodesic line layer')),
     'layerRhumb'   : MetaIcon(img = 'shortest-distance',
                             label = _('Add rhumbline layer')),
-    'layerLabels'  : MetaIcon(img = 'layer-label-add',
+    'layerLabels'  : MetaIcon(img = 'label',
                             label = _('Add labels')),
-    'layer3d-raster'  : MetaIcon(img = 'layer-raster3d-add',
+    'layer3d-raster'  : MetaIcon(img = 'raster3d',
                             label = _('Add 3D raster map layer'),
                             desc  =  _('Note that 3D raster data are rendered only in 3D view mode')),
-    'layerWms'      :  MetaIcon(img = 'layer-wms-add',
+    'layerWms'      :  MetaIcon(img = 'wms',
                             label = _('Add WMS layer.')),
     'layerOptions'  : MetaIcon(img = 'options',
                                label = _('Set options')),



More information about the grass-commit mailing list