[1724] | 1 | import os
|
---|
| 2 | import matplotlib
|
---|
[1884] | 3 |
|
---|
[1724] | 4 | ######################################
|
---|
| 5 | ## Add CASA custom toolbar ##
|
---|
| 6 | ######################################
|
---|
| 7 | class CustomToolbarCommon:
|
---|
| 8 | def __init__(self,parent):
|
---|
| 9 | self.plotter=parent
|
---|
| 10 | #self.figmgr=self.plotter._plotter.figmgr
|
---|
| 11 |
|
---|
| 12 | ### select the nearest spectrum in pick radius
|
---|
[1826] | 13 | ### and display spectral value on the toolbar.
|
---|
[1724] | 14 | def _select_spectrum(self,event):
|
---|
| 15 | # Do not fire event when in zooming/panning mode
|
---|
| 16 | mode = self.figmgr.toolbar.mode
|
---|
[1826] | 17 | if not mode == '':
|
---|
| 18 | return
|
---|
| 19 | # When selected point is out of panels
|
---|
[1724] | 20 | if event.inaxes == None:
|
---|
[1826] | 21 | return
|
---|
[1724] | 22 | # If not left button
|
---|
| 23 | if event.button != 1:
|
---|
[1826] | 24 | return
|
---|
[1724] | 25 |
|
---|
| 26 | xclick=event.xdata
|
---|
| 27 | yclick=event.ydata
|
---|
| 28 | dist2=1000.
|
---|
| 29 | pickline=None
|
---|
[1826] | 30 | # If the pannel has picable objects
|
---|
| 31 | pflag=False
|
---|
[1724] | 32 | for lin in event.inaxes.lines:
|
---|
[1826] | 33 | if not lin.pickable():
|
---|
| 34 | continue
|
---|
| 35 | pflag=True
|
---|
| 36 | flag,pind = lin.contains(event)
|
---|
| 37 | if not flag:
|
---|
| 38 | continue
|
---|
| 39 | # Get nearest point
|
---|
| 40 | inds = pind['ind']
|
---|
| 41 | xlin = lin.get_xdata()
|
---|
| 42 | ylin = lin.get_ydata()
|
---|
| 43 | for i in inds:
|
---|
| 44 | d2=(xlin[i]-xclick)**2+(ylin[i]-yclick)**2
|
---|
| 45 | if dist2 >= d2:
|
---|
| 46 | dist2 = d2
|
---|
| 47 | pickline = lin
|
---|
| 48 | # No pickcable line in the pannel
|
---|
| 49 | if not pflag:
|
---|
| 50 | return
|
---|
| 51 | # Pickable but too far from mouse position
|
---|
| 52 | elif pickline is None:
|
---|
| 53 | picked='No line selected.'
|
---|
| 54 | self.figmgr.toolbar.set_message(picked)
|
---|
| 55 | return
|
---|
[1724] | 56 | del pind, inds, xlin, ylin
|
---|
[1826] | 57 | # Spectra are Picked
|
---|
[1724] | 58 | theplot = self.plotter._plotter
|
---|
[1826] | 59 | thetoolbar = self.figmgr.toolbar
|
---|
| 60 | thecanvas = self.figmgr.canvas
|
---|
| 61 | # Disconnect the default motion notify event
|
---|
| 62 | # Notice! the other buttons are also diabled!!!
|
---|
| 63 | thecanvas.mpl_disconnect(thetoolbar._idDrag)
|
---|
[1724] | 64 | # Get picked spectrum
|
---|
| 65 | xdata = pickline.get_xdata()
|
---|
| 66 | ydata = pickline.get_ydata()
|
---|
| 67 | titl=pickline.get_label()
|
---|
| 68 | titp=event.inaxes.title.get_text()
|
---|
| 69 | panel0=event.inaxes
|
---|
[1826] | 70 | picked="Selected: '"+titl+"' in panel '"+titp+"'."
|
---|
| 71 | thetoolbar.set_message(picked)
|
---|
| 72 | # Generate a navigation window
|
---|
[1724] | 73 | #naviwin=Navigationwindow(titp,titl)
|
---|
| 74 | #------------------------------------------------------#
|
---|
| 75 | # Show spectrum data at mouse position
|
---|
| 76 | def spec_data(event):
|
---|
[1826] | 77 | # Getting spectrum data of neiboring point
|
---|
| 78 | xclick=event.xdata
|
---|
| 79 | if event.inaxes != panel0:
|
---|
| 80 | return
|
---|
| 81 | ipoint=len(xdata)-1
|
---|
| 82 | for i in range(len(xdata)-1):
|
---|
| 83 | xl=xclick-xdata[i]
|
---|
| 84 | xr=xclick-xdata[i+1]
|
---|
| 85 | if xl*xr <= 0.:
|
---|
| 86 | ipoint = i
|
---|
| 87 | break
|
---|
| 88 | # Output spectral value on the navigation window
|
---|
| 89 | posi='[ %s, %s ]: x = %.2f value = %.2f'\
|
---|
| 90 | %(titl,titp,xdata[ipoint],ydata[ipoint])
|
---|
| 91 | #naviwin.posi.set(posi)
|
---|
| 92 | thetoolbar.set_message(posi)
|
---|
[1724] | 93 | #------------------------------------------------------#
|
---|
| 94 | # Disconnect from mouse events
|
---|
| 95 | def discon(event):
|
---|
[1826] | 96 | #naviwin.window.destroy()
|
---|
| 97 | theplot.register('motion_notify',None)
|
---|
| 98 | # Re-activate the default motion_notify_event
|
---|
| 99 | thetoolbar._idDrag=thecanvas.mpl_connect('motion_notify_event',
|
---|
| 100 | thetoolbar.mouse_move)
|
---|
| 101 | theplot.register('button_release',None)
|
---|
| 102 | return
|
---|
[1724] | 103 | #------------------------------------------------------#
|
---|
| 104 | # Show data value along with mouse movement
|
---|
[1826] | 105 | theplot.register('motion_notify',spec_data)
|
---|
[1724] | 106 | # Finish events when mouse button is released
|
---|
| 107 | theplot.register('button_release',discon)
|
---|
| 108 |
|
---|
| 109 |
|
---|
[1826] | 110 | ### Calculate statistics of the selected area.
|
---|
[1724] | 111 | def _single_mask(self,event):
|
---|
| 112 | # Do not fire event when in zooming/panning mode
|
---|
[1826] | 113 | if not self.figmgr.toolbar.mode == '':
|
---|
| 114 | return
|
---|
[1724] | 115 | # When selected point is out of panels
|
---|
| 116 | if event.inaxes == None:
|
---|
[1826] | 117 | return
|
---|
| 118 | if event.button ==1:
|
---|
| 119 | baseinv=True
|
---|
| 120 | elif event.button == 3:
|
---|
| 121 | baseinv=False
|
---|
| 122 | else:
|
---|
| 123 | return
|
---|
[1724] | 124 |
|
---|
[1826] | 125 | def _calc_stats():
|
---|
| 126 | msk=mymask.get_mask()
|
---|
| 127 | mymask.scan.stats(stat='max',mask=msk)
|
---|
| 128 | mymask.scan.stats(stat='min',mask=msk)
|
---|
| 129 | mymask.scan.stats(stat='sum',mask=msk)
|
---|
| 130 | mymask.scan.stats(stat='mean',mask=msk)
|
---|
| 131 | mymask.scan.stats(stat='median',mask=msk)
|
---|
| 132 | mymask.scan.stats(stat='rms',mask=msk)
|
---|
| 133 | mymask.scan.stats(stat='stddev',mask=msk)
|
---|
[1724] | 134 |
|
---|
[1826] | 135 | # Interactive mask definition
|
---|
[1724] | 136 | from asap.interactivemask import interactivemask
|
---|
[1826] | 137 | mymask=interactivemask(plotter=self.plotter,scan=self.plotter._data)
|
---|
| 138 | # Create initial mask
|
---|
| 139 | mymask.set_basemask(invert=baseinv)
|
---|
| 140 | # Inherit event
|
---|
| 141 | mymask.set_startevent(event)
|
---|
| 142 | # Set callback func
|
---|
| 143 | mymask.set_callback(_calc_stats)
|
---|
| 144 | # Selected mask
|
---|
| 145 | mymask.select_mask(once=True,showmask=False)
|
---|
[1724] | 146 |
|
---|
[1884] | 147 | def _mod_note(self,event):
|
---|
| 148 | # Do not fire event when in zooming/panning mode
|
---|
| 149 | if not self.figmgr.toolbar.mode == '':
|
---|
| 150 | return
|
---|
| 151 | if event.button ==1:
|
---|
| 152 | self.notewin.load_textwindow(event)
|
---|
| 153 | elif event.button == 3 and self._note_picked(event):
|
---|
[1885] | 154 | self.notewin.load_modmenu(event)
|
---|
[1884] | 155 | return
|
---|
| 156 |
|
---|
| 157 | def _note_picked(self,event):
|
---|
| 158 | # just briefly check if any texts are picked
|
---|
| 159 | for textobj in self.canvas.figure.texts:
|
---|
| 160 | if textobj.contains(event)[0]:
|
---|
| 161 | return True
|
---|
| 162 | for ax in self.canvas.figure.axes:
|
---|
| 163 | for textobj in ax.texts:
|
---|
| 164 | if textobj.contains(event)[0]:
|
---|
| 165 | return True
|
---|
| 166 | #print "No text picked"
|
---|
| 167 | return False
|
---|
| 168 |
|
---|
[1913] | 169 | def _new_page(self,next=True):
|
---|
| 170 | self.plotter._plotter.hold()
|
---|
| 171 | self.plotter._plotter.clear()
|
---|
| 172 | self.plotter._plot(self.plotter._data)
|
---|
| 173 | self.plotter._plotter.release()
|
---|
| 174 | self.plotter._plotter.tidy()
|
---|
| 175 | self.plotter._plotter.show(hardrefresh=False)
|
---|
| 176 | pass
|
---|
| 177 |
|
---|
[1724] | 178 | #####################################
|
---|
| 179 | ## Backend dependent Classes ##
|
---|
| 180 | #####################################
|
---|
| 181 | ### TkAgg
|
---|
[1826] | 182 | if matplotlib.get_backend() == 'TkAgg':
|
---|
| 183 | import Tkinter as Tk
|
---|
[1884] | 184 | from notationwindow import NotationWindowTkAgg
|
---|
[1826] | 185 |
|
---|
[1768] | 186 | class CustomToolbarTkAgg(CustomToolbarCommon, Tk.Frame):
|
---|
[1724] | 187 | def __init__(self,parent):
|
---|
| 188 | from asap.asapplotter import asapplotter
|
---|
[1826] | 189 | if not isinstance(parent,asapplotter):
|
---|
| 190 | return False
|
---|
| 191 | if not parent._plotter:
|
---|
| 192 | return False
|
---|
[1724] | 193 | self._p=parent._plotter
|
---|
| 194 | self.figmgr=self._p.figmgr
|
---|
| 195 | self.canvas=self.figmgr.canvas
|
---|
| 196 | self.mode=''
|
---|
| 197 | self.button=True
|
---|
| 198 | self._add_custom_toolbar()
|
---|
[1884] | 199 | self.notewin=NotationWindowTkAgg(master=self.canvas)
|
---|
[1724] | 200 | CustomToolbarCommon.__init__(self,parent)
|
---|
| 201 |
|
---|
| 202 | def _add_custom_toolbar(self):
|
---|
[1768] | 203 | Tk.Frame.__init__(self,master=self.figmgr.window)
|
---|
| 204 | self.bSpec=self._NewButton(master=self,
|
---|
[1724] | 205 | text='spec value',
|
---|
| 206 | command=self.spec_show)
|
---|
[1768] | 207 | self.bStat=self._NewButton(master=self,
|
---|
[1724] | 208 | text='statistics',
|
---|
| 209 | command=self.stat_cal)
|
---|
[1884] | 210 | self.bNote=self._NewButton(master=self,
|
---|
[1888] | 211 | text='notation',
|
---|
[1884] | 212 | command=self.modify_note)
|
---|
[1913] | 213 | self.bPrev=self._NewButton(master=self,
|
---|
| 214 | text='- page',
|
---|
| 215 | command=self.prev_page)
|
---|
| 216 | self.bPrev.config(padx=5)
|
---|
| 217 | self.bNext=self._NewButton(master=self,
|
---|
| 218 | text='+ page',
|
---|
| 219 | command=self.next_page)
|
---|
| 220 | self.bNext.config(padx=5)
|
---|
[1768] | 221 | self.bQuit=self._NewButton(master=self,
|
---|
[1724] | 222 | text='Quit',
|
---|
| 223 | command=self.quit,
|
---|
| 224 | side=Tk.RIGHT)
|
---|
[1768] | 225 | self.pack(side=Tk.BOTTOM,fill=Tk.BOTH)
|
---|
| 226 |
|
---|
[1724] | 227 | self.disable_button()
|
---|
[1768] | 228 | return #self
|
---|
[1724] | 229 |
|
---|
| 230 | def _NewButton(self, master, text, command, side=Tk.LEFT):
|
---|
[1826] | 231 | if os.uname()[0] == 'Darwin':
|
---|
[1724] | 232 | b = Tk.Button(master=master, text=text, command=command)
|
---|
| 233 | else:
|
---|
[1826] | 234 | b = Tk.Button(master=master, text=text, padx=2, pady=2,
|
---|
| 235 | command=command)
|
---|
[1724] | 236 | b.pack(side=side)
|
---|
| 237 | return b
|
---|
[1826] | 238 |
|
---|
[1724] | 239 | def spec_show(self):
|
---|
| 240 | if not self.figmgr.toolbar.mode == '' or not self.button: return
|
---|
| 241 | self.figmgr.toolbar.set_message('spec value: drag on a spec')
|
---|
| 242 | if self.mode == 'spec': return
|
---|
| 243 | self.bStat.config(relief='raised')
|
---|
| 244 | self.bSpec.config(relief='sunken')
|
---|
[1884] | 245 | self.bNote.config(relief='raised')
|
---|
[1724] | 246 | self.mode='spec'
|
---|
[1885] | 247 | self.notewin.close_widgets()
|
---|
[1724] | 248 | self.__disconnect_event()
|
---|
| 249 | #self.canvas.mpl_connect('button_press_event',self._select_spectrum)
|
---|
| 250 | self._p.register('button_press',self._select_spectrum)
|
---|
| 251 |
|
---|
| 252 | def stat_cal(self):
|
---|
| 253 | if not self.figmgr.toolbar.mode == '' or not self.button: return
|
---|
| 254 | self.figmgr.toolbar.set_message('statistics: select a region')
|
---|
| 255 | if self.mode == 'stat': return
|
---|
| 256 | self.bSpec.config(relief='raised')
|
---|
| 257 | self.bStat.config(relief='sunken')
|
---|
[1884] | 258 | self.bNote.config(relief='raised')
|
---|
[1724] | 259 | self.mode='stat'
|
---|
[1885] | 260 | self.notewin.close_widgets()
|
---|
[1724] | 261 | self.__disconnect_event()
|
---|
| 262 | self._p.register('button_press',self._single_mask)
|
---|
| 263 |
|
---|
[1884] | 264 | def modify_note(self):
|
---|
[1890] | 265 | if not self.figmgr.toolbar.mode == '': return
|
---|
[1884] | 266 | self.figmgr.toolbar.set_message('text: select a position/text')
|
---|
| 267 | if self.mode == 'note': return
|
---|
| 268 | self.bSpec.config(relief='raised')
|
---|
| 269 | self.bStat.config(relief='raised')
|
---|
| 270 | self.bNote.config(relief='sunken')
|
---|
| 271 | self.mode='note'
|
---|
| 272 | self.__disconnect_event()
|
---|
| 273 | self._p.register('button_press',self._mod_note)
|
---|
| 274 |
|
---|
[1913] | 275 | def prev_page(self):
|
---|
| 276 | self.figmgr.toolbar.set_message('plotting the previous page')
|
---|
| 277 | self._new_page(next=False)
|
---|
| 278 |
|
---|
| 279 | def next_page(self):
|
---|
| 280 | self.figmgr.toolbar.set_message('plotting the next page')
|
---|
| 281 | self._new_page(next=True)
|
---|
| 282 |
|
---|
[1724] | 283 | def quit(self):
|
---|
| 284 | self.__disconnect_event()
|
---|
[1765] | 285 | #self.delete_bar()
|
---|
| 286 | self.disable_button()
|
---|
[1724] | 287 | self.figmgr.window.wm_withdraw()
|
---|
| 288 |
|
---|
| 289 | def enable_button(self):
|
---|
| 290 | if self.button: return
|
---|
| 291 | self.bSpec.config(state=Tk.NORMAL)
|
---|
| 292 | self.bStat.config(state=Tk.NORMAL)
|
---|
| 293 | self.button=True
|
---|
| 294 | self.spec_show()
|
---|
[1826] | 295 |
|
---|
[1724] | 296 | def disable_button(self):
|
---|
| 297 | if not self.button: return
|
---|
[1826] | 298 | self.bStat.config(relief='raised', state=Tk.DISABLED)
|
---|
| 299 | self.bSpec.config(relief='raised', state=Tk.DISABLED)
|
---|
[1913] | 300 | self.bPrev.config(state=Tk.DISABLED)
|
---|
| 301 | #self.bNext.config(state=Tk.DISABLED)
|
---|
[1724] | 302 | self.button=False
|
---|
| 303 | self.mode=''
|
---|
| 304 | self.__disconnect_event()
|
---|
| 305 |
|
---|
[1913] | 306 | def enable_next(self):
|
---|
| 307 | self.bNext.config(state=Tk.NORMAL)
|
---|
| 308 |
|
---|
| 309 | def disable_next(self):
|
---|
| 310 | self.bNext.config(state=Tk.DISABLED)
|
---|
| 311 |
|
---|
| 312 | def enable_prev(self):
|
---|
| 313 | self.bPrev.config(state=Tk.NORMAL)
|
---|
| 314 |
|
---|
| 315 | def disable_prev(self):
|
---|
| 316 | self.bPrev.config(state=Tk.DISABLED)
|
---|
| 317 |
|
---|
[1724] | 318 | def delete_bar(self):
|
---|
| 319 | self.__disconnect_event()
|
---|
[1768] | 320 | self.destroy()
|
---|
[1724] | 321 |
|
---|
| 322 | def __disconnect_event(self):
|
---|
| 323 | #idP=self.figmgr.toolbar._idPress
|
---|
| 324 | #idR=self.figmgr.toolbar._idRelease
|
---|
| 325 | #if idP is not None:
|
---|
| 326 | # self.canvas.mpl_disconnect(idP)
|
---|
| 327 | # self.figmgr.toolbar._idPress=None
|
---|
| 328 | #if idR is not None:
|
---|
| 329 | # self.canvas.mpl_disconnect(idR)
|
---|
| 330 | # self.figmgr.toolbar._idRelease=None
|
---|
| 331 | self._p.register('button_press',None)
|
---|
| 332 | self._p.register('button_release',None)
|
---|