1 | """
|
---|
2 | ASAP plotting class based on matplotlib.
|
---|
3 | """
|
---|
4 |
|
---|
5 | from asap.asaplotbase import *
|
---|
6 | import Tkinter as Tk
|
---|
7 | import matplotlib
|
---|
8 | from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, \
|
---|
9 | FigureManagerTkAgg
|
---|
10 | # Force use of the newfangled toolbar.
|
---|
11 | matplotlib.rcParams['toolbar'] = 'toolbar2'
|
---|
12 | from matplotlib import _pylab_helpers
|
---|
13 | from asap.logging import asaplog, asaplog_post_dec
|
---|
14 |
|
---|
15 | class asaplotgui(asaplotbase):
|
---|
16 | """
|
---|
17 | ASAP plotting class based on matplotlib.
|
---|
18 | """
|
---|
19 |
|
---|
20 | def __init__(self, rows=1, cols=0, title='', size=None, buffering=False):
|
---|
21 | """
|
---|
22 | Create a new instance of the ASAPlot plotting class.
|
---|
23 |
|
---|
24 | If rows < 1 then a separate call to set_panels() is required to define
|
---|
25 | the panel layout; refer to the doctext for set_panels().
|
---|
26 | """
|
---|
27 | v = vars()
|
---|
28 | del v['self']
|
---|
29 |
|
---|
30 | asaplotbase.__init__(self, **v)
|
---|
31 | #matplotlib.rcParams["interactive"] = True
|
---|
32 |
|
---|
33 | _pylab_helpers.Gcf.destroy(0)
|
---|
34 | self.window = Tk.Tk()
|
---|
35 | self.window.protocol("WM_DELETE_WINDOW", self.quit)
|
---|
36 | self.canvas = FigureCanvasTkAgg(self.figure, master=self.window)
|
---|
37 | self.canvas.get_tk_widget().pack(side=Tk.TOP, fill=Tk.BOTH, expand=1)
|
---|
38 | # Simply instantiating this is enough to get a working toolbar.
|
---|
39 | self.figmgr = FigureManagerTkAgg(self.canvas, 0, self.window)
|
---|
40 | # Register this plot to matplotlib without activating it
|
---|
41 | #_pylab_helpers.Gcf.set_active(self.figmgr)
|
---|
42 | _pylab_helpers.Gcf.figs[self.figmgr.num] = self.figmgr
|
---|
43 | self._set_window_title('ASAP Plotter - Tk')
|
---|
44 | self.canvas.show()
|
---|
45 |
|
---|
46 |
|
---|
47 | def map(self):
|
---|
48 | """
|
---|
49 | Reveal the ASAPlot graphics window and bring it to the top of the
|
---|
50 | window stack.
|
---|
51 | """
|
---|
52 | if self.is_dead:
|
---|
53 | raise RuntimeError( "No plotter to show. Not yet plotted or plotter is closed." )
|
---|
54 | self.window.wm_deiconify()
|
---|
55 | self.window.lift()
|
---|
56 |
|
---|
57 | def quit(self):
|
---|
58 | """
|
---|
59 | Destroy the ASAPlot graphics window.
|
---|
60 | """
|
---|
61 | self.is_dead = True
|
---|
62 | if not self.figmgr:
|
---|
63 | return
|
---|
64 | #self.window.destroy()
|
---|
65 | _pylab_helpers.Gcf.destroy(self.figmgr.num)
|
---|
66 | del self.window, self.canvas, self.figmgr
|
---|
67 | self.window = None
|
---|
68 | self.canvas = None
|
---|
69 | self.figmgr = None
|
---|
70 |
|
---|
71 | def show(self, hardrefresh=True):
|
---|
72 | """
|
---|
73 | Show graphics dependent on the current buffering state.
|
---|
74 | """
|
---|
75 | if self.is_dead:
|
---|
76 | raise RuntimeError( "No plotter to show (not yet plotted or closed)." )
|
---|
77 | if not self.buffering:
|
---|
78 | if hardrefresh:
|
---|
79 | asaplotbase.show(self)
|
---|
80 | self.window.wm_deiconify()
|
---|
81 | self.canvas.show()
|
---|
82 |
|
---|
83 | def terminate(self):
|
---|
84 | """
|
---|
85 | Clear the figure.
|
---|
86 | """
|
---|
87 | if not self.window:
|
---|
88 | asaplog.push( "No plotter window to terminate." )
|
---|
89 | asaplog.post( "WARN" )
|
---|
90 | return
|
---|
91 | self.window.destroy()
|
---|
92 |
|
---|
93 | def unmap(self):
|
---|
94 | """
|
---|
95 | Hide the ASAPlot graphics window.
|
---|
96 | """
|
---|
97 | if not self.window:
|
---|
98 | asaplog.push( "No plotter window to unmap." )
|
---|
99 | asaplog.post( "WARN" )
|
---|
100 | return
|
---|
101 | self.window.wm_withdraw()
|
---|
102 |
|
---|
103 | def _set_window_title(self,title):
|
---|
104 | # Set title to main window title bar
|
---|
105 | self.window.wm_title(title)
|
---|