123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- """!
- @package core.settings
- @brief Default GUI settings
- List of classes:
- - settings::Settings
- Usage:
- @code
- from core.settings import UserSettings
- @endcode
- (C) 2007-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>
- @author Luca Delucchi <lucadeluge gmail.com> (language choice)
- """
- import os
- import sys
- import copy
- import types
- import locale
- from core import globalvar
- from core.gcmd import GException, GError
- from core.utils import GetSettingsPath, PathJoin, rgb2str
- class Settings:
- """!Generic class where to store settings"""
- def __init__(self):
- # settings file
- self.filePath = os.path.join(GetSettingsPath(), 'wx')
-
- # key/value separator
- self.sep = ';'
-
- # define default settings
- self._defaultSettings() # -> self.defaultSettings
-
- # read settings from the file
- self.userSettings = copy.deepcopy(self.defaultSettings)
- try:
- self.ReadSettingsFile()
- except GException, e:
- print >> sys.stderr, e.value
-
- # define internal settings
- self._internalSettings() # -> self.internalSettings
- def _generateLocale(self):
- """!Generate locales
- """
- import os
-
- try:
- self.locs = os.listdir(os.path.join(os.environ['GISBASE'], 'locale'))
- self.locs.sort()
- # Add a default choice to not override system locale
- self.locs.insert(0, 'system')
- except:
- # No NLS
- self.locs = ['system']
-
- return 'system'
-
- def _defaultSettings(self):
- """!Define default settings
- """
- try:
- projFile = PathJoin(os.environ["GRASS_PROJSHARE"], 'epsg')
- except KeyError:
- projFile = ''
-
- id_loc = self._generateLocale()
-
- self.defaultSettings = {
- #
- # general
- #
- 'general': {
- # use default window layout (layer manager, displays, ...)
- 'defWindowPos' : {
- 'enabled' : True,
- 'dim' : '0,0,%d,%d,%d,0,%d,%d' % \
- (globalvar.GM_WINDOW_SIZE[0],
- globalvar.GM_WINDOW_SIZE[1],
- globalvar.GM_WINDOW_SIZE[0],
- globalvar.MAP_WINDOW_SIZE[0],
- globalvar.MAP_WINDOW_SIZE[1])
- },
- # workspace
- 'workspace' : {
- 'posDisplay' : {
- 'enabled' : False
- },
- 'posManager' : {
- 'enabled' : False
- },
- },
- },
- 'manager' : {
- # show opacity level widget
- 'changeOpacityLevel' : {
- 'enabled' : False
- },
- # ask when removing layer from layer tree
- 'askOnRemoveLayer' : {
- 'enabled' : True
- },
- # ask when quiting wxGUI or closing display
- 'askOnQuit' : {
- 'enabled' : True
- },
- # hide tabs
- 'hideTabs' : {
- 'search' : False,
- 'pyshell' : False,
- },
- 'copySelectedTextToClipboard' : {
- 'enabled' : False
- },
- },
- #
- # appearance
- #
- 'appearance': {
- 'outputfont' : {
- 'type' : 'Courier New',
- 'size': '10',
- },
- # expand/collapse element list
- 'elementListExpand' : {
- 'selection' : 0
- },
- 'menustyle' : {
- 'selection' : 1
- },
- 'gSelectPopupHeight' : {
- 'value' : 200
- },
- 'iconTheme' : {
- 'type' : 'grass'
- },
- },
- #
- # language
- #
- 'language': {
- 'locale': {
- 'lc_all' : id_loc
- }
- },
- #
- # display
- #
- 'display': {
- 'font' : {
- 'type' : '',
- 'encoding': 'ISO-8859-1',
- },
- 'driver': {
- 'type': 'cairo'
- },
- 'alignExtent' : {
- 'enabled' : True
- },
- 'compResolution' : {
- 'enabled' : False
- },
- 'autoRendering': {
- 'enabled' : True
- },
- 'autoZooming' : {
- 'enabled' : False
- },
- 'statusbarMode': {
- 'selection' : 0
- },
- 'bgcolor': {
- 'color' : (255, 255, 255, 255),
- },
- 'mouseWheelZoom' : {
- 'selection' : 1,
- },
- 'scrollDirection' : {
- 'selection' : 0,
- },
- },
- #
- # projection
- #
- 'projection' : {
- 'statusbar' : {
- 'proj4' : '',
- 'epsg' : '',
- 'projFile' : projFile,
- },
- 'format' : {
- 'll' : 'DMS',
- 'precision' : 2,
- },
- },
- #
- # Attribute Table Manager
- #
- 'atm' : {
- 'highlight' : {
- 'color' : (255, 255, 0, 255),
- 'width' : 2
- },
- 'leftDbClick' : {
- 'selection' : 1 # draw selected
- },
- 'askOnDeleteRec' : {
- 'enabled' : True
- },
- 'keycolumn' : {
- 'value' : 'cat'
- },
- 'encoding' : {
- 'value' : '',
- }
- },
- #
- # Command
- #
- 'cmd': {
- 'overwrite' : {
- 'enabled' : False
- },
- 'closeDlg' : {
- 'enabled' : False
- },
- 'verbosity' : {
- 'selection' : 'grassenv'
- },
- 'addNewLayer' : {
- 'enabled' : True,
- },
- 'interactiveInput' : {
- 'enabled' : True,
- },
- },
- #
- # d.rast
- #
- 'rasterLayer': {
- 'opaque': {
- 'enabled' : False
- },
- 'colorTable': {
- 'enabled' : False,
- 'selection' : 'rainbow'
- },
- },
- #
- # d.vect
- #
- 'vectorLayer': {
- 'featureColor': {
- 'color' : (0, 0, 0),
- 'transparent' : {
- 'enabled': False
- }
- },
- 'areaFillColor': {
- 'color' : (200, 200, 200),
- 'transparent' : {
- 'enabled': False
- }
- },
- 'line': {
- 'width' : 0,
- },
- 'point': {
- 'symbol': 'basic/x',
- 'size' : 5,
- },
- 'showType': {
- 'point' : {
- 'enabled' : True
- },
- 'line' : {
- 'enabled' : True
- },
- 'centroid' : {
- 'enabled' : True
- },
- 'boundary' : {
- 'enabled' : True
- },
- 'area' : {
- 'enabled' : True
- },
- 'face' : {
- 'enabled' : True
- },
- },
- },
- #
- # vdigit
- #
- 'vdigit' : {
- # symbology
- 'symbol' : {
- 'newSegment' : {
- 'enabled' : None,
- 'color' : (255, 0, 0, 255)
- }, # red
- 'newLine' : {
- 'enabled' : None,
- 'color' : (0, 86, 45, 255)
- }, # dark green
- 'highlight' : {
- 'enabled' : None,
- 'color' : (255, 255, 0, 255)
- }, # yellow
- 'highlightDupl' : {
- 'enabled' : None,
- 'color' : (255, 72, 0, 255)
- }, # red
- 'point' : {
- 'enabled' : True,
- 'color' : (0, 0, 0, 255)
- }, # black
- 'line' : {
- 'enabled' : True,
- 'color' : (0, 0, 0, 255)
- }, # black
- 'boundaryNo' : {
- 'enabled' : True,
- 'color' : (126, 126, 126, 255)
- }, # grey
- 'boundaryOne' : {
- 'enabled' : True,
- 'color' : (0, 255, 0, 255)
- }, # green
- 'boundaryTwo' : {
- 'enabled' : True,
- 'color' : (255, 135, 0, 255)
- }, # orange
- 'centroidIn' : {
- 'enabled' : True,
- 'color' : (0, 0, 255, 255)
- }, # blue
- 'centroidOut' : {
- 'enabled' : True,
- 'color' : (165, 42, 42, 255)
- }, # brown
- 'centroidDup' : {
- 'enabled' : True,
- 'color' : (156, 62, 206, 255)
- }, # violet
- 'nodeOne' : {
- 'enabled' : True,
- 'color' : (255, 0, 0, 255)
- }, # red
- 'nodeTwo' : {
- 'enabled' : True,
- 'color' : (0, 86, 45, 255)
- }, # dark green
- 'vertex' : {
- 'enabled' : False,
- 'color' : (255, 20, 147, 255)
- }, # deep pink
- 'area' : {
- 'enabled' : True,
- 'color' : (217, 255, 217, 255)
- }, # green
- 'direction' : {
- 'enabled' : False,
- 'color' : (255, 0, 0, 255)
- }, # red
- },
- # display
- 'lineWidth' : {
- 'value' : 2,
- 'units' : 'screen pixels'
- },
- # snapping
- 'snapping' : {
- 'value' : 10,
- 'units' : 'screen pixels'
- },
- 'snapToVertex' : {
- 'enabled' : False
- },
- # digitize new record
- 'addRecord' : {
- 'enabled' : True
- },
- 'layer' :{
- 'value' : 1
- },
- 'category' : {
- 'value' : 1
- },
- 'categoryMode' : {
- 'selection' : 0
- },
- # delete existing feature(s)
- 'delRecord' : {
- 'enabled' : True
- },
- # query tool
- 'query' : {
- 'selection' : 0,
- 'box' : True
- },
- 'queryLength' : {
- 'than-selection' : 0,
- 'thresh' : 0
- },
- 'queryDangle' : {
- 'than-selection' : 0,
- 'thresh' : 0
- },
- # select feature (point, line, centroid, boundary)
- 'selectType': {
- 'point' : {
- 'enabled' : True
- },
- 'line' : {
- 'enabled' : True
- },
- 'centroid' : {
- 'enabled' : True
- },
- 'boundary' : {
- 'enabled' : True
- },
- },
- 'selectThresh' : {
- 'value' : 10,
- 'units' : 'screen pixels'
- },
- 'checkForDupl' : {
- 'enabled' : False
- },
- 'selectInside' : {
- 'enabled' : False
- },
- # exit
- 'saveOnExit' : {
- 'enabled' : False,
- },
- # break lines on intersection
- 'breakLines' : {
- 'enabled' : False,
- },
- },
- #
- # plots for profiles, histograms, and scatterplots
- #
- 'profile': {
- 'raster' : {
- 'pcolor' : (0, 0, 255, 255), # line color
- 'pwidth' : 1, # line width
- 'pstyle' : 'solid', # line pen style
- 'datatype' : 'cell', # raster type
- },
- 'font' : {
- 'titleSize' : 12,
- 'axisSize' : 11,
- 'legendSize' : 10,
- },
- 'marker' : {
- 'color' : (0, 0, 0, 255),
- 'fill' : 'transparent',
- 'size' : 2,
- 'type' : 'triangle',
- 'legend' : _('Segment break'),
- },
- 'grid' : {
- 'color' : (200, 200, 200, 255),
- 'enabled' : True,
- },
- 'x-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max': 0, # axis max for custom axis range
- 'log' : False,
- },
- 'y-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max': 0, # axis max for custom axis range
- 'log' : False,
- },
- 'legend' : {
- 'enabled' : True
- },
- },
- 'histogram': {
- 'raster' : {
- 'pcolor' : (0, 0, 255, 255), # line color
- 'pwidth' : 1, # line width
- 'pstyle' : 'solid', # line pen style
- 'datatype' : 'cell', # raster type
- },
- 'font' : {
- 'titleSize' : 12,
- 'axisSize' : 11,
- 'legendSize' : 10,
- },
- 'grid' : {
- 'color' : (200, 200, 200, 255),
- 'enabled' : True,
- },
- 'x-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max' : 0, # axis max for custom axis range
- 'log' : False,
- },
- 'y-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max' : 0, # axis max for custom axis range
- 'log' : False,
- },
- 'legend' : {
- 'enabled' : True
- },
- },
- 'scatter': {
- 'rasters' : {
- 'pcolor' : (0, 0, 255, 255),
- 'pfill' : 'solid',
- 'psize' : 1,
- 'ptype' : 'dot',
- 'plegend' : _('Data point'),
- 0 : {'datatype' : 'CELL'},
- 1 : {'datatype' : 'CELL'},
- },
- 'font' : {
- 'titleSize' : 12,
- 'axisSize' : 11,
- 'legendSize' : 10,
- },
- 'grid' : {
- 'color' : (200, 200, 200, 255),
- 'enabled' : True,
- },
- 'x-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max' : 0, # axis max for custom axis range
- 'log' : False,
- },
- 'y-axis' : {
- 'type' : 'auto', # axis format
- 'min' : 0, # axis min for custom axis range
- 'max' : 0, # axis max for custom axis range
- 'log' : False,
- },
- 'legend' : {
- 'enabled' : True
- },
- },
- 'gcpman' : {
- 'rms' : {
- 'highestonly' : True,
- 'sdfactor' : 1,
- },
- 'symbol' : {
- 'color' : (0, 0, 255, 255),
- 'hcolor' : (255, 0, 0, 255),
- 'scolor' : (0, 255, 0, 255),
- 'ucolor' : (255, 165, 0, 255),
- 'unused' : True,
- 'size' : 8,
- 'width' : 2,
- },
- },
- 'nviz' : {
- 'view' : {
- 'persp' : {
- 'value' : 20,
- 'step' : 2,
- },
- 'position' : {
- 'x' : 0.84,
- 'y' : 0.16,
- },
- 'twist' : {
- 'value' : 0,
- },
- 'z-exag' : {
- 'min' : 0,
- 'max' : 10,
- 'value': 1,
- },
- 'background' : {
- 'color' : (255, 255, 255, 255), # white
- },
- },
- 'fly' : {
- 'exag' : {
- 'move' : 5,
- 'turn' : 5,
- }
- },
- 'animation' : {
- 'fps' : 24,
- 'prefix' : _("animation")
- },
- 'surface' : {
- 'shine': {
- 'map' : False,
- 'value' : 60.0,
- },
- 'color' : {
- 'map' : True,
- 'value' : (100, 100, 100, 255), # constant: grey
- },
- 'draw' : {
- 'wire-color' : (136, 136, 136, 255),
- 'mode' : 1, # fine
- 'style' : 1, # surface
- 'shading' : 1, # gouraud
- 'res-fine' : 6,
- 'res-coarse' : 9,
- },
- 'position' : {
- 'x' : 0,
- 'y' : 0,
- 'z' : 0,
- },
- },
- 'constant' : {
- 'color' : (100, 100, 100, 255),
- 'value' : 0.0,
- 'transp' : 0,
- 'resolution': 6
- },
- 'vector' : {
- 'lines' : {
- 'show' : False,
- 'width' : 2,
- 'color' : (0, 0, 255, 255), # blue
- 'flat' : False,
- 'height' : 0,
- 'rgbcolumn': None,
- 'sizecolumn': None,
- },
- 'points' : {
- 'show' : False,
- 'size' : 100,
- 'width' : 2,
- 'marker' : 2,
- 'color' : (0, 0, 255, 255), # blue
- 'height' : 0,
- 'rgbcolumn': None,
- 'sizecolumn': None,
- }
- },
- 'volume' : {
- 'color' : {
- 'map' : True,
- 'value' : (100, 100, 100, 255), # constant: grey
- },
- 'draw' : {
- 'mode' : 0, # isosurfaces
- 'shading' : 1, # gouraud
- 'resolution' : 3, # polygon resolution
- 'box' : False # draw wire box
- },
- 'shine': {
- 'map' : False,
- 'value' : 60,
- },
- 'topo': {
- 'map' : None,
- 'value' : 0.0
- },
- 'transp': {
- 'map' : None,
- 'value': 0
- },
- 'mask': {
- 'map' : None,
- 'value': ''
- },
- 'slice_position': {
- 'x1' : 0,
- 'x2' : 1,
- 'y1' : 0,
- 'y2' : 1,
- 'z1' : 0,
- 'z2' : 1,
- 'axis' : 0,
- }
- },
- 'cplane' : {
- 'shading': 4,
- 'rotation':{
- 'rot': 0,
- 'tilt': 0
- },
- 'position':{
- 'x' : 0,
- 'y' : 0,
- 'z' : 0
- }
- },
- 'light' : {
- 'position' : {
- 'x' : 0.68,
- 'y' : -0.68,
- 'z' : 80,
- },
- 'bright' : 80,
- 'color' : (255, 255, 255, 255), # white
- 'ambient' : 20,
- },
- 'fringe' : {
- 'elev' : 55,
- 'color' : (128, 128, 128, 255), # grey
- },
- 'arrow': {
- 'color': (0, 0, 0),
- },
- 'scalebar': {
- 'color': (0, 0, 0),
- }
- },
- 'modeler' : {
- 'disabled': {
- 'color': (211, 211, 211, 255), # light grey
- },
- 'action' : {
- 'color' : {
- 'valid' : (180, 234, 154, 255), # light green
- 'invalid' : (255, 255, 255, 255), # white
- 'running' : (255, 0, 0, 255), # red
- },
- 'size' : {
- 'width' : 125,
- 'height' : 50,
- },
- 'width': {
- 'parameterized' : 2,
- 'default' : 1,
- },
- },
- 'data' : {
- 'color': {
- 'raster' : (215, 215, 248, 255), # light blue
- 'raster3d' : (215, 248, 215, 255), # light green
- 'vector' : (248, 215, 215, 255), # light red
- },
- 'size' : {
- 'width' : 175,
- 'height' : 50,
- },
- },
- 'loop' : {
- 'color' : {
- 'valid' : (234, 226, 154, 255), # light yellow
- },
- 'size' : {
- 'width' : 175,
- 'height' : 40,
- },
- },
- 'if-else' : {
- 'size' : {
- 'width' : 150,
- 'height' : 40,
- },
- },
- },
- }
- # quick fix, http://trac.osgeo.org/grass/ticket/1233
- # TODO
- if sys.platform == 'darwin':
- self.defaultSettings['general']['defWindowPos']['enabled'] = False
- def _internalSettings(self):
- """!Define internal settings (based on user settings)
- """
- self.internalSettings = {}
- for group in self.userSettings.keys():
- self.internalSettings[group] = {}
- for key in self.userSettings[group].keys():
- self.internalSettings[group][key] = {}
- # self.internalSettings['general']["mapsetPath"]['value'] = self.GetMapsetPath()
- self.internalSettings['appearance']['elementListExpand']['choices'] = \
- (_("Collapse all except PERMANENT and current"),
- _("Collapse all except PERMANENT"),
- _("Collapse all except current"),
- _("Collapse all"),
- _("Expand all"))
-
- self.internalSettings['language']['locale']['choices'] = tuple(self.locs)
- self.internalSettings['atm']['leftDbClick']['choices'] = (_('Edit selected record'),
- _('Display selected'))
-
- self.internalSettings['cmd']['verbosity']['choices'] = ('grassenv',
- 'verbose',
- 'quiet')
-
- self.internalSettings['appearance']['iconTheme']['choices'] = ('grass',)
- self.internalSettings['appearance']['menustyle']['choices'] = \
- (_("Classic (labels only)"),
- _("Combined (labels and module names)"),
- _("Professional (module names only)"))
- self.internalSettings['appearance']['gSelectPopupHeight']['min'] = 50
- # there is also maxHeight given to TreeCtrlComboPopup.GetAdjustedSize
- self.internalSettings['appearance']['gSelectPopupHeight']['max'] = 1000
-
- self.internalSettings['display']['driver']['choices'] = ['cairo', 'png']
- self.internalSettings['display']['statusbarMode']['choices'] = None # set during MapFrame init
- self.internalSettings['display']['mouseWheelZoom']['choices'] = (_('Zoom and recenter'),
- _('Zoom to mouse cursor'),
- _('Nothing'))
- self.internalSettings['display']['scrollDirection']['choices'] = (_('Scroll forward to zoom in'),
- _('Scroll back to zoom in'))
- self.internalSettings['nviz']['view'] = {}
- self.internalSettings['nviz']['view']['twist'] = {}
- self.internalSettings['nviz']['view']['twist']['min'] = -180
- self.internalSettings['nviz']['view']['twist']['max'] = 180
- self.internalSettings['nviz']['view']['persp'] = {}
- self.internalSettings['nviz']['view']['persp']['min'] = 1
- self.internalSettings['nviz']['view']['persp']['max'] = 100
- self.internalSettings['nviz']['view']['height'] = {}
- self.internalSettings['nviz']['view']['height']['value'] = -1
- self.internalSettings['nviz']['view']['z-exag'] = {}
- self.internalSettings['nviz']['view']['z-exag']['llRatio'] = 1
- self.internalSettings['nviz']['view']['rotation'] = None
- self.internalSettings['nviz']['view']['focus'] = {}
- self.internalSettings['nviz']['view']['focus']['x'] = -1
- self.internalSettings['nviz']['view']['focus']['y'] = -1
- self.internalSettings['nviz']['view']['focus']['z'] = -1
- self.internalSettings['nviz']['view']['dir'] = {}
- self.internalSettings['nviz']['view']['dir']['x'] = -1
- self.internalSettings['nviz']['view']['dir']['y'] = -1
- self.internalSettings['nviz']['view']['dir']['z'] = -1
- self.internalSettings['nviz']['view']['dir']['use'] = False
-
- for decor in ('arrow', 'scalebar'):
- self.internalSettings['nviz'][decor] = {}
- self.internalSettings['nviz'][decor]['position'] = {}
- self.internalSettings['nviz'][decor]['position']['x'] = 0
- self.internalSettings['nviz'][decor]['position']['y'] = 0
- self.internalSettings['nviz'][decor]['size'] = 100
- self.internalSettings['nviz']['vector'] = {}
- self.internalSettings['nviz']['vector']['points'] = {}
- self.internalSettings['nviz']['vector']['points']['marker'] = ("x",
- _("box"),
- _("sphere"),
- _("cube"),
- _("diamond"),
- _("dtree"),
- _("ctree"),
- _("aster"),
- _("gyro"),
- _("histogram"))
- self.internalSettings['vdigit']['bgmap'] = {}
- self.internalSettings['vdigit']['bgmap']['value'] = ''
-
- def ReadSettingsFile(self, settings = None):
- """!Reads settings file (mapset, location, gisdbase)"""
- if settings is None:
- settings = self.userSettings
-
- self._readFile(self.filePath, settings)
-
- # set environment variables
- font = self.Get(group = 'display', key = 'font', subkey = 'type')
- enc = self.Get(group = 'display', key = 'font', subkey = 'encoding')
- if font:
- os.environ["GRASS_FONT"] = font
- if enc:
- os.environ["GRASS_ENCODING"] = enc
-
- def _readFile(self, filename, settings = None):
- """!Read settings from file to dict
- @param filename settings file path
- @param settings dict where to store settings (None for self.userSettings)
- """
- if settings is None:
- settings = self.userSettings
-
- if not os.path.exists(filename):
- return
-
- try:
- fd = open(filename, "r")
- except IOError:
- sys.stderr.write(_("Unable to read settings file <%s>\n") % filename)
- return
-
- try:
- line = ''
- for line in fd.readlines():
- line = line.rstrip('%s' % os.linesep)
- group, key = line.split(self.sep)[0:2]
- kv = line.split(self.sep)[2:]
- subkeyMaster = None
- if len(kv) % 2 != 0: # multiple (e.g. nviz)
- subkeyMaster = kv[0]
- del kv[0]
- idx = 0
- while idx < len(kv):
- if subkeyMaster:
- subkey = [subkeyMaster, kv[idx]]
- else:
- subkey = kv[idx]
- value = kv[idx+1]
- value = self._parseValue(value, read = True)
- self.Append(settings, group, key, subkey, value)
- idx += 2
- except ValueError, e:
- print >> sys.stderr, _("Error: Reading settings from file <%(file)s> failed.\n"
- "\t\tDetails: %(detail)s\n"
- "\t\tLine: '%(line)s'\n") % { 'file' : filename,
- 'detail' : e,
- 'line' : line }
- fd.close()
-
- fd.close()
-
- def SaveToFile(self, settings = None):
- """!Save settings to the file"""
- if settings is None:
- settings = self.userSettings
-
- dirPath = GetSettingsPath()
- if not os.path.exists(dirPath):
- try:
- os.mkdir(dirPath)
- except:
- GError(_('Unable to create settings directory'))
- return
-
- try:
- file = open(self.filePath, "w")
- for group in settings.keys():
- for key in settings[group].keys():
- subkeys = settings[group][key].keys()
- file.write('%s%s%s%s' % (group, self.sep, key, self.sep))
- for idx in range(len(subkeys)):
- value = settings[group][key][subkeys[idx]]
- if type(value) == types.DictType:
- if idx > 0:
- file.write('%s%s%s%s%s' % (os.linesep, group, self.sep, key, self.sep))
- file.write('%s%s' % (subkeys[idx], self.sep))
- kvalues = settings[group][key][subkeys[idx]].keys()
- srange = range(len(kvalues))
- for sidx in srange:
- svalue = self._parseValue(settings[group][key][subkeys[idx]][kvalues[sidx]])
- file.write('%s%s%s' % (kvalues[sidx], self.sep,
- svalue))
- if sidx < len(kvalues) - 1:
- file.write('%s' % self.sep)
- else:
- if idx > 0 and \
- type(settings[group][key][subkeys[idx - 1]]) == types.DictType:
- file.write('%s%s%s%s%s' % (os.linesep, group, self.sep, key, self.sep))
- value = self._parseValue(settings[group][key][subkeys[idx]])
- file.write('%s%s%s' % (subkeys[idx], self.sep, value))
- if idx < len(subkeys) - 1 and \
- type(settings[group][key][subkeys[idx + 1]]) != types.DictType:
- file.write('%s' % self.sep)
- file.write(os.linesep)
- except IOError, e:
- raise GException(e)
- except StandardError, e:
- raise GException(_('Writing settings to file <%(file)s> failed.'
- '\n\nDetails: %(detail)s') % { 'file' : self.filePath,
- 'detail' : e })
-
- file.close()
-
- def _parseValue(self, value, read = False):
- """!Parse value to be store in settings file"""
- if read: # -> read settings (cast values)
- if value == 'True':
- value = True
- elif value == 'False':
- value = False
- elif value == 'None':
- value = None
- elif ':' in value: # -> color
- try:
- value = tuple(map(int, value.split(':')))
- except ValueError: # -> string
- pass
- else:
- try:
- value = int(value)
- except ValueError:
- try:
- value = float(value)
- except ValueError:
- pass
- else: # -> write settings
- if type(value) == type(()): # -> color
- value = str(value[0]) + ':' +\
- str(value[1]) + ':' + \
- str(value[2])
-
- return value
- def Get(self, group, key = None, subkey = None, internal = False):
- """!Get value by key/subkey
- Raise KeyError if key is not found
-
- @param group settings group
- @param key (value, None)
- @param subkey (value, list or None)
- @param internal use internal settings instead
- @return value
- """
- if internal is True:
- settings = self.internalSettings
- else:
- settings = self.userSettings
-
- try:
- if subkey is None:
- if key is None:
- return settings[group]
- else:
- return settings[group][key]
- else:
- if type(subkey) == type(tuple()) or \
- type(subkey) == type(list()):
- return settings[group][key][subkey[0]][subkey[1]]
- else:
- return settings[group][key][subkey]
- except KeyError:
- print >> sys.stderr, "Settings: unable to get value '%s:%s:%s'\n" % \
- (group, key, subkey)
-
- def Set(self, group, value, key = None, subkey = None, internal = False):
- """!Set value of key/subkey
-
- Raise KeyError if group/key is not found
-
- @param group settings group
- @param key key (value, None)
- @param subkey subkey (value, list or None)
- @param value value
- @param internal use internal settings instead
- """
- if internal is True:
- settings = self.internalSettings
- else:
- settings = self.userSettings
-
- try:
- if subkey is None:
- if key is None:
- settings[group] = value
- else:
- settings[group][key] = value
- else:
- if type(subkey) == type(tuple()) or \
- type(subkey) == type(list()):
- settings[group][key][subkey[0]][subkey[1]] = value
- else:
- settings[group][key][subkey] = value
- except KeyError:
- raise GException("%s '%s:%s:%s'" % (_("Unable to set "), group, key, subkey))
-
- def Append(self, dict, group, key, subkey, value):
- """!Set value of key/subkey
- Create group/key/subkey if not exists
-
- @param dict settings dictionary to use
- @param group settings group
- @param key key
- @param subkey subkey (value or list)
- @param value value
- """
- if group not in dict:
- dict[group] = {}
- if key not in dict[group]:
- dict[group][key] = {}
- if type(subkey) == types.ListType:
- # TODO: len(subkey) > 2
- if subkey[0] not in dict[group][key]:
- dict[group][key][subkey[0]] = {}
- try:
- dict[group][key][subkey[0]][subkey[1]] = value
- except TypeError:
- print >> sys.stderr, _("Unable to parse settings '%s'") % value + \
- ' (' + group + ':' + key + ':' + subkey[0] + ':' + subkey[1] + ')'
- else:
- try:
- dict[group][key][subkey] = value
- except TypeError:
- print >> sys.stderr, _("Unable to parse settings '%s'") % value + \
- ' (' + group + ':' + key + ':' + subkey + ')'
-
- def GetDefaultSettings(self):
- """!Get default user settings"""
- return self.defaultSettings
- def Reset(self, key = None):
- """!Reset to default settings
- @key key in settings dict (None for all keys)
- """
- if not key:
- self.userSettings = copy.deepcopy(self.defaultSettings)
- else:
- self.userSettings[key] = copy.deepcopy(self.defaultSettings[key])
-
- UserSettings = Settings()
- def GetDisplayVectSettings():
- settings = list()
- if not UserSettings.Get(group = 'vectorLayer', key = 'featureColor', subkey = ['transparent', 'enabled']):
- featureColor = UserSettings.Get(group = 'vectorLayer', key = 'featureColor', subkey = 'color')
- settings.append('color=%s' % rgb2str.get(featureColor, ':'.join(map(str,featureColor))))
- else:
- settings.append('color=none')
- if not UserSettings.Get(group = 'vectorLayer', key = 'areaFillColor', subkey = ['transparent', 'enabled']):
- fillColor = UserSettings.Get(group = 'vectorLayer', key = 'areaFillColor', subkey = 'color')
- settings.append('fcolor=%s' % rgb2str.get(fillColor, ':'.join(map(str,fillColor))))
- else:
- settings.append('fcolor=none')
-
- settings.append('width=%s' % UserSettings.Get(group = 'vectorLayer', key = 'line', subkey = 'width'))
- settings.append('icon=%s' % UserSettings.Get(group = 'vectorLayer', key = 'point', subkey = 'symbol'))
- settings.append('size=%s' % UserSettings.Get(group = 'vectorLayer', key = 'point', subkey = 'size'))
- types = []
- for ftype in ['point', 'line', 'boundary', 'centroid', 'area', 'face']:
- if UserSettings.Get(group = 'vectorLayer', key = 'showType', subkey = [ftype, 'enabled']):
- types.append(ftype)
- settings.append('type=%s' % ','.join(types))
- return settings
|