1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
"""!
@package gmodeler.toolbars
@brief wxGUI Graphical Modeler toolbars classes
Classes:
- toolbars::ModelerToolbar
(C) 2010-2011 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@author Martin Landa <landa.martin gmail.com>
"""
import os
import sys
import wx
from core import globalvar
from gui_core.toolbars import BaseToolbar, BaseIcons
from icons.icon import MetaIcon
class ModelerToolbar(BaseToolbar):
"""!Graphical modeler toolbaro (see gmodeler.py)
"""
def __init__(self, parent):
BaseToolbar.__init__(self, parent)
self.InitToolbar(self._toolbarData())
# realize the toolbar
self.Realize()
def _toolbarData(self):
"""!Toolbar data"""
icons = {
'new' : MetaIcon(img = 'create',
label = _('Create new model (Ctrl+N)')),
'open' : MetaIcon(img = 'open',
label = _('Load model from file (Ctrl+O)')),
'save' : MetaIcon(img = 'save',
label = _('Save current model to file (Ctrl+S)')),
'toImage' : MetaIcon(img = 'image-export',
label = _('Export model to image')),
'toPython' : MetaIcon(img = 'python-export',
label = _('Export model to Python script')),
'actionAdd' : MetaIcon(img = 'module-add',
label = _('Add command (GRASS module) to model')),
'dataAdd' : MetaIcon(img = 'data-add',
label = _('Add data to model')),
'relation' : MetaIcon(img = 'relation-create',
label = _('Manually define relation between data and commands')),
'loop' : MetaIcon(img = 'loop-add',
label = _('Add loop/series')),
'run' : MetaIcon(img = 'execute',
label = _('Run model')),
'validate' : MetaIcon(img = 'check',
label = _('Validate model')),
'settings' : BaseIcons['settings'].SetLabel(_('Modeler settings')),
'properties' : MetaIcon(img = 'options',
label = _('Show model properties')),
'variables' : MetaIcon(img = 'modeler-variables',
label = _('Manage model variables')),
'redraw' : MetaIcon(img = 'redraw',
label = _('Redraw model canvas')),
'quit' : BaseIcons['quit'].SetLabel(_('Quit Graphical Modeler')),
}
return self._getToolbarData((('new', icons['new'],
self.parent.OnModelNew),
('open', icons['open'],
self.parent.OnModelOpen),
('save', icons['save'],
self.parent.OnModelSave),
('image', icons['toImage'],
self.parent.OnExportImage),
('python', icons['toPython'],
self.parent.OnExportPython),
(None, ),
('action', icons['actionAdd'],
self.parent.OnAddAction),
('data', icons['dataAdd'],
self.parent.OnAddData),
('relation', icons['relation'],
self.parent.OnDefineRelation),
('loop', icons['loop'],
self.parent.OnDefineLoop),
(None, ),
('redraw', icons['redraw'],
self.parent.OnCanvasRefresh),
('validate', icons['validate'],
self.parent.OnValidateModel),
('run', icons['run'],
self.parent.OnRunModel),
(None, ),
("variables", icons['variables'],
self.parent.OnVariables),
("settings", icons['settings'],
self.parent.OnPreferences),
("help", BaseIcons['help'],
self.parent.OnHelp),
(None, ),
('quit', icons['quit'],
self.parent.OnCloseWindow))
)
|