|
GRASS Programmer's Manual
6.5.svn(2012)-r51648
|
Data Structures | |
| class | GCPManToolbar |
| Toolbar for managing ground control points. More... | |
| class | GCPDisplayToolbar |
| class | ModelerToolbar |
| Graphical modeler toolbaro (see gmodeler.py) More... | |
| class | BaseToolbar |
| Abstract toolbar class. More... | |
| class | LMWorkspaceToolbar |
Layer Manager workspace toolbar. More... | |
| class | LMDataToolbar |
Layer Manager data toolbar. More... | |
| class | LMToolsToolbar |
Layer Manager tools toolbar. More... | |
| class | LMMiscToolbar |
Layer Manager misc toolbar. More... | |
| class | LMVectorToolbar |
Layer Manager vector toolbar. More... | |
| class | LMNvizToolbar |
| Nviz toolbar. More... | |
| class | MapToolbar |
| Map Display toolbar. More... | |
| class | PsMapToolbar |
| class | VDigitToolbar |
| Toolbar for digitization. More... | |
Variables | |
| dictionary | BaseIcons |
| dictionary | MapIcons |
| dictionary | NvizIcons |
| dictionary toolbars.BaseIcons |
Definition at line 29 of file gui_core/toolbars.py.
| dictionary toolbars.MapIcons |
00001 { 00002 'query' : MetaIcon(img = 'info', 00003 label = _('Query raster/vector map(s)'), 00004 desc = _('Query selected raster/vector map(s)')), 00005 'addBarscale': MetaIcon(img = 'scalebar-add', 00006 label = _('Add scalebar and north arrow')), 00007 'addLegend' : MetaIcon(img = 'legend-add', 00008 label = _('Add legend')), 00009 'addNorthArrow': MetaIcon(img = 'north-arrow-add', 00010 label = _('North Arrow')), 00011 'analyze' : MetaIcon(img = 'layer-raster-analyze', 00012 label = _('Analyze map'), 00013 desc = _('Measuring, profiling, histogramming, ...')), 00014 'measure' : MetaIcon(img = 'measure-length', 00015 label = _('Measure distance')), 00016 'profile' : MetaIcon(img = 'layer-raster-profile', 00017 label = _('Profile surface map')), 00018 'scatter' : MetaIcon(img = 'layer-raster-profile', 00019 label = _("Create bivariate scatterplot of raster maps")), 00020 'addText' : MetaIcon(img = 'text-add', 00021 label = _('Add text layer')), 00022 'histogram' : MetaIcon(img = 'layer-raster-histogram', 00023 label = _('Create histogram of raster map')), 00024 }
Definition at line 26 of file mapdisp/toolbars.py.
| dictionary toolbars.NvizIcons |
00001 { 00002 'rotate' : MetaIcon(img = '3d-rotate', 00003 label = _('Rotate 3D scene'), 00004 desc = _('Drag with mouse to rotate 3D scene')), 00005 'flyThrough': MetaIcon(img = 'flythrough', 00006 label = _('Fly-through mode'), 00007 desc = _('Drag with mouse, hold Ctrl down for different mode' 00008 ' or Shift to accelerate')), 00009 'zoomIn' : BaseIcons['zoomIn'].SetLabel(desc = _('Click mouse to zoom')), 00010 'zoomOut' : BaseIcons['zoomOut'].SetLabel(desc = _('Click mouse to unzoom')) 00011 }
Definition at line 51 of file mapdisp/toolbars.py.