menuform.py 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. #! /usr/bin/python
  2. """
  3. @brief Construct simple wx.Python GUI from a GRASS command interface
  4. description.
  5. Classes:
  6. - grassTask
  7. - processTask
  8. - helpPanel
  9. - mainFrame
  10. - cmdPanel
  11. - GrassGUIApp
  12. - GUI
  13. Copyright (C) 2000-2009 by the GRASS Development Team
  14. This program is free software under the GPL (>=v2) Read the file
  15. COPYING coming with GRASS for details.
  16. This program is just a coarse approach to automatically build a GUI
  17. from a xml-based GRASS user interface description.
  18. You need to have Python 2.4, wxPython 2.8 and python-xml.
  19. The XML stream is read from executing the command given in the
  20. command line, thus you may call it for instance this way:
  21. python menuform.py r.basins.fill
  22. Or you set an alias or wrap the call up in a nice shell script, GUI
  23. environment ... please contribute your idea.
  24. Updated to wxPython 2.8 syntax and contrib widgets. Methods added to
  25. make it callable by gui. Method added to automatically re-run with
  26. pythonw on a Mac.
  27. @author Jan-Oliver Wagner <jan@intevation.de>
  28. @author Bernhard Reiter <bernhard@intevation.de>
  29. @author Michael Barton, Arizona State University
  30. @author Daniel Calvelo <dca.gis@gmail.com>
  31. @author Martin Landa <landa.martin@gmail.com>
  32. @todo
  33. - verify option value types
  34. """
  35. import sys
  36. import re
  37. import string
  38. import textwrap
  39. import os
  40. import time
  41. import types
  42. import copy
  43. import locale
  44. import types
  45. from threading import Thread
  46. import Queue
  47. import shlex
  48. ### i18N
  49. import gettext
  50. gettext.install('grasswxpy', os.path.join(os.getenv("GISBASE"), 'locale'), unicode=True)
  51. import globalvar
  52. if not os.getenv("GRASS_WXBUNDLED"):
  53. globalvar.CheckForWx()
  54. import wx
  55. import wx.html
  56. import wx.lib.flatnotebook as FN
  57. import wx.lib.colourselect as csel
  58. import wx.lib.filebrowsebutton as filebrowse
  59. from wx.lib.expando import ExpandoTextCtrl, EVT_ETC_LAYOUT_NEEDED
  60. from wx.lib.newevent import NewEvent
  61. try:
  62. import xml.etree.ElementTree as etree
  63. except ImportError:
  64. import elementtree.ElementTree as etree # Python <= 2.4
  65. import utils
  66. gisbase = os.getenv("GISBASE")
  67. if gisbase is None:
  68. print >>sys.stderr, "We don't seem to be properly installed, or we are being run outside GRASS. Expect glitches."
  69. gisbase = os.path.join(os.path.dirname( sys.argv[0] ), os.path.pardir)
  70. wxbase = gisbase
  71. else:
  72. wxbase = os.path.join(globalvar.ETCWXDIR)
  73. sys.path.append( wxbase)
  74. imagepath = os.path.join(wxbase, "images")
  75. sys.path.append(imagepath)
  76. from grass.script import core as grass
  77. import gselect
  78. import gcmd
  79. import goutput
  80. import utils
  81. from preferences import globalSettings as UserSettings
  82. try:
  83. import subprocess
  84. except:
  85. from compat import subprocess
  86. wxUpdateDialog, EVT_DIALOG_UPDATE = NewEvent()
  87. # From lib/gis/col_str.c, except purple which is mentioned
  88. # there but not given RGB values
  89. str2rgb = {'aqua': (100, 128, 255),
  90. 'black': (0, 0, 0),
  91. 'blue': (0, 0, 255),
  92. 'brown': (180, 77, 25),
  93. 'cyan': (0, 255, 255),
  94. 'gray': (128, 128, 128),
  95. 'green': (0, 255, 0),
  96. 'grey': (128, 128, 128),
  97. 'indigo': (0, 128, 255),
  98. 'magenta': (255, 0, 255),
  99. 'orange': (255, 128, 0),
  100. 'purple': (128, 0, 128),
  101. 'red': (255, 0, 0),
  102. 'violet': (128, 0, 255),
  103. 'white': (255, 255, 255),
  104. 'yellow': (255, 255, 0)}
  105. rgb2str = {}
  106. for (s,r) in str2rgb.items():
  107. rgb2str[ r ] = s
  108. def color_resolve(color):
  109. if len(color)>0 and color[0] in "0123456789":
  110. rgb = tuple(map(int,color.split( ':' )))
  111. label = color
  112. else:
  113. # Convert color names to RGB
  114. try:
  115. rgb = str2rgb[ color ]
  116. label = color
  117. except KeyError:
  118. rgb = (200,200,200)
  119. label = _('Select Color')
  120. return (rgb, label)
  121. def text_beautify( someString , width=70):
  122. """
  123. Make really long texts shorter, clean up whitespace and
  124. remove trailing punctuation.
  125. """
  126. if width > 0:
  127. return escape_ampersand( string.strip(
  128. os.linesep.join( textwrap.wrap( utils.normalize_whitespace(someString), width ) ),
  129. ".,;:" ) )
  130. else:
  131. return escape_ampersand( string.strip(utils.normalize_whitespace(someString ), ".,;:" ))
  132. def escape_ampersand(text):
  133. """!Escapes ampersands with additional ampersand for GUI"""
  134. return string.replace(text, "&", "&&")
  135. class UpdateThread(Thread):
  136. """!Update dialog widgets in the thread"""
  137. def __init__(self, parent, event, eventId, task):
  138. Thread.__init__(self)
  139. self.parent = parent
  140. self.event = event
  141. self.eventId = eventId
  142. self.task = task
  143. self.setDaemon(True)
  144. # list of functions which updates the dialog
  145. self.data = {}
  146. def run(self):
  147. # get widget id
  148. if not self.eventId:
  149. for p in self.task.params:
  150. if p.get('gisprompt', False) == False:
  151. continue
  152. prompt = p.get('element', '')
  153. if prompt == 'vector':
  154. name = p.get('name', '')
  155. if name in ('map', 'input'):
  156. self.eventId = p['wxId'][0]
  157. if self.eventId is None:
  158. return
  159. p = self.task.get_param(self.eventId, element='wxId', raiseError=False)
  160. if not p or \
  161. not p.has_key('wxId-bind'):
  162. return
  163. # get widget prompt
  164. pType = p.get('prompt', '')
  165. if not pType:
  166. return
  167. # check for map/input parameter
  168. pMap = self.task.get_param('map', raiseError=False)
  169. if not pMap:
  170. pMap = self.task.get_param('input', raiseError=False)
  171. if pMap:
  172. map = pMap.get('value', '')
  173. else:
  174. map = None
  175. # update reference widgets
  176. for uid in p['wxId-bind']:
  177. win = self.parent.FindWindowById(uid)
  178. name = win.GetName()
  179. map = layer = None
  180. driver = db = table = None
  181. if name in ('LayerSelect', 'LayerNameSelect',
  182. 'ColumnSelect'):
  183. if p.get('element', '') == 'vector': # -> vector
  184. # get map name
  185. map = p.get('value', '')
  186. # get layer
  187. for bid in p['wxId-bind']:
  188. p = self.task.get_param(bid, element = 'wxId', raiseError = False)
  189. if not p:
  190. continue
  191. if p.get('element', '') == 'layer':
  192. layer = p.get('value', '')
  193. if layer != '':
  194. layer = int(p.get('value', 1))
  195. else:
  196. layer = int(p.get('default', 1))
  197. break
  198. elif p.get('element', '') == 'layer': # -> layer
  199. # get layer
  200. layer = p.get('value', '')
  201. if layer != '':
  202. layer = int(p.get('value', 1))
  203. else:
  204. layer = int(p.get('default', 1))
  205. # get map name
  206. pMap = self.task.get_param(p['wxId'][0], element = 'wxId-bind', raiseError = False)
  207. if pMap:
  208. map = pMap.get('value', '')
  209. if name == 'TableSelect' or \
  210. (name == 'ColumnSelect' and not map):
  211. pDriver = self.task.get_param('dbdriver', element='prompt', raiseError=False)
  212. if pDriver:
  213. driver = pDriver.get('value', '')
  214. pDb = self.task.get_param('dbname', element='prompt', raiseError=False)
  215. if pDb:
  216. db = pDb.get('value', '')
  217. if name == 'ColumnSelect':
  218. pTable = self.task.get_param('dbtable', element='element', raiseError=False)
  219. if pTable:
  220. table = pTable.get('value', '')
  221. if name == 'LayerSelect':
  222. self.data[win.InsertLayers] = { 'vector' : map }
  223. elif name == 'LayerNameSelect':
  224. # determine format
  225. native = True
  226. for id in pMap['wxId']:
  227. winVec = self.parent.FindWindowById(id)
  228. if winVec.GetName() == 'VectorFormat' and \
  229. winVec.GetSelection() != 0:
  230. native = False
  231. break
  232. if not native:
  233. if map:
  234. self.data[win.InsertLayers] = { 'dsn' : map.rstrip('@OGR') }
  235. else:
  236. self.data[win.InsertLayers] = { }
  237. elif name == 'TableSelect':
  238. self.data[win.InsertTables] = { 'driver' : driver,
  239. 'database' : db }
  240. elif name == 'ColumnSelect':
  241. if map:
  242. self.data[win.InsertColumns] = { 'vector' : map, 'layer' : layer }
  243. else: # table
  244. if driver and db:
  245. self.data[win.InsertTableColumns] = { 'table' : pTable.get('value'),
  246. 'driver' : driver,
  247. 'database' : db }
  248. elif pTable:
  249. self.data[win.InsertTableColumns] = { 'table' : pTable.get('value') }
  250. def UpdateDialog(parent, event, eventId, task):
  251. return UpdateThread(parent, event, eventId, task)
  252. class UpdateQThread(Thread):
  253. """!Update dialog widgets in the thread"""
  254. requestId = 0
  255. def __init__(self, parent, requestQ, resultQ, **kwds):
  256. Thread.__init__(self, **kwds)
  257. self.parent = parent # cmdPanel
  258. self.setDaemon(True)
  259. self.requestQ = requestQ
  260. self.resultQ = resultQ
  261. self.start()
  262. def Update(self, callable, *args, **kwds):
  263. UpdateQThread.requestId += 1
  264. self.request = None
  265. self.requestQ.put((UpdateQThread.requestId, callable, args, kwds))
  266. return UpdateQThread.requestId
  267. def run(self):
  268. while True:
  269. requestId, callable, args, kwds = self.requestQ.get()
  270. requestTime = time.time()
  271. self.request = callable(*args, **kwds)
  272. self.resultQ.put((requestId, self.request.run()))
  273. event = wxUpdateDialog(data = self.request.data)
  274. wx.PostEvent(self.parent, event)
  275. class grassTask:
  276. """!This class holds the structures needed for both filling by the
  277. parser and use by the interface constructor.
  278. Use as either grassTask() for empty definition or
  279. grassTask('grass.command' ) for parsed filling.
  280. """
  281. def __init__(self, grassModule = None):
  282. self.path = grassModule
  283. self.name = _('unknown')
  284. self.params = list()
  285. self.description = ''
  286. self.label = ''
  287. self.flags = list()
  288. self.keywords = list()
  289. if grassModule is not None:
  290. processTask(tree = etree.fromstring(getInterfaceDescription(grassModule)),
  291. task = self)
  292. def get_name(self):
  293. """!Get task name"""
  294. return self.name
  295. def get_list_params(self, element = 'name'):
  296. """!Get list of parameters"""
  297. params = []
  298. for p in self.params:
  299. params.append(p['name'])
  300. return params
  301. def get_list_flags(self, element = 'name'):
  302. """!Get list of parameters"""
  303. flags = []
  304. for p in self.flags:
  305. flags.append(p['name'])
  306. return flags
  307. def get_param(self, value, element='name', raiseError=True):
  308. """!Find and return a param by name."""
  309. try:
  310. for p in self.params:
  311. val = p[element]
  312. if val is None:
  313. continue
  314. if type(val) in (types.ListType, types.TupleType):
  315. if value in val:
  316. return p
  317. elif type(val) == types.StringType:
  318. if p[element][:len(value)] == value:
  319. return p
  320. else:
  321. if p[element] == value:
  322. return p
  323. except KeyError:
  324. pass
  325. if raiseError:
  326. raise ValueError, _("Parameter element '%(element)s' not found: '%(value)s'") % \
  327. { 'element' : element, 'value' : value }
  328. else:
  329. return None
  330. def set_param(self, aParam, aValue):
  331. """
  332. Set param value/values.
  333. """
  334. param = self.get_param(aParam)
  335. param['value'] = aValue
  336. def get_flag(self, aFlag):
  337. """
  338. Find and return a flag by name.
  339. """
  340. for f in self.flags:
  341. if f['name'] == aFlag:
  342. return f
  343. raise ValueError, _("Flag not found: %s") % aFlag
  344. def set_flag(self, aFlag, aValue):
  345. """
  346. Enable / disable flag.
  347. """
  348. param = self.get_flag(aFlag)
  349. param['value'] = aValue
  350. def getCmd(self, ignoreErrors = False):
  351. """
  352. Produce an array of command name and arguments for feeding
  353. into some execve-like command processor.
  354. If ignoreErrors==True then it will return whatever has been
  355. built so far, even though it would not be a correct command
  356. for GRASS.
  357. """
  358. cmd = [self.name]
  359. errors = 0
  360. errStr = ""
  361. for flag in self.flags:
  362. if 'value' in flag and flag['value']:
  363. if len(flag['name']) > 1: # e.g. overwrite
  364. cmd += [ '--' + flag['name'] ]
  365. else:
  366. cmd += [ '-' + flag['name'] ]
  367. for p in self.params:
  368. if p.get('value','') == '' and p.get('required','no') != 'no':
  369. if p.get('default', '') != '':
  370. cmd += [ '%s=%s' % ( p['name'], p['default'] ) ]
  371. else:
  372. cmd += [ '%s=%s' % ( p['name'], _('<required>') ) ]
  373. errStr += _("Parameter %(name)s (%(desc)s) is missing.\n") % \
  374. {'name' : p['name'], 'desc' : p['description']}
  375. errors += 1
  376. elif p.get('value','') != '' and p['value'] != p.get('default','') :
  377. # Output only values that have been set, and different from defaults
  378. cmd += [ '%s=%s' % ( p['name'], p['value'] ) ]
  379. if errors and not ignoreErrors:
  380. raise ValueError, errStr
  381. return cmd
  382. def set_options(self, opts):
  383. """!Set flags and parameters
  384. @param opts list of flags and parameters"""
  385. for opt in opts:
  386. if opt[0] == '-': # flag
  387. self.set_flag(opt.lstrip('-'), True)
  388. else: # parameter
  389. key, value = opt.split('=', 1)
  390. self.set_param(key, value)
  391. class processTask:
  392. """!A ElementTree handler for the --interface-description output,
  393. as defined in grass-interface.dtd. Extend or modify this and the
  394. DTD if the XML output of GRASS' parser is extended or modified.
  395. @param tree root tree node
  396. @param task grassTask instance or None
  397. @return grassTask instance
  398. """
  399. def __init__(self, tree, task = None):
  400. if task:
  401. self.task = task
  402. else:
  403. self.task = grassTask()
  404. self.root = tree
  405. self.__processModule()
  406. self.__processParams()
  407. self.__processFlags()
  408. def __processModule(self):
  409. """!Process module description"""
  410. self.task.name = self.root.get('name', default = 'unknown')
  411. # keywords
  412. for keyword in self.__getNodeText(self.root, 'keywords').split(','):
  413. self.task.keywords.append(keyword.strip())
  414. self.task.label = self.__getNodeText(self.root, 'label')
  415. self.task.description = self.__getNodeText(self.root, 'description')
  416. def __processParams(self):
  417. """!Process parameters description"""
  418. for p in self.root.findall('parameter'):
  419. # gisprompt
  420. node_gisprompt = p.find('gisprompt')
  421. gisprompt = False
  422. age = element = prompt = None
  423. if node_gisprompt is not None:
  424. gisprompt = True
  425. age = node_gisprompt.get('age', '')
  426. element = node_gisprompt.get('element', '')
  427. prompt = node_gisprompt.get('prompt', '')
  428. # value(s)
  429. values = []
  430. values_desc = []
  431. node_values = p.find('values')
  432. if node_values is not None:
  433. for pv in node_values.findall('value'):
  434. values.append(self.__getNodeText(pv, 'name'))
  435. desc = self.__getNodeText(pv, 'description')
  436. if desc:
  437. values_desc.append(desc)
  438. # keydesc
  439. key_desc = []
  440. node_key_desc = p.find('keydesc')
  441. if node_key_desc is not None:
  442. for ki in node_key_desc.findall('item'):
  443. key_desc.append(ki.text)
  444. self.task.params.append( {
  445. "name" : p.get('name'),
  446. "type" : p.get('type'),
  447. "required" : p.get('required'),
  448. "multiple" : p.get('multiple'),
  449. "label" : self.__getNodeText(p, 'label'),
  450. "description" : self.__getNodeText(p, 'description'),
  451. 'gisprompt' : gisprompt,
  452. 'age' : age,
  453. 'element' : element,
  454. 'prompt' : prompt,
  455. "guisection" : self.__getNodeText(p, 'guisection'),
  456. "guidependency" : self.__getNodeText(p, 'guidependency'),
  457. "default" : self.__getNodeText(p, 'default'),
  458. "values" : values,
  459. "values_desc" : values_desc,
  460. "value" : '',
  461. "key_desc" : key_desc } )
  462. def __processFlags(self):
  463. """!Process flags description"""
  464. for p in self.root.findall('flag'):
  465. self.task.flags.append( {
  466. "name" : p.get('name'),
  467. "label" : self.__getNodeText(p, 'label'),
  468. "description" : self.__getNodeText(p, 'description'),
  469. "guisection" : self.__getNodeText(p, 'guisection') } )
  470. def __getNodeText(self, node, tag, default = ''):
  471. """!Get node text"""
  472. p = node.find(tag)
  473. if p is not None:
  474. return utils.normalize_whitespace(p.text)
  475. return default
  476. def GetTask(self):
  477. """!Get grassTask instance"""
  478. return self.task
  479. class helpPanel(wx.html.HtmlWindow):
  480. """
  481. This panel holds the text from GRASS docs.
  482. GISBASE must be set in the environment to find the html docs dir.
  483. The SYNOPSIS section is skipped, since this Panel is supposed to
  484. be integrated into the cmdPanel and options are obvious there.
  485. """
  486. def __init__(self, grass_command = "index", text = None,
  487. skip_description=False, *args, **kwargs):
  488. """ If grass_command is given, the corresponding HTML help file will
  489. be presented, with all links pointing to absolute paths of
  490. local files.
  491. If 'skip_description' is True, the HTML corresponding to
  492. SYNOPSIS will be skipped, thus only presenting the help file
  493. from the DESCRIPTION section onwards.
  494. If 'text' is given, it must be the HTML text to be presented in the Panel.
  495. """
  496. wx.html.HtmlWindow.__init__(self, *args, **kwargs)
  497. self.fspath = gisbase + "/docs/html/"
  498. self.SetStandardFonts ( size = 10 )
  499. self.SetBorders(10)
  500. wx.InitAllImageHandlers()
  501. if text is None:
  502. if skip_description:
  503. self.fillContentsFromFile ( self.fspath + grass_command + ".html",
  504. skip_description=skip_description )
  505. self.Ok = True
  506. else:
  507. ### FIXME: calling LoadPage() is strangely time-consuming (only first call)
  508. # self.LoadPage(self.fspath + grass_command + ".html")
  509. self.Ok = False
  510. else:
  511. self.SetPage( text )
  512. self.Ok = True
  513. def fillContentsFromFile( self, htmlFile, skip_description=True ):
  514. aLink = re.compile( r'(<a href="?)(.+\.html?["\s]*>)', re.IGNORECASE )
  515. imgLink = re.compile( r'(<img src="?)(.+\.[png|gif])', re.IGNORECASE )
  516. try:
  517. # contents = [ '<head><base href="%s"></head>' % self.fspath ]
  518. contents = []
  519. skip = False
  520. for l in file( htmlFile, "rb" ).readlines():
  521. if "DESCRIPTION" in l:
  522. skip = False
  523. if not skip:
  524. # do skip the options description if requested
  525. if "SYNOPSIS" in l:
  526. skip = skip_description
  527. else:
  528. # FIXME: find only first item
  529. findALink = aLink.search( l )
  530. if findALink is not None:
  531. contents.append( aLink.sub(findALink.group(1)+
  532. self.fspath+findALink.group(2),l) )
  533. findImgLink = imgLink.search( l )
  534. if findImgLink is not None:
  535. contents.append( imgLink.sub(findImgLink.group(1)+
  536. self.fspath+findImgLink.group(2),l) )
  537. if findALink is None and findImgLink is None:
  538. contents.append( l )
  539. self.SetPage( "".join( contents ) )
  540. self.Ok = True
  541. except: # The Manual file was not found
  542. self.Ok = False
  543. class mainFrame(wx.Frame):
  544. """!This is the Frame containing the dialog for options input.
  545. The dialog is organized in a notebook according to the guisections
  546. defined by each GRASS command.
  547. If run with a parent, it may Apply, Ok or Cancel; the latter two
  548. close the dialog. The former two trigger a callback.
  549. If run standalone, it will allow execution of the command.
  550. The command is checked and sent to the clipboard when clicking
  551. 'Copy'.
  552. """
  553. def __init__(self, parent, ID, task_description, get_dcmd=None, layer=None):
  554. self.get_dcmd = get_dcmd
  555. self.layer = layer
  556. self.task = task_description
  557. self.parent = parent # LayerTree | None
  558. # module name + keywords
  559. if self.task.name.split('.')[-1] in ('py', 'sh'):
  560. title = str(self.task.name.rsplit('.',1)[0])
  561. else:
  562. title = self.task.name
  563. try:
  564. if self.task.keywords != ['']:
  565. title += " [" + ', '.join( self.task.keywords ) + "]"
  566. except ValueError:
  567. pass
  568. wx.Frame.__init__(self, parent=parent, id=ID, title=title,
  569. pos=wx.DefaultPosition, style=wx.DEFAULT_FRAME_STYLE | wx.TAB_TRAVERSAL)
  570. self.locale = wx.Locale(language = wx.LANGUAGE_DEFAULT)
  571. self.panel = wx.Panel(parent=self, id=wx.ID_ANY)
  572. # statusbar
  573. self.CreateStatusBar()
  574. # icon
  575. self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass_dialog.ico'), wx.BITMAP_TYPE_ICO))
  576. guisizer = wx.BoxSizer(wx.VERTICAL)
  577. # set apropriate output window
  578. if self.parent:
  579. self.standalone = False
  580. else:
  581. self.standalone = True
  582. # logo+description
  583. topsizer = wx.BoxSizer(wx.HORIZONTAL)
  584. # GRASS logo
  585. self.logo = wx.StaticBitmap(parent=self.panel,
  586. bitmap=wx.Bitmap(name=os.path.join(imagepath,
  587. 'grass_form.png'),
  588. type=wx.BITMAP_TYPE_PNG))
  589. topsizer.Add (item=self.logo, proportion=0, border=3,
  590. flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL)
  591. #
  592. # put module description
  593. #
  594. if self.task.label != '':
  595. module_desc = self.task.label + ' ' + self.task.description
  596. else:
  597. module_desc = self.task.description
  598. self.description = StaticWrapText (parent=self.panel,
  599. label=module_desc)
  600. topsizer.Add (item=self.description, proportion=1, border=5,
  601. flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL | wx.EXPAND)
  602. guisizer.Add (item=topsizer, proportion=0, flag=wx.EXPAND)
  603. self.panel.SetSizerAndFit(guisizer)
  604. self.Layout()
  605. # notebooks
  606. self.notebookpanel = cmdPanel (parent=self.panel, task=self.task, standalone=self.standalone,
  607. mainFrame=self)
  608. ### add 'command output' tab also for dialog open from menu
  609. # if self.standalone:
  610. self.goutput = self.notebookpanel.goutput
  611. self.notebookpanel.OnUpdateValues = self.updateValuesHook
  612. guisizer.Add (item=self.notebookpanel, proportion=1, flag=wx.EXPAND)
  613. # status bar
  614. status_text = _("Enter parameters for '") + self.task.name + "'"
  615. try:
  616. self.task.getCmd()
  617. self.updateValuesHook()
  618. except ValueError:
  619. self.SetStatusText( status_text )
  620. # buttons
  621. btnsizer = wx.BoxSizer(orient=wx.HORIZONTAL)
  622. # cancel
  623. self.btn_cancel = wx.Button(parent=self.panel, id=wx.ID_CLOSE)
  624. self.btn_cancel.SetToolTipString(_("Close this window without executing the command (Ctrl+Q)"))
  625. btnsizer.Add(item=self.btn_cancel, proportion=0, flag=wx.ALL | wx.ALIGN_CENTER, border=10)
  626. self.btn_cancel.Bind(wx.EVT_BUTTON, self.OnCancel)
  627. # help
  628. self.btn_help = wx.Button(parent=self.panel, id=wx.ID_HELP)
  629. self.btn_help.SetToolTipString(_("Show manual page of the command (Ctrl+H)"))
  630. self.btn_help.Bind(wx.EVT_BUTTON, self.OnHelp)
  631. if not hasattr(self.notebookpanel, "manual_tab_id"):
  632. self.btn_help.Hide()
  633. if self.get_dcmd is not None: # A callback has been set up
  634. btn_apply = wx.Button(parent=self.panel, id=wx.ID_APPLY)
  635. btn_ok = wx.Button(parent=self.panel, id=wx.ID_OK)
  636. btn_ok.SetDefault()
  637. btnsizer.Add(item=btn_apply, proportion=0,
  638. flag=wx.ALL | wx.ALIGN_CENTER,
  639. border=10)
  640. btnsizer.Add(item=btn_ok, proportion=0,
  641. flag=wx.ALL | wx.ALIGN_CENTER,
  642. border=10)
  643. btn_apply.Bind(wx.EVT_BUTTON, self.OnApply)
  644. btn_ok.Bind(wx.EVT_BUTTON, self.OnOK)
  645. else: # We're standalone
  646. # run
  647. self.btn_run = wx.Button(parent=self.panel, id=wx.ID_OK, label= _("&Run"))
  648. self.btn_run.SetToolTipString(_("Run the command (Ctrl+R)"))
  649. self.btn_run.SetDefault()
  650. # abort
  651. ### self.btn_abort = wx.Button(parent=self.panel, id=wx.ID_STOP)
  652. ### self.btn_abort.SetToolTipString(_("Abort the running command"))
  653. ### self.btn_abort.Enable(False)
  654. # copy
  655. self.btn_clipboard = wx.Button(parent=self.panel, id=wx.ID_COPY)
  656. self.btn_clipboard.SetToolTipString(_("Copy the current command string to the clipboard (Ctrl+C)"))
  657. ### btnsizer.Add(item=self.btn_abort, proportion=0,
  658. ### flag=wx.ALL | wx.ALIGN_CENTER,
  659. ### border=10)
  660. btnsizer.Add(item=self.btn_run, proportion=0,
  661. flag=wx.ALL | wx.ALIGN_CENTER,
  662. border=10)
  663. btnsizer.Add(item=self.btn_clipboard, proportion=0,
  664. flag=wx.ALL | wx.ALIGN_CENTER,
  665. border=10)
  666. self.btn_run.Bind(wx.EVT_BUTTON, self.OnRun)
  667. ### self.btn_abort.Bind(wx.EVT_BUTTON, self.OnAbort)
  668. self.btn_clipboard.Bind(wx.EVT_BUTTON, self.OnCopy)
  669. # add help button
  670. btnsizer.Add(item=self.btn_help, proportion=0, flag=wx.ALL | wx.ALIGN_CENTER, border=10)
  671. guisizer.Add(item=btnsizer, proportion=0, flag=wx.ALIGN_CENTER | wx.LEFT | wx.RIGHT,
  672. border = 30)
  673. if self.parent is not None:
  674. self.outputType = None
  675. for p in self.task.params:
  676. if p.get('name', '') == 'output':
  677. self.outputType = p.get('prompt', None)
  678. break
  679. if self.outputType in ('raster', 'vector', '3d-raster'):
  680. # add newly created map into layer tree
  681. self.addbox = wx.CheckBox(parent=self.panel,
  682. label=_('Add created map into layer tree'), style = wx.NO_BORDER)
  683. self.addbox.SetValue(UserSettings.Get(group='cmd', key='addNewLayer', subkey='enabled'))
  684. guisizer.Add(item=self.addbox, proportion=0,
  685. flag=wx.EXPAND | wx.LEFT | wx.RIGHT | wx.BOTTOM,
  686. border=5)
  687. if self.get_dcmd is None:
  688. # close dialog when command is terminated
  689. self.closebox = wx.CheckBox(parent=self.panel,
  690. label=_('Close dialog on finish'), style = wx.NO_BORDER)
  691. self.closebox.SetValue(UserSettings.Get(group='cmd', key='closeDlg', subkey='enabled'))
  692. guisizer.Add(item=self.closebox, proportion=0,
  693. flag=wx.EXPAND | wx.LEFT | wx.RIGHT | wx.BOTTOM,
  694. border=5)
  695. self.Bind(wx.EVT_CLOSE, self.OnCancel)
  696. self.Bind(wx.EVT_KEY_UP, self.OnKeyUp)
  697. #constrained_size = self.notebookpanel.GetSize()
  698. # 80 takes the tabbar into account
  699. #self.notebookpanel.SetSize( (constrained_size[0] + 25, constrained_size[1]) )
  700. #self.notebookpanel.Layout()
  701. #
  702. # do layout
  703. #
  704. guisizer.SetSizeHints(self.panel)
  705. # called automatically by SetSizer()
  706. self.panel.SetAutoLayout(True)
  707. self.panel.SetSizerAndFit(guisizer)
  708. sizeFrame = self.GetBestSize()
  709. self.SetMinSize(sizeFrame)
  710. self.SetSize((sizeFrame[0], sizeFrame[1] +
  711. self.notebookpanel.constrained_size[1] -
  712. self.notebookpanel.panelMinHeight))
  713. # thread to update dialog
  714. # create queues
  715. self.requestQ = Queue.Queue()
  716. self.resultQ = Queue.Queue()
  717. self.updateThread = UpdateQThread(self.notebookpanel, self.requestQ, self.resultQ)
  718. self.Layout()
  719. #keep initial window size limited for small screens
  720. width,height = self.GetSizeTuple()
  721. if width > 640: width = 640
  722. if height > 480: height = 480
  723. self.SetSize((width,height))
  724. # fix goutput's pane size
  725. if self.goutput:
  726. self.goutput.SetSashPosition(int(self.GetSize()[1] * .75))
  727. def updateValuesHook(self):
  728. """!Update status bar data"""
  729. self.SetStatusText(' '.join(self.notebookpanel.createCmd(ignoreErrors = True)) )
  730. def OnKeyUp(self, event):
  731. """!Key released (check hot-keys)"""
  732. try:
  733. kc = chr(event.GetKeyCode())
  734. except ValueError:
  735. event.Skip()
  736. return
  737. if not event.ControlDown():
  738. event.Skip()
  739. return
  740. if kc == 'Q':
  741. self.OnCancel(None)
  742. elif kc == 'S':
  743. self.OnAbort(None)
  744. elif kc == 'H':
  745. self.OnHelp(None)
  746. elif kc == 'R':
  747. self.OnRun(None)
  748. elif kc == 'C':
  749. self.OnCopy(None)
  750. event.Skip()
  751. def OnOK(self, event):
  752. """!OK button pressed"""
  753. cmd = self.OnApply(event)
  754. if cmd is not None and self.get_dcmd is not None:
  755. self.OnCancel(event)
  756. def OnApply(self, event):
  757. """!Apply the command"""
  758. cmd = self.createCmd()
  759. if cmd is not None and self.get_dcmd is not None:
  760. # return d.* command to layer tree for rendering
  761. self.get_dcmd(cmd, self.layer, {"params": self.task.params,
  762. "flags" :self.task.flags},
  763. self)
  764. # echo d.* command to output console
  765. # self.parent.writeDCommand(cmd)
  766. return cmd
  767. def OnRun(self, event):
  768. """!Run the command"""
  769. cmd = self.createCmd()
  770. if cmd == None or len(cmd) < 2:
  771. return
  772. if self.standalone or cmd[0][0:2] != "d.":
  773. # Send any non-display command to parent window (probably wxgui.py)
  774. # put to parents
  775. # switch to 'Command output'
  776. if self.notebookpanel.notebook.GetSelection() != self.notebookpanel.goutputId:
  777. self.notebookpanel.notebook.SetSelection(self.notebookpanel.goutputId)
  778. try:
  779. if self.task.path:
  780. cmd[0] = self.task.path # full path
  781. self.goutput.RunCmd(cmd)
  782. except AttributeError, e:
  783. print >> sys.stderr, "%s: Propably not running in wxgui.py session?" % (e)
  784. print >> sys.stderr, "parent window is: %s" % (str(self.parent))
  785. # Send any other command to the shell.
  786. else:
  787. gcmd.Command(cmd)
  788. # update buttons status
  789. for btn in (self.btn_run,
  790. self.btn_cancel,
  791. self.btn_clipboard,
  792. self.btn_help):
  793. btn.Enable(False)
  794. ### self.btn_abort.Enable(True)
  795. def OnAbort(self, event):
  796. """!Abort running command"""
  797. event = goutput.wxCmdAbort(aborted=True)
  798. wx.PostEvent(self.goutput, event)
  799. def OnCopy(self, event):
  800. """!Copy the command"""
  801. cmddata = wx.TextDataObject()
  802. # list -> string
  803. cmdstring = ' '.join(self.createCmd(ignoreErrors=True))
  804. cmddata.SetText(cmdstring)
  805. if wx.TheClipboard.Open():
  806. # wx.TheClipboard.UsePrimarySelection(True)
  807. wx.TheClipboard.SetData(cmddata)
  808. wx.TheClipboard.Close()
  809. self.SetStatusText( _("'%s' copied to clipboard") % \
  810. (cmdstring))
  811. def OnCancel(self, event):
  812. """!Cancel button pressed"""
  813. self.MakeModal(False)
  814. if self.get_dcmd and \
  815. self.parent and \
  816. self.parent.GetName() in ('LayerTree',
  817. 'MapWindow'):
  818. # display decorations and
  819. # pressing OK or cancel after setting layer properties
  820. if self.task.name in ['d.barscale','d.legend','d.histogram'] \
  821. or len(self.parent.GetPyData(self.layer)[0]['cmd']) >= 1:
  822. self.Hide()
  823. # canceled layer with nothing set
  824. elif len(self.parent.GetPyData(self.layer)[0]['cmd']) < 1:
  825. self.parent.Delete(self.layer)
  826. self.Destroy()
  827. else:
  828. # cancel for non-display commands
  829. self.Destroy()
  830. def OnHelp(self, event):
  831. """!Show manual page (switch to the 'Manual' notebook page)"""
  832. if hasattr(self.notebookpanel, "manual_tab_id"):
  833. self.notebookpanel.notebook.SetSelection(self.notebookpanel.manual_tab_id)
  834. self.notebookpanel.OnPageChange(None)
  835. if event:
  836. event.Skip()
  837. def createCmd(self, ignoreErrors = False):
  838. """!Create command string (python list)"""
  839. return self.notebookpanel.createCmd(ignoreErrors=ignoreErrors)
  840. class cmdPanel(wx.Panel):
  841. """
  842. A panel containing a notebook dividing in tabs the different guisections of the GRASS cmd.
  843. """
  844. def __init__( self, parent, task, standalone, mainFrame, *args, **kwargs ):
  845. wx.Panel.__init__( self, parent, *args, **kwargs )
  846. self.parent = mainFrame
  847. self.task = task
  848. fontsize = 10
  849. # Determine tab layout
  850. sections = []
  851. is_section = {}
  852. not_hidden = [ p for p in self.task.params + self.task.flags if not p.get( 'hidden','no' ) == 'yes' ]
  853. self.label_id = [] # wrap titles on resize
  854. self.Bind(wx.EVT_SIZE, self.OnSize)
  855. for task in not_hidden:
  856. if task.get( 'required','no' ) == 'yes':
  857. # All required go into Main, even if they had defined another guisection
  858. task['guisection'] = _( 'Required' )
  859. if task.get( 'guisection','' ) == '':
  860. # Undefined guisections end up into Options
  861. task['guisection'] = _( 'Optional' )
  862. if not is_section.has_key(task['guisection']):
  863. # We do it like this to keep the original order, except for Main which goes first
  864. is_section[task['guisection']] = 1
  865. sections.append( task['guisection'] )
  866. else:
  867. is_section[ task['guisection'] ] += 1
  868. del is_section
  869. # 'Required' tab goes first, 'Optional' as the last one
  870. for (newidx,content) in [ (0,_( 'Required' )), (len(sections)-1,_('Optional')) ]:
  871. if content in sections:
  872. idx = sections.index( content )
  873. sections[idx:idx+1] = []
  874. sections[newidx:newidx] = [content]
  875. panelsizer = wx.BoxSizer(orient=wx.VERTICAL)
  876. # Build notebook
  877. nbStyle = globalvar.FNPageStyle
  878. self.notebook = FN.FlatNotebook( self, id=wx.ID_ANY, style=nbStyle)
  879. self.notebook.SetTabAreaColour(globalvar.FNPageColor)
  880. self.notebook.Bind(FN.EVT_FLATNOTEBOOK_PAGE_CHANGED, self.OnPageChange)
  881. tab = {}
  882. tabsizer = {}
  883. for section in sections:
  884. tab[section] = wx.ScrolledWindow( parent=self.notebook )
  885. tab[section].SetScrollRate(10,10)
  886. tabsizer[section] = wx.BoxSizer(orient=wx.VERTICAL)
  887. self.notebook.AddPage( tab[section], text=section )
  888. # are we running from command line?
  889. ### add 'command output' tab regardless standalone dialog
  890. if self.parent.get_dcmd is None:
  891. self.goutput = goutput.GMConsole(parent=self, margin=False,
  892. pageid=self.notebook.GetPageCount())
  893. self.goutputId = self.notebook.GetPageCount()
  894. self.outpage = self.notebook.AddPage(self.goutput, text=_("Command output") )
  895. else:
  896. self.goutput = None
  897. self.goutputId = -1
  898. self.manual_tab = helpPanel(parent = self.notebook, grass_command = self.task.name)
  899. self.manual_tabsizer = wx.BoxSizer(wx.VERTICAL)
  900. if not os.path.isfile(self.manual_tab.fspath + self.task.name + ".html"):
  901. self.manual_tab.Hide()
  902. else:
  903. self.notebook.AddPage(self.manual_tab, text=_("Manual"))
  904. self.manual_tab_id = self.notebook.GetPageCount() - 1
  905. self.notebook.SetSelection(0)
  906. panelsizer.Add(item=self.notebook, proportion=1, flag=wx.EXPAND )
  907. #
  908. # flags
  909. #
  910. text_style = wx.FONTWEIGHT_NORMAL
  911. visible_flags = [ f for f in self.task.flags if not f.get( 'hidden', 'no' ) == 'yes' ]
  912. for f in visible_flags:
  913. which_sizer = tabsizer[ f['guisection'] ]
  914. which_panel = tab[ f['guisection'] ]
  915. # if label is given: description -> tooltip
  916. if f.get('label','') != '':
  917. title = text_beautify( f['label'])
  918. tooltip = text_beautify ( f['description'], width=-1)
  919. else:
  920. title = text_beautify( f['description'] )
  921. tooltip = None
  922. title_sizer = wx.BoxSizer(wx.HORIZONTAL)
  923. rtitle_txt = wx.StaticText(parent=which_panel,
  924. label = '(' + f['name'] + ')')
  925. chk = wx.CheckBox(parent=which_panel, label = title, style = wx.NO_BORDER)
  926. self.label_id.append(chk.GetId())
  927. if tooltip:
  928. chk.SetToolTipString(tooltip)
  929. if 'value' in f:
  930. chk.SetValue( f['value'] )
  931. title_sizer.Add(item=chk, proportion=1,
  932. flag=wx.EXPAND)
  933. title_sizer.Add(item=rtitle_txt, proportion=0,
  934. flag=wx.ALIGN_RIGHT | wx.ALIGN_CENTER_VERTICAL)
  935. which_sizer.Add(item=title_sizer, proportion=0,
  936. flag=wx.EXPAND | wx.TOP | wx.LEFT | wx.RIGHT, border=5)
  937. f['wxId'] = [ chk.GetId(), ]
  938. chk.Bind(wx.EVT_CHECKBOX, self.OnSetValue)
  939. if f['name'] in ('verbose', 'quiet'):
  940. chk.Bind(wx.EVT_CHECKBOX, self.OnVerbosity)
  941. vq = UserSettings.Get(group='cmd', key='verbosity', subkey='selection')
  942. if f['name'] == vq:
  943. chk.SetValue(True)
  944. f['value'] = True
  945. elif f['name'] == 'overwrite':
  946. chk.SetValue(UserSettings.Get(group='cmd', key='overwrite', subkey='enabled'))
  947. f['value'] = UserSettings.Get(group='cmd', key='overwrite', subkey='enabled')
  948. #
  949. # parameters
  950. #
  951. visible_params = [ p for p in self.task.params if not p.get( 'hidden', 'no' ) == 'yes' ]
  952. try:
  953. first_param = visible_params[0]
  954. except IndexError:
  955. first_param = None
  956. for p in visible_params:
  957. which_sizer = tabsizer[ p['guisection'] ]
  958. which_panel = tab[ p['guisection'] ]
  959. # if label is given -> label and description -> tooltip
  960. # otherwise description -> lavel
  961. if p.get('label','') != '':
  962. title = text_beautify( p['label'] )
  963. tooltip = text_beautify ( p['description'], width = -1)
  964. else:
  965. title = text_beautify( p['description'] )
  966. tooltip = None
  967. txt = None
  968. # text style (required -> bold)
  969. if p.get('required','no') == 'no':
  970. text_style = wx.FONTWEIGHT_NORMAL
  971. else:
  972. text_style = wx.FONTWEIGHT_BOLD
  973. # title sizer (description, name, type)
  974. if (len(p.get('values', []) ) > 0) and \
  975. p.get('multiple', 'no') == 'yes' and \
  976. p.get('gisprompt',False) == False and \
  977. p.get('type', '') == 'string':
  978. title_txt = wx.StaticBox (parent=which_panel, id=wx.ID_ANY)
  979. else:
  980. title_sizer = wx.BoxSizer(wx.HORIZONTAL)
  981. title_txt = wx.StaticText(parent=which_panel)
  982. rtitle_txt = wx.StaticText(parent=which_panel,
  983. label = '(' + p['name'] + ', ' + p['type'] + ')')
  984. title_sizer.Add(item=title_txt, proportion=1,
  985. flag=wx.LEFT | wx.TOP | wx.EXPAND, border=5)
  986. title_sizer.Add(item=rtitle_txt, proportion=0,
  987. flag=wx.ALIGN_RIGHT | wx.RIGHT | wx.TOP, border=5)
  988. which_sizer.Add(item=title_sizer, proportion=0,
  989. flag=wx.EXPAND)
  990. self.label_id.append(title_txt.GetId())
  991. # title expansion
  992. if p.get('multiple','no') == 'yes' and len( p.get('values','') ) == 0:
  993. title = _("[multiple]") + " " + title
  994. if p.get('value','') == '' :
  995. p['value'] = p.get('default','')
  996. if ( len(p.get('values', []) ) > 0):
  997. valuelist = map(str, p.get('values',[]))
  998. valuelist_desc = map(unicode, p.get('values_desc',[]))
  999. if p.get('multiple', 'no') == 'yes' and \
  1000. p.get('gisprompt',False) == False and \
  1001. p.get('type', '') == 'string':
  1002. title_txt.SetLabel(" %s: (%s, %s) " % (title, p['name'], p['type']))
  1003. if len(valuelist) > 6:
  1004. hSizer=wx.StaticBoxSizer ( box=title_txt, orient=wx.VERTICAL )
  1005. else:
  1006. hSizer=wx.StaticBoxSizer ( box=title_txt, orient=wx.HORIZONTAL )
  1007. isEnabled = {}
  1008. # copy default values
  1009. if p['value'] == '':
  1010. p['value'] = p.get('default', '')
  1011. for defval in p.get('value', '').split(','):
  1012. isEnabled[ defval ] = 'yes'
  1013. # for multi checkboxes, this is an array of all wx IDs
  1014. # for each individual checkbox
  1015. p[ 'wxId' ] = list()
  1016. idx = 0
  1017. for val in valuelist:
  1018. try:
  1019. label = valuelist_desc[idx]
  1020. except IndexError:
  1021. label = val
  1022. chkbox = wx.CheckBox( parent=which_panel,
  1023. label = text_beautify(label))
  1024. p[ 'wxId' ].append( chkbox.GetId() )
  1025. if isEnabled.has_key(val):
  1026. chkbox.SetValue( True )
  1027. hSizer.Add( item=chkbox, proportion=0,
  1028. flag=wx.ADJUST_MINSIZE | wx.ALL, border=1 )
  1029. chkbox.Bind(wx.EVT_CHECKBOX, self.OnCheckBoxMulti)
  1030. idx += 1
  1031. which_sizer.Add( item=hSizer, proportion=0,
  1032. flag=wx.EXPAND | wx.TOP | wx.RIGHT | wx.LEFT, border=5 )
  1033. elif p.get('gisprompt', False) == False:
  1034. if len(valuelist) == 1: # -> textctrl
  1035. title_txt.SetLabel("%s. %s %s" % (title, _('Valid range'),
  1036. str(valuelist[0]) + ':'))
  1037. if p.get('type','') == 'integer' and \
  1038. p.get('multiple','no') == 'no':
  1039. # for multiple integers use textctrl instead of spinsctrl
  1040. try:
  1041. minValue, maxValue = map(int, valuelist[0].split('-'))
  1042. except ValueError:
  1043. minValue = -1e6
  1044. maxValue = 1e6
  1045. txt2 = wx.SpinCtrl(parent=which_panel, id=wx.ID_ANY, size=globalvar.DIALOG_SPIN_SIZE,
  1046. min=minValue, max=maxValue)
  1047. txt2.SetName("SpinCtrl")
  1048. style = wx.BOTTOM | wx.LEFT
  1049. else:
  1050. txt2 = wx.TextCtrl(parent=which_panel, value = p.get('default',''))
  1051. txt2.SetName("TextCtrl")
  1052. style = wx.EXPAND | wx.BOTTOM | wx.LEFT
  1053. if p.get('value', '') != '':
  1054. # parameter previously set
  1055. if txt2.GetName() == "SpinCtrl":
  1056. txt2.SetValue(int(p['value']))
  1057. else:
  1058. txt2.SetValue(p['value'])
  1059. which_sizer.Add(item=txt2, proportion=0,
  1060. flag=style, border=5)
  1061. p['wxId'] = [ txt2.GetId(), ]
  1062. txt2.Bind(wx.EVT_TEXT, self.OnSetValue)
  1063. else:
  1064. # list of values (combo)
  1065. title_txt.SetLabel(title + ':')
  1066. cb = wx.ComboBox(parent = which_panel, id = wx.ID_ANY, value = p.get('default',''),
  1067. size = globalvar.DIALOG_COMBOBOX_SIZE,
  1068. choices = valuelist, style = wx.CB_DROPDOWN)
  1069. if p.get('value', '') != '':
  1070. cb.SetValue(p['value']) # parameter previously set
  1071. which_sizer.Add(item = cb, proportion = 0,
  1072. flag = wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT, border = 5)
  1073. p['wxId'] = [cb.GetId(),]
  1074. cb.Bind(wx.EVT_COMBOBOX, self.OnSetValue)
  1075. cb.Bind(wx.EVT_TEXT, self.OnSetValue)
  1076. # text entry
  1077. if (p.get('type','string') in ('string','integer','float')
  1078. and len(p.get('values',[])) == 0
  1079. and p.get('gisprompt',False) == False
  1080. and p.get('prompt','') != 'color'):
  1081. title_txt.SetLabel(title + ':' )
  1082. if p.get('multiple','yes') == 'yes' or \
  1083. p.get('type', 'string') in ('string', 'float') or \
  1084. len(p.get('key_desc', [])) > 1:
  1085. txt3 = wx.TextCtrl(parent=which_panel, value = p.get('default',''))
  1086. if p.get('value','') != '':
  1087. txt3.SetValue(str(p['value'])) # parameter previously set
  1088. txt3.Bind(wx.EVT_TEXT, self.OnSetValue)
  1089. style = wx.EXPAND | wx.BOTTOM | wx.LEFT | wx.RIGHT
  1090. else:
  1091. minValue = -1e9
  1092. maxValue = 1e9
  1093. txt3 = wx.SpinCtrl(parent=which_panel, value=p.get('default',''),
  1094. size=globalvar.DIALOG_SPIN_SIZE,
  1095. min=minValue, max=maxValue)
  1096. if p.get('value','') != '':
  1097. txt3.SetValue(int(p['value'])) # parameter previously set
  1098. txt3.Bind(wx.EVT_SPINCTRL, self.OnSetValue)
  1099. txt3.Bind(wx.EVT_TEXT, self.OnSetValue)
  1100. style = wx.BOTTOM | wx.LEFT | wx.RIGHT
  1101. which_sizer.Add(item=txt3, proportion=0,
  1102. flag=style, border=5)
  1103. p['wxId'] = [ txt3.GetId(), ]
  1104. #
  1105. # element selection tree combobox (maps, icons, regions, etc.)
  1106. #
  1107. if p.get('gisprompt', False) == True:
  1108. title_txt.SetLabel(title + ':')
  1109. # GIS element entry
  1110. if p.get('prompt','') not in ('color',
  1111. 'color_none',
  1112. 'dbdriver',
  1113. 'dbname',
  1114. 'dbtable',
  1115. 'dbcolumn',
  1116. 'layer',
  1117. 'layer_all') and \
  1118. p.get('element', '') != 'file':
  1119. if p.get('multiple', 'no') == 'yes':
  1120. multiple = True
  1121. else:
  1122. multiple = False
  1123. if p.get('age', '') == 'new':
  1124. mapsets = [grass.gisenv()['MAPSET'],]
  1125. else:
  1126. mapsets = None
  1127. selection = gselect.Select(parent=which_panel, id=wx.ID_ANY,
  1128. size=globalvar.DIALOG_GSELECT_SIZE,
  1129. type=p.get('element', ''),
  1130. multiple=multiple, mapsets=mapsets)
  1131. if p.get('value','') != '':
  1132. selection.SetValue(p['value']) # parameter previously set
  1133. # A select.Select is a combobox with two children: a textctl and a popupwindow;
  1134. # we target the textctl here
  1135. p['wxId'] = [selection.GetChildren()[0].GetId(), ]
  1136. selection.GetChildren()[0].Bind(wx.EVT_TEXT, self.OnSetValue)
  1137. if p.get('prompt', '') == 'vector':
  1138. selection.Bind(wx.EVT_TEXT, self.OnUpdateSelection)
  1139. if p.get('age', '') == 'old':
  1140. # OGR supported (read-only)
  1141. hsizer = wx.GridBagSizer(vgap=5, hgap=5)
  1142. hsizer.Add(item=selection,
  1143. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT | wx.RIGHT | wx.TOP | wx.ALIGN_TOP,
  1144. border=5,
  1145. pos = (0, 0))
  1146. # format (native / ogr)
  1147. rbox = wx.RadioBox(parent = which_panel, id = wx.ID_ANY,
  1148. label = " %s " % _("Format"),
  1149. style = wx.RA_SPECIFY_ROWS,
  1150. size = (100, -1),
  1151. choices = [_("Native"), _("OGR")])
  1152. rbox.SetName('VectorFormat')
  1153. rbox.Bind(wx.EVT_RADIOBOX, self.OnVectorFormat)
  1154. hsizer.Add(item=rbox,
  1155. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT | wx.RIGHT | wx.ALIGN_TOP,
  1156. pos = (0, 1),
  1157. span = (3, 1),
  1158. border=5)
  1159. ogrSelection = filebrowse.DirBrowseButton(parent = which_panel, id = wx.ID_ANY,
  1160. size = globalvar.DIALOG_GSELECT_SIZE,
  1161. labelText = '',
  1162. dialogTitle = _('Choose OGR data source'),
  1163. buttonText = _('Browse'),
  1164. startDirectory = os.getcwd())
  1165. for win in ogrSelection.GetChildren():
  1166. win.SetName('OgrSelect')
  1167. ogrSelection.Enable(False)
  1168. ogrSelection.Bind(wx.EVT_TEXT, self.OnUpdateSelection)
  1169. ogrSelection.Bind(wx.EVT_TEXT, self.OnSetValue)
  1170. hsizer.Add(item=wx.StaticText(parent = which_panel, id = wx.ID_ANY,
  1171. label = _("Name of OGR data source:")),
  1172. flag=wx.ALIGN_BOTTOM | wx.LEFT,
  1173. pos = (1, 0),
  1174. border=5)
  1175. hsizer.Add(item=ogrSelection,
  1176. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT | wx.RIGHT | wx.ALIGN_TOP,
  1177. pos = (2, 0),
  1178. border=5)
  1179. which_sizer.Add(item = hsizer, proportion = 0)
  1180. p['wxId'].append(rbox.GetId())
  1181. p['wxId'].append(ogrSelection.GetChildren()[1].GetId())
  1182. else:
  1183. which_sizer.Add(item=selection, proportion=0,
  1184. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT | wx.RIGHT | wx.TOP | wx.ALIGN_CENTER_VERTICAL,
  1185. border=5)
  1186. else:
  1187. which_sizer.Add(item=selection, proportion=0,
  1188. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT | wx.RIGHT | wx.TOP | wx.ALIGN_CENTER_VERTICAL,
  1189. border=5)
  1190. # layer, dbdriver, dbname, dbcolumn, dbtable entry
  1191. elif p.get('prompt', '') in ('dbdriver',
  1192. 'dbname',
  1193. 'dbtable',
  1194. 'dbcolumn',
  1195. 'layer',
  1196. 'layer_all'):
  1197. if p.get('multiple', 'no') == 'yes':
  1198. win = wx.TextCtrl(parent=which_panel, value = p.get('default',''),
  1199. size=globalvar.DIALOG_TEXTCTRL_SIZE)
  1200. win.Bind(wx.EVT_TEXT, self.OnSetValue)
  1201. else:
  1202. if p.get('prompt', '') in ('layer',
  1203. 'layer_all'):
  1204. if p.get('prompt', '') == 'layer_all':
  1205. all = True
  1206. else:
  1207. all = False
  1208. win = wx.BoxSizer(wx.HORIZONTAL)
  1209. if p.get('age', 'old_layer') == 'old_layer':
  1210. win1 = gselect.LayerSelect(parent=which_panel,
  1211. all=all,
  1212. default=p['default'])
  1213. win1.Bind(wx.EVT_CHOICE, self.OnUpdateSelection)
  1214. win1.Bind(wx.EVT_CHOICE, self.OnSetValue)
  1215. else:
  1216. win1 = wx.SpinCtrl(parent=which_panel, id=wx.ID_ANY,
  1217. min=1, max=100, initial=int(p['default']))
  1218. win1.Bind(wx.EVT_SPINCTRL, self.OnSetValue)
  1219. win2 = gselect.LayerNameSelect(parent = which_panel)
  1220. win2.Bind(wx.EVT_TEXT, self.OnSetValue)
  1221. p['wxId'] = [ win1.GetId(), win2.GetId() ]
  1222. win.Add(item = win1, proportion = 0)
  1223. win.Add(item = win2, proportion = 0,
  1224. flag = wx.LEFT | wx.ALIGN_CENTER_VERTICAL,
  1225. border = 5)
  1226. elif p.get('prompt', '') == 'dbdriver':
  1227. win = gselect.DriverSelect(parent=which_panel,
  1228. choices=p['values'],
  1229. value=p['default'])
  1230. win.Bind(wx.EVT_COMBOBOX, self.OnUpdateSelection)
  1231. win.Bind(wx.EVT_COMBOBOX, self.OnSetValue)
  1232. elif p.get('prompt', '') == 'dbname':
  1233. win = gselect.DatabaseSelect(parent=which_panel,
  1234. value=p['default'])
  1235. win.Bind(wx.EVT_TEXT, self.OnUpdateSelection)
  1236. win.Bind(wx.EVT_TEXT, self.OnSetValue)
  1237. elif p.get('prompt', '') == 'dbtable':
  1238. if p.get('age', 'old_dbtable') == 'old_dbtable':
  1239. win = gselect.TableSelect(parent=which_panel)
  1240. win.Bind(wx.EVT_COMBOBOX, self.OnUpdateSelection)
  1241. win.Bind(wx.EVT_COMBOBOX, self.OnSetValue)
  1242. else:
  1243. win = wx.TextCtrl(parent=which_panel, value = p.get('default',''),
  1244. size=globalvar.DIALOG_TEXTCTRL_SIZE)
  1245. win.Bind(wx.EVT_TEXT, self.OnSetValue)
  1246. elif p.get('prompt', '') == 'dbcolumn':
  1247. win = gselect.ColumnSelect(parent = which_panel,
  1248. value = p.get('default', ''),
  1249. param = p)
  1250. win.Bind(wx.EVT_COMBOBOX, self.OnSetValue)
  1251. win.Bind(wx.EVT_TEXT, self.OnSetValue)
  1252. try:
  1253. p['wxId'] = [ win.GetId(), ]
  1254. except AttributeError:
  1255. pass
  1256. which_sizer.Add(item=win, proportion=0,
  1257. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT, border=5)
  1258. # color entry
  1259. elif p.get('prompt', '') in ('color',
  1260. 'color_none'):
  1261. default_color = (200,200,200)
  1262. label_color = _("Select Color")
  1263. if p.get('default','') != '':
  1264. default_color, label_color = color_resolve( p['default'] )
  1265. if p.get('value','') != '': # parameter previously set
  1266. default_color, label_color = color_resolve( p['value'] )
  1267. if p.get('prompt', '') == 'color_none':
  1268. this_sizer = wx.BoxSizer(orient=wx.HORIZONTAL )
  1269. else:
  1270. this_sizer = which_sizer
  1271. btn_colour = csel.ColourSelect(parent=which_panel, id=wx.ID_ANY,
  1272. label=label_color, colour=default_color,
  1273. pos=wx.DefaultPosition, size=(150,-1) )
  1274. this_sizer.Add(item=btn_colour, proportion=0,
  1275. flag=wx.ADJUST_MINSIZE | wx.BOTTOM | wx.LEFT, border=5)
  1276. # For color selectors, this is a two-member array, holding the IDs of
  1277. # the selector proper and either a "transparent" button or None
  1278. p['wxId'] = [btn_colour.GetId(),]
  1279. btn_colour.Bind(csel.EVT_COLOURSELECT, self.OnColorChange )
  1280. if p.get('prompt', '') == 'color_none':
  1281. none_check = wx.CheckBox(which_panel, wx.ID_ANY, _("Transparent") )
  1282. if p.get('value','') != '' and p.get('value',[''])[0] == "none":
  1283. none_check.SetValue(True)
  1284. else:
  1285. none_check.SetValue(False)
  1286. # none_check.SetFont( wx.Font( fontsize, wx.FONTFAMILY_DEFAULT, wx.NORMAL, text_style, 0, ''))
  1287. this_sizer.Add(item=none_check, proportion=0,
  1288. flag=wx.ADJUST_MINSIZE | wx.LEFT | wx.RIGHT | wx.TOP, border=5)
  1289. which_sizer.Add( this_sizer )
  1290. none_check.Bind(wx.EVT_CHECKBOX, self.OnColorChange)
  1291. p['wxId'].append( none_check.GetId() )
  1292. else:
  1293. p['wxId'].append(None)
  1294. # file selector
  1295. elif p.get('prompt','') != 'color' and p.get('element', '') == 'file':
  1296. fbb = filebrowse.FileBrowseButton(parent=which_panel, id=wx.ID_ANY, fileMask = '*',
  1297. size=globalvar.DIALOG_GSELECT_SIZE, labelText='',
  1298. dialogTitle=_('Choose %s') % \
  1299. p.get('description',_('File')),
  1300. buttonText=_('Browse'),
  1301. startDirectory=os.getcwd(), fileMode=0,
  1302. changeCallback=self.OnSetValue)
  1303. if p.get('value','') != '':
  1304. fbb.SetValue(p['value']) # parameter previously set
  1305. which_sizer.Add(item=fbb, proportion=0,
  1306. flag=wx.EXPAND | wx.RIGHT, border=5)
  1307. # A file browse button is a combobox with two children:
  1308. # a textctl and a button;
  1309. # we have to target the button here
  1310. p['wxId'] = [ fbb.GetChildren()[1].GetId(), ]
  1311. if title_txt is not None:
  1312. # create tooltip if given
  1313. if len(p['values_desc']) > 0:
  1314. if tooltip:
  1315. tooltip += 2 * os.linesep
  1316. else:
  1317. tooltip = ''
  1318. if len(p['values']) == len(p['values_desc']):
  1319. for i in range(len(p['values'])):
  1320. tooltip += p['values'][i] + ': ' + p['values_desc'][i] + os.linesep
  1321. tooltip.strip(os.linesep)
  1322. if tooltip:
  1323. title_txt.SetToolTipString(tooltip)
  1324. if p == first_param:
  1325. if len(p['wxId']) > 0:
  1326. self.FindWindowById(p['wxId'][0]).SetFocus()
  1327. #
  1328. # set widget relations for OnUpdateSelection
  1329. #
  1330. pMap = None
  1331. pLayer = []
  1332. pDriver = None
  1333. pDatabase = None
  1334. pTable = None
  1335. pColumn = []
  1336. for p in self.task.params:
  1337. if p.get('gisprompt', False) == False:
  1338. continue
  1339. guidep = p.get('guidependency', '')
  1340. if guidep:
  1341. # fixed options dependency defined
  1342. options = guidep.split(',')
  1343. for opt in options:
  1344. pOpt = self.task.get_param(opt, element = 'name', raiseError = False)
  1345. if id:
  1346. if not p.has_key('wxId-bind'):
  1347. p['wxId-bind'] = list()
  1348. p['wxId-bind'] += pOpt['wxId']
  1349. continue
  1350. prompt = p.get('element', '')
  1351. if prompt == 'vector':
  1352. name = p.get('name', '')
  1353. if name in ('map', 'input'):
  1354. pMap = p
  1355. elif prompt == 'layer':
  1356. pLayer.append(p)
  1357. elif prompt == 'dbcolumn':
  1358. pColumn.append(p)
  1359. elif prompt == 'dbdriver':
  1360. pDriver = p
  1361. elif prompt == 'dbname':
  1362. pDatabase = p
  1363. elif prompt == 'dbtable':
  1364. pTable = p
  1365. # collect ids
  1366. pColumnIds = []
  1367. for p in pColumn:
  1368. pColumnIds += p['wxId']
  1369. pLayerIds = []
  1370. for p in pLayer:
  1371. pLayerIds += p['wxId']
  1372. # set wxId-bindings
  1373. if pMap:
  1374. pMap['wxId-bind'] = copy.copy(pColumnIds)
  1375. if pLayer:
  1376. pMap['wxId-bind'] += pLayerIds
  1377. if len(pLayer) == 1:
  1378. # TODO: fix modules with more 'layer' options
  1379. pLayer[0]['wxId-bind'] = copy.copy(pColumnIds)
  1380. if pDriver and pTable:
  1381. pDriver['wxId-bind'] = pTable['wxId']
  1382. if pDatabase and pTable:
  1383. pDatabase['wxId-bind'] = pTable['wxId']
  1384. if pTable and pColumnIds:
  1385. pTable['wxId-bind'] = pColumnIds
  1386. #
  1387. # determine panel size
  1388. #
  1389. maxsizes = (0,0)
  1390. for section in sections:
  1391. # tabsizer[section].SetSizeHints( tab[section] )
  1392. #tab[section].SetAutoLayout(True)
  1393. tab[section].SetSizer( tabsizer[section] )
  1394. tabsizer[section].Fit( tab[section] )
  1395. tab[section].Layout()
  1396. minsecsizes = tabsizer[section].GetSize()
  1397. maxsizes = map( lambda x: max( maxsizes[x], minsecsizes[x] ), (0,1) )
  1398. # TODO: be less arbitrary with these 600
  1399. self.panelMinHeight = 100
  1400. self.constrained_size = (min(600, maxsizes[0]) + 25, min(400, maxsizes[1]) + 25)
  1401. for section in sections:
  1402. tab[section].SetMinSize( (self.constrained_size[0], self.panelMinHeight) )
  1403. # tab[section].SetMinSize( constrained_size )
  1404. if self.manual_tab.Ok:
  1405. self.manual_tab.SetMinSize( (self.constrained_size[0], self.panelMinHeight) )
  1406. # manual_tab.SetMinSize( constrained_size )
  1407. self.SetSizer( panelsizer )
  1408. panelsizer.Fit(self.notebook)
  1409. self.hasMain = tab.has_key( _('Required') ) # publish, to enclosing Frame for instance
  1410. self.Bind(EVT_DIALOG_UPDATE, self.OnUpdateDialog)
  1411. def OnVectorFormat(self, event):
  1412. """!Change vector format (native / ogr)"""
  1413. sel = event.GetSelection()
  1414. idEvent = event.GetId()
  1415. p = self.task.get_param(value = idEvent, element = 'wxId', raiseError = False)
  1416. if not p:
  1417. return # should not happen
  1418. winNative = None
  1419. winOGR = None
  1420. for id in p['wxId']:
  1421. if id == idEvent:
  1422. continue
  1423. name = self.FindWindowById(id).GetName()
  1424. if name == 'Select':
  1425. winNative = self.FindWindowById(id + 1) # fix the mystery (also in nviz_tools.py)
  1426. elif name == 'OgrSelect':
  1427. winOgr = self.FindWindowById(id + 2)
  1428. # enable / disable widgets & update values
  1429. if sel == 0: # -> native
  1430. winOgr.Enable(False)
  1431. winNative.Enable(True)
  1432. p['value'] = winNative.GetValue()
  1433. elif sel == 1: # -> OGR
  1434. winNative.Enable(False)
  1435. winOgr.Enable(True)
  1436. p['value'] = winOgr.GetValue()
  1437. self.OnUpdateValues()
  1438. self.OnUpdateSelection(event)
  1439. def OnUpdateDialog(self, event):
  1440. for fn, kwargs in event.data.iteritems():
  1441. fn(**kwargs)
  1442. self.parent.updateValuesHook()
  1443. def OnVerbosity(self, event):
  1444. """!Verbosity level changed"""
  1445. verbose = self.FindWindowById(self.task.get_flag('verbose')['wxId'][0])
  1446. quiet = self.FindWindowById(self.task.get_flag('quiet')['wxId'][0])
  1447. if event.IsChecked():
  1448. if event.GetId() == verbose.GetId():
  1449. if quiet.IsChecked():
  1450. quiet.SetValue(False)
  1451. self.task.get_flag('quiet')['value'] = False
  1452. else:
  1453. if verbose.IsChecked():
  1454. verbose.SetValue(False)
  1455. self.task.get_flag('verbose')['value'] = False
  1456. event.Skip()
  1457. def OnPageChange(self, event):
  1458. if not event:
  1459. sel = self.notebook.GetSelection()
  1460. else:
  1461. sel = event.GetSelection()
  1462. if hasattr(self, "manual_tab_id") and \
  1463. sel == self.manual_tab_id:
  1464. # calling LoadPage() is strangely time-consuming (only first call)
  1465. # FIXME: move to helpPage.__init__()
  1466. if not self.manual_tab.Ok:
  1467. wx.Yield()
  1468. self.manual_tab.LoadPage(self.manual_tab.fspath + self.task.name + ".html")
  1469. self.manual_tab.Ok = True
  1470. self.Layout()
  1471. def OnColorChange( self, event ):
  1472. myId = event.GetId()
  1473. for p in self.task.params:
  1474. if 'wxId' in p and myId in p['wxId']:
  1475. has_button = p['wxId'][1] is not None
  1476. if has_button and wx.FindWindowById( p['wxId'][1] ).GetValue() == True:
  1477. p[ 'value' ] = 'none'
  1478. else:
  1479. colorchooser = wx.FindWindowById( p['wxId'][0] )
  1480. new_color = colorchooser.GetValue()[:]
  1481. # This is weird: new_color is a 4-tuple and new_color[:] is a 3-tuple
  1482. # under wx2.8.1
  1483. new_label = rgb2str.get( new_color, ':'.join(map(str,new_color)) )
  1484. colorchooser.SetLabel( new_label )
  1485. colorchooser.SetColour( new_color )
  1486. colorchooser.Refresh()
  1487. p[ 'value' ] = colorchooser.GetLabel()
  1488. self.OnUpdateValues()
  1489. def OnUpdateValues(self):
  1490. """
  1491. If we were part of a richer interface, report back the current command being built.
  1492. This method should be set by the parent of this panel if needed. It's a hook, actually.
  1493. Beware of what is 'self' in the method def, though. It will be called with no arguments.
  1494. """
  1495. pass
  1496. def OnCheckBoxMulti(self, event):
  1497. """
  1498. Fill the values as a ','-separated string according to current status of the checkboxes.
  1499. """
  1500. me = event.GetId()
  1501. theParam = None
  1502. for p in self.task.params:
  1503. if 'wxId' in p and me in p['wxId']:
  1504. theParam = p
  1505. myIndex = p['wxId'].index( me )
  1506. # Unpack current value list
  1507. currentValues = {}
  1508. for isThere in theParam.get('value', '').split(','):
  1509. currentValues[isThere] = 1
  1510. theValue = theParam['values'][myIndex]
  1511. if event.Checked():
  1512. currentValues[ theValue ] = 1
  1513. else:
  1514. del currentValues[ theValue ]
  1515. # Keep the original order, so that some defaults may be recovered
  1516. currentValueList = []
  1517. for v in theParam['values']:
  1518. if currentValues.has_key(v):
  1519. currentValueList.append( v )
  1520. # Pack it back
  1521. theParam['value'] = ','.join( currentValueList )
  1522. self.OnUpdateValues()
  1523. def OnSetValue(self, event):
  1524. """!
  1525. Retrieve the widget value and set the task value field
  1526. accordingly.
  1527. Use for widgets that have a proper GetValue() method, i.e. not
  1528. for selectors.
  1529. """
  1530. myId = event.GetId()
  1531. me = wx.FindWindowById(myId)
  1532. name = me.GetName()
  1533. for porf in self.task.params + self.task.flags:
  1534. if 'wxId' in porf:
  1535. found = False
  1536. porf['wxId']
  1537. for id in porf['wxId']:
  1538. if id == myId:
  1539. found = True
  1540. break
  1541. if found:
  1542. if name in ('LayerSelect', 'DriverSelect', 'TableSelect'):
  1543. porf['value'] = me.GetStringSelection()
  1544. else:
  1545. porf['value'] = me.GetValue()
  1546. if name == 'OgrSelect':
  1547. porf['value'] += '@OGR'
  1548. self.OnUpdateValues()
  1549. event.Skip()
  1550. def OnUpdateSelection(self, event):
  1551. """
  1552. Update dialog (layers, tables, columns, etc.)
  1553. """
  1554. if event:
  1555. self.parent.updateThread.Update(UpdateDialog,
  1556. self,
  1557. event,
  1558. event.GetId(),
  1559. self.task)
  1560. else:
  1561. self.parent.updateThread.Update(UpdateDialog,
  1562. self,
  1563. None,
  1564. None,
  1565. self.task)
  1566. def createCmd( self, ignoreErrors = False ):
  1567. """
  1568. Produce a command line string (list) or feeding into GRASS.
  1569. If ignoreErrors==True then it will return whatever has been
  1570. built so far, even though it would not be a correct command
  1571. for GRASS.
  1572. """
  1573. try:
  1574. cmd = self.task.getCmd( ignoreErrors=ignoreErrors )
  1575. except ValueError, err:
  1576. dlg = wx.MessageDialog(parent=self,
  1577. message=unicode(err),
  1578. caption=_("Error in %s") % self.task.name,
  1579. style=wx.OK | wx.ICON_ERROR | wx.CENTRE)
  1580. dlg.ShowModal()
  1581. dlg.Destroy()
  1582. cmd = None
  1583. return cmd
  1584. def OnSize(self, event):
  1585. width = event.GetSize()[0]
  1586. fontsize = self.GetFont().GetPointSize()
  1587. text_width = width / (fontsize - 3)
  1588. if text_width < 70:
  1589. text_width = 70
  1590. for id in self.label_id:
  1591. win = self.FindWindowById(id)
  1592. label = win.GetLabel()
  1593. label_new = '\n'.join(textwrap.wrap(label, text_width ))
  1594. win.SetLabel(label_new)
  1595. event.Skip()
  1596. def getInterfaceDescription(cmd):
  1597. """!Returns the XML description for the GRASS cmd.
  1598. The DTD must be located in $GISBASE/etc/grass-interface.dtd,
  1599. otherwise the parser will not succeed.
  1600. @param cmd command (name of GRASS module)
  1601. """
  1602. cmdout = os.popen(cmd + r' --interface-description', "r").read()
  1603. if not len(cmdout) > 0:
  1604. raise IOError, _("Unable to fetch interface description for command '%s'.") % cmd
  1605. p = re.compile('(grass-interface.dtd)')
  1606. p.search(cmdout)
  1607. cmdout = p.sub(globalvar.ETCDIR + r'/grass-interface.dtd', cmdout)
  1608. return cmdout
  1609. class GrassGUIApp(wx.App):
  1610. """!Stand-alone GRASS command GUI
  1611. """
  1612. def __init__(self, grass_task):
  1613. self.grass_task = grass_task
  1614. wx.App.__init__(self, False)
  1615. def OnInit(self):
  1616. self.mf = mainFrame(parent = None, ID = wx.ID_ANY, task_description = self.grass_task)
  1617. self.mf.CentreOnScreen()
  1618. self.mf.Show(True)
  1619. self.SetTopWindow(self.mf)
  1620. return True
  1621. class GUI:
  1622. """
  1623. Parses GRASS commands when module is imported and used
  1624. from Layer Manager.
  1625. """
  1626. def __init__(self, parent=-1):
  1627. self.parent = parent
  1628. self.grass_task = None
  1629. self.cmd = list()
  1630. def GetCmd(self):
  1631. """Get validated command"""
  1632. return self.cmd
  1633. def ParseInterface(self, cmd, parser = processTask):
  1634. """!Parse interface
  1635. @param cmd command to be parsed (given as list)
  1636. """
  1637. # enc = locale.getdefaultlocale()[1]
  1638. # if enc and enc.lower() not in ("utf8", "utf-8"):
  1639. # tree = etree.fromstring(getInterfaceDescription(cmd[0]).decode(enc).encode("utf-8"))
  1640. # else:
  1641. tree = etree.fromstring(getInterfaceDescription(cmd[0]))
  1642. return processTask(tree).GetTask()
  1643. def ParseCommand(self, cmd, gmpath=None, completed=None, parentframe=None,
  1644. show=True, modal=False):
  1645. """
  1646. Parse command
  1647. Note: cmd is given as list
  1648. If command is given with options, return validated cmd list:
  1649. * add key name for first parameter if not given
  1650. * change mapname to mapname@mapset
  1651. """
  1652. start = time.time()
  1653. dcmd_params = {}
  1654. if completed == None:
  1655. get_dcmd = None
  1656. layer = None
  1657. dcmd_params = None
  1658. else:
  1659. get_dcmd = completed[0]
  1660. layer = completed[1]
  1661. if completed[2]:
  1662. dcmd_params.update(completed[2])
  1663. self.parent = parentframe
  1664. # parse the interface decription
  1665. self.grass_task = self.ParseInterface(cmd)
  1666. # if layer parameters previously set, re-insert them into dialog
  1667. if completed is not None:
  1668. if 'params' in dcmd_params:
  1669. self.grass_task.params = dcmd_params['params']
  1670. if 'flags' in dcmd_params:
  1671. self.grass_task.flags = dcmd_params['flags']
  1672. # update parameters if needed && validate command
  1673. if len(cmd) > 1:
  1674. i = 0
  1675. cmd_validated = [cmd[0]]
  1676. for option in cmd[1:]:
  1677. if option[0] == '-': # flag
  1678. if option[1] == '-':
  1679. self.grass_task.set_flag(option[2:], True)
  1680. else:
  1681. self.grass_task.set_flag(option[1], True)
  1682. cmd_validated.append(option)
  1683. else: # parameter
  1684. try:
  1685. key, value = option.split('=', 1)
  1686. except:
  1687. if i == 0: # add key name of first parameter if not given
  1688. key = self.grass_task.firstParam
  1689. value = option
  1690. else:
  1691. raise ValueError, _("Unable to parse command %s") % ' '.join(cmd)
  1692. if self.grass_task.get_param(key)['element'] in ['cell', 'vector']:
  1693. # mapname -> mapname@mapset
  1694. if '@' not in value:
  1695. value = value + '@' + grass.gisenv()['MAPSET']
  1696. self.grass_task.set_param(key, value)
  1697. cmd_validated.append(key + '=' + value)
  1698. i = i + 1
  1699. # update original command list
  1700. cmd = cmd_validated
  1701. if show is not None:
  1702. self.mf = mainFrame(parent=self.parent, ID=wx.ID_ANY,
  1703. task_description=self.grass_task,
  1704. get_dcmd=get_dcmd, layer=layer)
  1705. else:
  1706. self.mf = None
  1707. if get_dcmd is not None:
  1708. # update only propwin reference
  1709. get_dcmd(dcmd=None, layer=layer, params=None,
  1710. propwin=self.mf)
  1711. if show is not None:
  1712. self.mf.notebookpanel.OnUpdateSelection(None)
  1713. if show is True:
  1714. if self.parent:
  1715. self.mf.CentreOnParent()
  1716. self.mf.Show(show)
  1717. self.mf.MakeModal(modal)
  1718. else:
  1719. self.mf.OnApply(None)
  1720. self.cmd = cmd
  1721. return self.grass_task
  1722. def GetCommandInputMapParamKey(self, cmd):
  1723. """!Get parameter key for input raster/vector map
  1724. @param cmd module name
  1725. @return parameter key
  1726. @return None on failure
  1727. """
  1728. # parse the interface decription
  1729. if not self.grass_task:
  1730. tree = etree.fromstring(getInterfaceDescription(cmd))
  1731. self.grass_task = processTask(tree).GetTask()
  1732. for p in self.grass_task.params:
  1733. if p.get('name', '') in ('input', 'map'):
  1734. age = p.get('age', '')
  1735. prompt = p.get('prompt', '')
  1736. element = p.get('element', '')
  1737. if age == 'old' and \
  1738. element in ('cell', 'grid3', 'vector') and \
  1739. prompt in ('raster', '3d-raster', 'vector'):
  1740. return p.get('name', None)
  1741. return None
  1742. class StaticWrapText(wx.StaticText):
  1743. """
  1744. A Static Text field that wraps its text to fit its width, enlarging its height if necessary.
  1745. """
  1746. def __init__(self, parent, id=wx.ID_ANY, label=u'', *args, **kwds):
  1747. self.originalLabel = label
  1748. wx.StaticText.__init__(self, parent, id, u'', *args, **kwds)
  1749. self.SetLabel(label)
  1750. self.Bind(wx.EVT_SIZE, self.onResize)
  1751. def SetLabel(self, label):
  1752. self.originalLabel = label
  1753. self.wrappedSize = None
  1754. #self.onResize(None)
  1755. def onResize(self, event):
  1756. if not getattr(self, "resizing", False):
  1757. self.resizing = True
  1758. newSize = self.GetSize()
  1759. if self.wrappedSize != newSize:
  1760. wx.StaticText.SetLabel(self, self.originalLabel)
  1761. self.Wrap(newSize.width)
  1762. self.wrappedSize = self.GetMinSize()
  1763. self.SetSize(self.wrappedSize)
  1764. del self.resizing
  1765. if __name__ == "__main__":
  1766. if len(sys.argv) == 1:
  1767. sys.exit(_("usage: %s <grass command>") % sys.argv[0])
  1768. if sys.argv[1] != 'test':
  1769. q = wx.LogNull()
  1770. cmd = shlex.split(sys.argv[1])
  1771. task = grassTask(cmd[0])
  1772. task.set_options(cmd[1:])
  1773. app = GrassGUIApp(task)
  1774. app.MainLoop()
  1775. else: #Test
  1776. # Test grassTask from within a GRASS session
  1777. if os.getenv("GISBASE") is not None:
  1778. task = grassTask( "d.vect" )
  1779. task.get_param('map')['value'] = "map_name"
  1780. task.get_flag('v')['value'] = True
  1781. task.get_param('layer')['value'] = 1
  1782. task.get_param('bcolor')['value'] = "red"
  1783. assert ' '.join( task.getCmd() ) == "d.vect -v map=map_name layer=1 bcolor=red"
  1784. # Test interface building with handmade grassTask,
  1785. # possibly outside of a GRASS session.
  1786. task = grassTask()
  1787. task.name = "TestTask"
  1788. task.description = "This is an artificial grassTask() object intended for testing purposes."
  1789. task.keywords = ["grass","test","task"]
  1790. task.params = [
  1791. {
  1792. "name" : "text",
  1793. "description" : "Descriptions go into tooltips if labels are present, like this one",
  1794. "label" : "Enter some text",
  1795. },{
  1796. "name" : "hidden_text",
  1797. "description" : "This text should not appear in the form",
  1798. "hidden" : "yes"
  1799. },{
  1800. "name" : "text_default",
  1801. "description" : "Enter text to override the default",
  1802. "default" : "default text"
  1803. },{
  1804. "name" : "text_prefilled",
  1805. "description" : "You should see a friendly welcome message here",
  1806. "value" : "hello, world"
  1807. },{
  1808. "name" : "plain_color",
  1809. "description" : "This is a plain color, and it is a compulsory parameter",
  1810. "required" : "yes",
  1811. "gisprompt" : True,
  1812. "prompt" : "color"
  1813. },{
  1814. "name" : "transparent_color",
  1815. "description" : "This color becomes transparent when set to none",
  1816. "guisection" : "tab",
  1817. "gisprompt" : True,
  1818. "prompt" : "color"
  1819. },{
  1820. "name" : "multi",
  1821. "description" : "A multiple selection",
  1822. 'default': u'red,green,blue',
  1823. 'gisprompt': False,
  1824. 'guisection': 'tab',
  1825. 'multiple': u'yes',
  1826. 'type': u'string',
  1827. 'value': '',
  1828. 'values': ['red', 'green', u'yellow', u'blue', u'purple', u'other']
  1829. },{
  1830. "name" : "single",
  1831. "description" : "A single multiple-choice selection",
  1832. 'values': ['red', 'green', u'yellow', u'blue', u'purple', u'other'],
  1833. "guisection" : "tab"
  1834. },{
  1835. "name" : "large_multi",
  1836. "description" : "A large multiple selection",
  1837. "gisprompt" : False,
  1838. "multiple" : "yes",
  1839. # values must be an array of strings
  1840. "values" : str2rgb.keys() + map( str, str2rgb.values() )
  1841. },{
  1842. "name" : "a_file",
  1843. "description" : "A file selector",
  1844. "gisprompt" : True,
  1845. "element" : "file"
  1846. }
  1847. ]
  1848. task.flags = [
  1849. {
  1850. "name" : "a",
  1851. "description" : "Some flag, will appear in Main since it is required",
  1852. "required" : "yes"
  1853. },{
  1854. "name" : "b",
  1855. "description" : "pre-filled flag, will appear in options since it is not required",
  1856. "value" : True
  1857. },{
  1858. "name" : "hidden_flag",
  1859. "description" : "hidden flag, should not be changeable",
  1860. "hidden" : "yes",
  1861. "value" : True
  1862. }
  1863. ]
  1864. q=wx.LogNull()
  1865. GrassGUIApp( task ).MainLoop()