histogram.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  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. self.PrepareDC(dc)
  101. # we need to clear the dc BEFORE calling PrepareDC
  102. bg = wx.Brush(self.GetBackgroundColour())
  103. dc.SetBackground(bg)
  104. dc.Clear()
  105. # create a clipping rect from our position and size
  106. # and the Update Region
  107. rgn = self.GetUpdateRegion()
  108. r = rgn.GetBox()
  109. # draw to the dc using the calculated clipping rect
  110. self.pdc.DrawToDCClipped(dc,r)
  111. def OnSize(self, event):
  112. """!Init image size to match window size
  113. """
  114. # set size of the input image
  115. self.Map.width, self.Map.height = self.GetClientSize()
  116. # Make new off screen bitmap: this bitmap will always have the
  117. # current drawing in it, so it can be used to save the image to
  118. # a file, or whatever.
  119. self._buffer = wx.EmptyBitmap(self.Map.width, self.Map.height)
  120. # get the image to be rendered
  121. self.img = self.GetImage()
  122. # update map display
  123. if self.img and self.Map.width + self.Map.height > 0: # scale image during resize
  124. self.img = self.img.Scale(self.Map.width, self.Map.height)
  125. self.render = False
  126. self.UpdateHist()
  127. # re-render image on idle
  128. self.resize = True
  129. def OnIdle(self, event):
  130. """!Only re-render a histogram image from GRASS during idle
  131. time instead of multiple times during resizing.
  132. """
  133. if self.resize:
  134. self.render = True
  135. self.UpdateHist()
  136. event.Skip()
  137. def SaveToFile(self, FileName, FileType, width, height):
  138. """!This will save the contents of the buffer to the specified
  139. file. See the wx.Windows docs for wx.Bitmap::SaveFile for the
  140. details
  141. """
  142. busy = wx.BusyInfo(message=_("Please wait, exporting image..."),
  143. parent=self)
  144. wx.Yield()
  145. self.Map.ChangeMapSize((width, height))
  146. ibuffer = wx.EmptyBitmap(max(1, width), max(1, height))
  147. self.Map.Render(force=True, windres = True)
  148. img = self.GetImage()
  149. self.Draw(self.pdc, img, drawid = 99)
  150. dc = wx.BufferedPaintDC(self, ibuffer)
  151. dc.Clear()
  152. self.PrepareDC(dc)
  153. self.pdc.DrawToDC(dc)
  154. ibuffer.SaveFile(FileName, FileType)
  155. busy.Destroy()
  156. def GetImage(self):
  157. """!Converts files to wx.Image
  158. """
  159. if self.Map.mapfile and os.path.isfile(self.Map.mapfile) and \
  160. os.path.getsize(self.Map.mapfile):
  161. img = wx.Image(self.Map.mapfile, wx.BITMAP_TYPE_ANY)
  162. else:
  163. img = None
  164. self.imagedict[img] = 99 # set image PeudoDC ID
  165. return img
  166. def UpdateHist(self, img = None):
  167. """!Update canvas if histogram options changes or window
  168. changes geometry
  169. """
  170. Debug.msg (2, "BufferedWindow.UpdateHist(%s): render=%s" % (img, self.render))
  171. oldfont = ""
  172. oldencoding = ""
  173. if self.render:
  174. # render new map images
  175. # set default font and encoding environmental variables
  176. if "GRASS_FONT" in os.environ:
  177. oldfont = os.environ["GRASS_FONT"]
  178. if self.parent.font != "": os.environ["GRASS_FONT"] = self.parent.font
  179. if "GRASS_ENCODING" in os.environ:
  180. oldencoding = os.environ["GRASS_ENCODING"]
  181. if self.parent.encoding != None and self.parent.encoding != "ISO-8859-1":
  182. os.environ[GRASS_ENCODING] = self.parent.encoding
  183. # using active comp region
  184. self.Map.GetRegion(update = True)
  185. self.Map.width, self.Map.height = self.GetClientSize()
  186. self.mapfile = self.Map.Render(force = self.render)
  187. self.img = self.GetImage()
  188. self.resize = False
  189. if not self.img: return
  190. try:
  191. id = self.imagedict[self.img]
  192. except:
  193. return
  194. # paint images to PseudoDC
  195. self.pdc.Clear()
  196. self.pdc.RemoveAll()
  197. self.Draw(self.pdc, self.img, drawid = id) # draw map image background
  198. self.resize = False
  199. # update statusbar
  200. # Debug.msg (3, "BufferedWindow.UpdateHist(%s): region=%s" % self.Map.region)
  201. self.Map.SetRegion()
  202. self.parent.statusbar.SetStatusText("Image/Raster map <%s>" % self.parent.mapname)
  203. # set default font and encoding environmental variables
  204. if oldfont != "":
  205. os.environ["GRASS_FONT"] = oldfont
  206. if oldencoding != "":
  207. os.environ["GRASS_ENCODING"] = oldencoding
  208. def EraseMap(self):
  209. """!Erase the map display
  210. """
  211. self.Draw(self.pdc, pdctype = 'clear')
  212. class HistogramFrame(wx.Frame):
  213. """!Main frame for hisgram display window. Uses d.histogram
  214. rendered onto canvas
  215. """
  216. def __init__(self, parent = None, id = wx.ID_ANY,
  217. title = _("GRASS GIS Histogramming Tool (d.histogram)"),
  218. size = wx.Size(500, 350),
  219. style = wx.DEFAULT_FRAME_STYLE, **kwargs):
  220. wx.Frame.__init__(self, parent, id, title, size = size, style = style, **kwargs)
  221. self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))
  222. self.Map = Map() # instance of render.Map to be associated with display
  223. self.layer = None # reference to layer with histogram
  224. # Init variables
  225. self.params = {} # previously set histogram parameters
  226. self.propwin = '' # ID of properties dialog
  227. self.font = ""
  228. self.encoding = 'ISO-8859-1' # default encoding for display fonts
  229. self.toolbar = HistogramToolbar(parent = self)
  230. self.SetToolBar(self.toolbar)
  231. # Add statusbar
  232. self.mapname = ''
  233. self.statusbar = self.CreateStatusBar(number = 1, style = 0)
  234. # self.statusbar.SetStatusWidths([-2, -1])
  235. hist_frame_statusbar_fields = ["Histogramming %s" % self.mapname]
  236. for i in range(len(hist_frame_statusbar_fields)):
  237. self.statusbar.SetStatusText(hist_frame_statusbar_fields[i], i)
  238. # Init map display
  239. self.InitDisplay() # initialize region values
  240. # initialize buffered DC
  241. self.HistWindow = BufferedWindow(self, id = wx.ID_ANY, Map = self.Map) # initialize buffered DC
  242. # Bind various events
  243. self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
  244. # Init print module and classes
  245. self.printopt = PrintOptions(self, self.HistWindow)
  246. # Add layer to the map
  247. self.layer = self.Map.AddLayer(type = "command", name = 'histogram', command = ['d.histogram'],
  248. l_active = False, l_hidden = False, l_opacity = 1, l_render = False)
  249. def InitDisplay(self):
  250. """!Initialize histogram display, set dimensions and region
  251. """
  252. self.width, self.height = self.GetClientSize()
  253. self.Map.geom = self.width, self.height
  254. def OnOptions(self, event):
  255. """!Change histogram settings"""
  256. cmd = ['d.histogram']
  257. if self.mapname != '':
  258. cmd.append('map=%s' % self.mapname)
  259. GUI(parent = self).ParseCommand(cmd,
  260. completed = (self.GetOptData, None, self.params))
  261. def GetOptData(self, dcmd, layer, params, propwin):
  262. """!Callback method for histogram command generated by dialog
  263. created in menuform.py
  264. """
  265. if dcmd:
  266. name, found = GetLayerNameFromCmd(dcmd, fullyQualified = True,
  267. layerType = 'raster')
  268. if not found:
  269. GError(parent = propwin,
  270. message = _("Raster map <%s> not found") % name)
  271. return
  272. self.SetHistLayer(name)
  273. self.params = params
  274. self.propwin = propwin
  275. self.HistWindow.UpdateHist()
  276. def SetHistLayer(self, name):
  277. """!Set histogram layer
  278. """
  279. self.mapname = name
  280. self.layer = self.Map.ChangeLayer(layer = self.layer,
  281. command = [['d.histogram', 'map=%s' % self.mapname],],
  282. active = True)
  283. return self.layer
  284. def SetHistFont(self, event):
  285. """!Set font for histogram. If not set, font will be default
  286. display font.
  287. """
  288. dlg = DefaultFontDialog(parent = self, id = wx.ID_ANY,
  289. title = _('Select font for histogram text'))
  290. dlg.fontlb.SetStringSelection(self.font, True)
  291. if dlg.ShowModal() == wx.ID_CANCEL:
  292. dlg.Destroy()
  293. return
  294. # set default font type, font, and encoding to whatever selected in dialog
  295. if dlg.font != None:
  296. self.font = dlg.font
  297. if dlg.encoding != None:
  298. self.encoding = dlg.encoding
  299. dlg.Destroy()
  300. self.HistWindow.UpdateHist()
  301. def OnErase(self, event):
  302. """!Erase the histogram display
  303. """
  304. self.HistWindow.Draw(self.HistWindow.pdc, pdctype = 'clear')
  305. def OnRender(self, event):
  306. """!Re-render histogram
  307. """
  308. self.HistWindow.UpdateHist()
  309. def GetWindow(self):
  310. """!Get buffered window"""
  311. return self.HistWindow
  312. def SaveToFile(self, event):
  313. """!Save to file
  314. """
  315. filetype, ltype = GetImageHandlers(self.HistWindow.img)
  316. # get size
  317. dlg = ImageSizeDialog(self)
  318. dlg.CentreOnParent()
  319. if dlg.ShowModal() != wx.ID_OK:
  320. dlg.Destroy()
  321. return
  322. width, height = dlg.GetValues()
  323. dlg.Destroy()
  324. # get filename
  325. dlg = wx.FileDialog(parent = self,
  326. message = _("Choose a file name to save the image "
  327. "(no need to add extension)"),
  328. wildcard = filetype,
  329. style=wx.SAVE | wx.FD_OVERWRITE_PROMPT)
  330. if dlg.ShowModal() == wx.ID_OK:
  331. path = dlg.GetPath()
  332. if not path:
  333. dlg.Destroy()
  334. return
  335. base, ext = os.path.splitext(path)
  336. fileType = ltype[dlg.GetFilterIndex()]['type']
  337. extType = ltype[dlg.GetFilterIndex()]['ext']
  338. if ext != extType:
  339. path = base + '.' + extType
  340. self.HistWindow.SaveToFile(path, fileType,
  341. width, height)
  342. self.HistWindow.UpdateHist()
  343. dlg.Destroy()
  344. def PrintMenu(self, event):
  345. """!Print options and output menu
  346. """
  347. point = wx.GetMousePosition()
  348. printmenu = wx.Menu()
  349. # Add items to the menu
  350. setup = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Page setup'))
  351. printmenu.AppendItem(setup)
  352. self.Bind(wx.EVT_MENU, self.printopt.OnPageSetup, setup)
  353. preview = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Print preview'))
  354. printmenu.AppendItem(preview)
  355. self.Bind(wx.EVT_MENU, self.printopt.OnPrintPreview, preview)
  356. doprint = wx.MenuItem(printmenu, id = wx.ID_ANY, text = _('Print display'))
  357. printmenu.AppendItem(doprint)
  358. self.Bind(wx.EVT_MENU, self.printopt.OnDoPrint, doprint)
  359. # Popup the menu. If an item is selected then its handler
  360. # will be called before PopupMenu returns.
  361. self.PopupMenu(printmenu)
  362. printmenu.Destroy()
  363. def OnQuit(self, event):
  364. self.Close(True)
  365. def OnCloseWindow(self, event):
  366. """!Window closed
  367. Also remove associated rendered images
  368. """
  369. try:
  370. self.propwin.Close(True)
  371. except:
  372. pass
  373. self.Map.Clean()
  374. self.Destroy()
  375. class HistogramToolbar(BaseToolbar):
  376. """!Histogram toolbar (see histogram.py)
  377. """
  378. def __init__(self, parent):
  379. BaseToolbar.__init__(self, parent)
  380. self.InitToolbar(self._toolbarData())
  381. # realize the toolbar
  382. self.Realize()
  383. def _toolbarData(self):
  384. """!Toolbar data"""
  385. return self._getToolbarData((('histogram', BaseIcons["histogramD"],
  386. self.parent.OnOptions),
  387. ('render', BaseIcons["display"],
  388. self.parent.OnRender),
  389. ('erase', BaseIcons["erase"],
  390. self.parent.OnErase),
  391. ('font', BaseIcons["font"],
  392. self.parent.SetHistFont),
  393. (None, ),
  394. ('save', BaseIcons["saveFile"],
  395. self.parent.SaveToFile),
  396. ('hprint', BaseIcons["print"],
  397. self.parent.PrintMenu),
  398. (None, ),
  399. ('quit', BaseIcons["quit"],
  400. self.parent.OnQuit))
  401. )