histogram.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. """!
  2. @package modules.histogram
  3. Plotting histogram based on d.histogram
  4. Classes:
  5. - histogram::BufferedWindow
  6. - histogram::HistogramFrame
  7. - histogram::HistogramToolbar
  8. (C) 2007, 2010-2011 by the GRASS Development Team
  9. This program is free software under the GNU General Public License
  10. (>=v2). Read the file COPYING that comes with GRASS for details.
  11. @author Michael Barton
  12. @author Various updates by Martin Landa <landa.martin gmail.com>
  13. """
  14. import os
  15. import wx
  16. from core import globalvar
  17. from core.render import Map
  18. from gui_core.forms import GUI
  19. from mapdisp.gprint import PrintOptions
  20. from core.utils import GetLayerNameFromCmd
  21. from gui_core.dialogs import GetImageHandlers, ImageSizeDialog
  22. from gui_core.preferences import DefaultFontDialog
  23. from core.debug import Debug
  24. from core.gcmd import GError
  25. from gui_core.toolbars import BaseToolbar, BaseIcons
  26. class BufferedWindow(wx.Window):
  27. """!A Buffered window class.
  28. When the drawing needs to change, you app needs to call the
  29. UpdateHist() method. Since the drawing is stored in a bitmap, you
  30. can also save the drawing to file by calling the
  31. SaveToFile(self,file_name,file_type) method.
  32. """
  33. def __init__(self, parent, id = wx.ID_ANY,
  34. style = wx.NO_FULL_REPAINT_ON_RESIZE,
  35. Map = None, **kwargs):
  36. wx.Window.__init__(self, parent, id = id, style = style, **kwargs)
  37. self.parent = parent
  38. self.Map = Map
  39. self.mapname = self.parent.mapname
  40. #
  41. # Flags
  42. #
  43. self.render = True # re-render the map from GRASS or just redraw image
  44. self.resize = False # indicates whether or not a resize event has taken place
  45. self.dragimg = None # initialize variable for map panning
  46. self.pen = None # pen for drawing zoom boxes, etc.
  47. #
  48. # Event bindings
  49. #
  50. self.Bind(wx.EVT_PAINT, self.OnPaint)
  51. self.Bind(wx.EVT_SIZE, self.OnSize)
  52. self.Bind(wx.EVT_IDLE, self.OnIdle)
  53. #
  54. # Render output objects
  55. #
  56. self.mapfile = None # image file to be rendered
  57. self.img = "" # wx.Image object (self.mapfile)
  58. self.imagedict = {} # images and their PseudoDC ID's for painting and dragging
  59. self.pdc = wx.PseudoDC()
  60. self._buffer = '' # will store an off screen empty bitmap for saving to file
  61. # make sure that extents are updated at init
  62. self.Map.region = self.Map.GetRegion()
  63. self.Map.SetRegion()
  64. self.Bind(wx.EVT_ERASE_BACKGROUND, lambda x:None)
  65. def Draw(self, pdc, img = None, drawid = None, pdctype = 'image', coords = [0,0,0,0]):
  66. """!Draws histogram or clears window
  67. """
  68. if drawid == None:
  69. if pdctype == 'image' :
  70. drawid = imagedict[img]
  71. elif pdctype == 'clear':
  72. drawid == None
  73. else:
  74. drawid = wx.NewId()
  75. else:
  76. pdc.SetId(drawid)
  77. pdc.BeginDrawing()
  78. Debug.msg (3, "BufferedWindow.Draw(): id=%s, pdctype=%s, coord=%s" % (drawid, pdctype, coords))
  79. if pdctype == 'clear': # erase the display
  80. bg = wx.WHITE_BRUSH
  81. pdc.SetBackground(bg)
  82. pdc.Clear()
  83. self.Refresh()
  84. pdc.EndDrawing()
  85. return
  86. if pdctype == 'image':
  87. bg = wx.TRANSPARENT_BRUSH
  88. pdc.SetBackground(bg)
  89. bitmap = wx.BitmapFromImage(img)
  90. w,h = bitmap.GetSize()
  91. pdc.DrawBitmap(bitmap, coords[0], coords[1], True) # draw the composite map
  92. pdc.SetIdBounds(drawid, (coords[0],coords[1],w,h))
  93. pdc.EndDrawing()
  94. self.Refresh()
  95. def OnPaint(self, event):
  96. """!Draw psuedo DC to buffer
  97. """
  98. dc = wx.BufferedPaintDC(self, self._buffer)
  99. # use PrepareDC to set position correctly
  100. # probably does nothing, removed from wxPython 2.9
  101. # self.PrepareDC(dc)
  102. # we need to clear the dc BEFORE calling PrepareDC
  103. bg = wx.Brush(self.GetBackgroundColour())
  104. dc.SetBackground(bg)
  105. dc.Clear()
  106. # create a clipping rect from our position and size
  107. # and the Update Region
  108. rgn = self.GetUpdateRegion()
  109. r = rgn.GetBox()
  110. # draw to the dc using the calculated clipping rect
  111. self.pdc.DrawToDCClipped(dc,r)
  112. def OnSize(self, event):
  113. """!Init image size to match window size
  114. """
  115. # set size of the input image
  116. self.Map.width, self.Map.height = self.GetClientSize()
  117. # Make new off screen bitmap: this bitmap will always have the
  118. # current drawing in it, so it can be used to save the image to
  119. # a file, or whatever.
  120. self._buffer = wx.EmptyBitmap(self.Map.width, self.Map.height)
  121. # get the image to be rendered
  122. self.img = self.GetImage()
  123. # update map display
  124. if self.img and self.Map.width + self.Map.height > 0: # scale image during resize
  125. self.img = self.img.Scale(self.Map.width, self.Map.height)
  126. self.render = False
  127. self.UpdateHist()
  128. # re-render image on idle
  129. self.resize = True
  130. def OnIdle(self, event):
  131. """!Only re-render a histogram image from GRASS during idle
  132. time instead of multiple times during resizing.
  133. """
  134. if self.resize:
  135. self.render = True
  136. self.UpdateHist()
  137. event.Skip()
  138. def SaveToFile(self, FileName, FileType, width, height):
  139. """!This will save the contents of the buffer to the specified
  140. file. See the wx.Windows docs for wx.Bitmap::SaveFile for the
  141. details
  142. """
  143. busy = wx.BusyInfo(message=_("Please wait, exporting image..."),
  144. parent=self)
  145. wx.Yield()
  146. self.Map.ChangeMapSize((width, height))
  147. ibuffer = wx.EmptyBitmap(max(1, width), max(1, height))
  148. self.Map.Render(force=True, windres = True)
  149. img = self.GetImage()
  150. self.Draw(self.pdc, img, drawid = 99)
  151. dc = wx.BufferedPaintDC(self, ibuffer)
  152. dc.Clear()
  153. # probably does nothing, removed from wxPython 2.9
  154. # self.PrepareDC(dc)
  155. self.pdc.DrawToDC(dc)
  156. ibuffer.SaveFile(FileName, FileType)
  157. busy.Destroy()
  158. def GetImage(self):
  159. """!Converts files to wx.Image
  160. """
  161. if self.Map.mapfile and os.path.isfile(self.Map.mapfile) and \
  162. os.path.getsize(self.Map.mapfile):
  163. img = wx.Image(self.Map.mapfile, wx.BITMAP_TYPE_ANY)
  164. else:
  165. img = None
  166. self.imagedict[img] = 99 # set image PeudoDC ID
  167. return img
  168. def UpdateHist(self, img = None):
  169. """!Update canvas if histogram options changes or window
  170. changes geometry
  171. """
  172. Debug.msg (2, "BufferedWindow.UpdateHist(%s): render=%s" % (img, self.render))
  173. oldfont = ""
  174. oldencoding = ""
  175. if self.render:
  176. # render new map images
  177. # set default font and encoding environmental variables
  178. if "GRASS_FONT" in os.environ:
  179. oldfont = os.environ["GRASS_FONT"]
  180. if self.parent.font != "": os.environ["GRASS_FONT"] = self.parent.font
  181. if "GRASS_ENCODING" in os.environ:
  182. oldencoding = os.environ["GRASS_ENCODING"]
  183. if self.parent.encoding != None and self.parent.encoding != "ISO-8859-1":
  184. os.environ[GRASS_ENCODING] = self.parent.encoding
  185. # using active comp region
  186. self.Map.GetRegion(update = True)
  187. self.Map.width, self.Map.height = self.GetClientSize()
  188. self.mapfile = self.Map.Render(force = self.render)
  189. self.img = self.GetImage()
  190. self.resize = False
  191. if not self.img: return
  192. try:
  193. id = self.imagedict[self.img]
  194. except:
  195. return
  196. # paint images to PseudoDC
  197. self.pdc.Clear()
  198. self.pdc.RemoveAll()
  199. self.Draw(self.pdc, self.img, drawid = id) # draw map image background
  200. self.resize = False
  201. # update statusbar
  202. # Debug.msg (3, "BufferedWindow.UpdateHist(%s): region=%s" % self.Map.region)
  203. self.Map.SetRegion()
  204. self.parent.statusbar.SetStatusText("Image/Raster map <%s>" % self.parent.mapname)
  205. # set default font and encoding environmental variables
  206. if oldfont != "":
  207. os.environ["GRASS_FONT"] = oldfont
  208. if oldencoding != "":
  209. os.environ["GRASS_ENCODING"] = oldencoding
  210. def EraseMap(self):
  211. """!Erase the map display
  212. """
  213. self.Draw(self.pdc, pdctype = 'clear')
  214. class HistogramFrame(wx.Frame):
  215. """!Main frame for hisgram display window. Uses d.histogram
  216. rendered onto canvas
  217. """
  218. def __init__(self, parent = None, id = wx.ID_ANY,
  219. title = _("GRASS GIS Histogramming Tool (d.histogram)"),
  220. size = wx.Size(500, 350),
  221. style = wx.DEFAULT_FRAME_STYLE, **kwargs):
  222. wx.Frame.__init__(self, parent, id, title, size = size, style = style, **kwargs)
  223. self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))
  224. self.Map = Map() # instance of render.Map to be associated with display
  225. self.layer = None # reference to layer with histogram
  226. # Init variables
  227. self.params = {} # previously set histogram parameters
  228. self.propwin = '' # ID of properties dialog
  229. self.font = ""
  230. self.encoding = 'ISO-8859-1' # default encoding for display fonts
  231. self.toolbar = HistogramToolbar(parent = self)
  232. self.SetToolBar(self.toolbar)
  233. # find selected map
  234. self.mapname = None
  235. if parent.GetName() == "MapWindow" and not parent.IsStandalone():
  236. tree = parent.GetLayerManager().GetLayerTree()
  237. if tree.layer_selected and tree.GetLayerInfo(tree.layer_selected, key = 'type') == 'raster':
  238. self.mapname = tree.GetLayerInfo(tree.layer_selected, key = 'maplayer').name
  239. # Add statusbar
  240. self.statusbar = self.CreateStatusBar(number = 1, style = 0)
  241. # self.statusbar.SetStatusWidths([-2, -1])
  242. hist_frame_statusbar_fields = ["Histogramming %s" % self.mapname]
  243. for i in range(len(hist_frame_statusbar_fields)):
  244. self.statusbar.SetStatusText(hist_frame_statusbar_fields[i], i)
  245. # Init map display
  246. self.InitDisplay() # initialize region values
  247. # initialize buffered DC
  248. self.HistWindow = BufferedWindow(self, id = wx.ID_ANY, Map = self.Map) # initialize buffered DC
  249. # Bind various events
  250. self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
  251. # Init print module and classes
  252. self.printopt = PrintOptions(self, self.HistWindow)
  253. # Add layer to the map
  254. self.layer = self.Map.AddLayer(ltype = "command", name = 'histogram', command = [['d.histogram']],
  255. active = False, hidden = False, opacity = 1, render = False)
  256. if self.mapname:
  257. self.SetHistLayer(self.mapname, None)
  258. else:
  259. self.OnErase(None)
  260. def InitDisplay(self):
  261. """!Initialize histogram display, set dimensions and region
  262. """
  263. self.width, self.height = self.GetClientSize()
  264. self.Map.geom = self.width, self.height
  265. def OnOptions(self, event):
  266. """!Change histogram settings"""
  267. cmd = ['d.histogram']
  268. if self.mapname != '':
  269. cmd.append('map=%s' % self.mapname)
  270. module = GUI(parent = self)
  271. module.ParseCommand(cmd, completed = (self.GetOptData, None, self.params))
  272. def GetOptData(self, dcmd, layer, params, propwin):
  273. """!Callback method for histogram command generated by dialog
  274. created in menuform.py
  275. """
  276. if dcmd:
  277. name, found = GetLayerNameFromCmd(dcmd, fullyQualified = True,
  278. layerType = 'raster')
  279. if not found:
  280. GError(parent = propwin,
  281. message = _("Raster map <%s> not found") % name)
  282. return
  283. self.SetHistLayer(name, dcmd)
  284. self.params = params
  285. self.propwin = propwin
  286. self.HistWindow.UpdateHist()
  287. def SetHistLayer(self, name, cmd = None):
  288. """!Set histogram layer
  289. """
  290. self.mapname = name
  291. if not cmd:
  292. cmd = ['d.histogram',('map=%s' % self.mapname)]
  293. self.layer = self.Map.ChangeLayer(layer = self.layer,
  294. command = [cmd],
  295. active = True)
  296. return self.layer
  297. def SetHistFont(self, event):
  298. """!Set font for histogram. If not set, font will be default
  299. display font.
  300. """
  301. dlg = DefaultFontDialog(parent = self, id = wx.ID_ANY,
  302. title = _('Select font for histogram text'))
  303. dlg.fontlb.SetStringSelection(self.font, True)
  304. if dlg.ShowModal() == wx.ID_CANCEL:
  305. dlg.Destroy()
  306. return
  307. # set default font type, font, and encoding to whatever selected in dialog
  308. if dlg.font != None:
  309. self.font = dlg.font
  310. if dlg.encoding != None:
  311. self.encoding = dlg.encoding
  312. dlg.Destroy()
  313. self.HistWindow.UpdateHist()
  314. def OnErase(self, event):
  315. """!Erase the histogram display
  316. """
  317. self.HistWindow.Draw(self.HistWindow.pdc, pdctype = 'clear')
  318. def OnRender(self, event):
  319. """!Re-render histogram
  320. """
  321. self.HistWindow.UpdateHist()
  322. def GetWindow(self):
  323. """!Get buffered window"""
  324. return self.HistWindow
  325. def SaveToFile(self, event):
  326. """!Save to file
  327. """
  328. filetype, ltype = GetImageHandlers(self.HistWindow.img)
  329. # get size
  330. dlg = ImageSizeDialog(self)
  331. dlg.CentreOnParent()
  332. if dlg.ShowModal() != wx.ID_OK:
  333. dlg.Destroy()
  334. return
  335. width, height = dlg.GetValues()
  336. dlg.Destroy()
  337. # get filename
  338. dlg = wx.FileDialog(parent = self,
  339. message = _("Choose a file name to save the image "
  340. "(no need to add extension)"),
  341. wildcard = filetype,
  342. style=wx.SAVE | wx.FD_OVERWRITE_PROMPT)
  343. if dlg.ShowModal() == wx.ID_OK:
  344. path = dlg.GetPath()
  345. if not path:
  346. dlg.Destroy()
  347. return
  348. base, ext = os.path.splitext(path)
  349. fileType = ltype[dlg.GetFilterIndex()]['type']
  350. extType = ltype[dlg.GetFilterIndex()]['ext']
  351. if ext != extType:
  352. path = base + '.' + extType
  353. self.HistWindow.SaveToFile(path, fileType,
  354. width, height)
  355. self.HistWindow.UpdateHist()
  356. dlg.Destroy()
  357. def PrintMenu(self, event):
  358. """!Print options and output menu
  359. """
  360. point = wx.GetMousePosition()
  361. printmenu = wx.Menu()
  362. # Add items to the menu
  363. setup = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Page setup'))
  364. printmenu.AppendItem(setup)
  365. self.Bind(wx.EVT_MENU, self.printopt.OnPageSetup, setup)
  366. preview = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Print preview'))
  367. printmenu.AppendItem(preview)
  368. self.Bind(wx.EVT_MENU, self.printopt.OnPrintPreview, preview)
  369. doprint = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Print display'))
  370. printmenu.AppendItem(doprint)
  371. self.Bind(wx.EVT_MENU, self.printopt.OnDoPrint, doprint)
  372. # Popup the menu. If an item is selected then its handler
  373. # will be called before PopupMenu returns.
  374. self.PopupMenu(printmenu)
  375. printmenu.Destroy()
  376. def OnQuit(self, event):
  377. self.Close(True)
  378. def OnCloseWindow(self, event):
  379. """!Window closed
  380. Also remove associated rendered images
  381. """
  382. try:
  383. self.propwin.Close(True)
  384. except:
  385. pass
  386. self.Map.Clean()
  387. self.Destroy()
  388. class HistogramToolbar(BaseToolbar):
  389. """!Histogram toolbar (see histogram.py)
  390. """
  391. def __init__(self, parent):
  392. BaseToolbar.__init__(self, parent)
  393. self.InitToolbar(self._toolbarData())
  394. # realize the toolbar
  395. self.Realize()
  396. def _toolbarData(self):
  397. """!Toolbar data"""
  398. return self._getToolbarData((('histogram', BaseIcons["histogramD"],
  399. self.parent.OnOptions),
  400. ('render', BaseIcons["display"],
  401. self.parent.OnRender),
  402. ('erase', BaseIcons["erase"],
  403. self.parent.OnErase),
  404. ('font', BaseIcons["font"],
  405. self.parent.SetHistFont),
  406. (None, ),
  407. ('save', BaseIcons["saveFile"],
  408. self.parent.SaveToFile),
  409. ('hprint', BaseIcons["print"],
  410. self.parent.PrintMenu),
  411. (None, ),
  412. ('quit', BaseIcons["quit"],
  413. self.parent.OnQuit))
  414. )