##// END OF EJS Templates
don't close figures every cycle in inline backend...
MinRK -
Show More
@@ -55,44 +55,67 b' class InlineBackendConfig(SingletonConfigurable):'
55 # Functions
55 # Functions
56 #-----------------------------------------------------------------------------
56 #-----------------------------------------------------------------------------
57
57
58 def show(close=True):
58 def show(close=False):
59 """Show all figures as SVG payloads sent to the IPython clients.
59 """Show all figures as SVG payloads sent to the IPython clients.
60
60
61 Parameters
61 Parameters
62 ----------
62 ----------
63 close : bool, optional
63 close : bool, optional
64 If true, a ``plt.close('all')`` call is automatically issued after
64 If true, a ``plt.close('all')`` call is automatically issued after
65 sending all the SVG figures. If this is set, the figures will entirely
65 sending all the figures. If this is set, the figures will entirely
66 removed from the internal list of figures.
66 removed from the internal list of figures.
67 """
67 """
68 for figure_manager in Gcf.get_all_fig_managers():
68 for figure_manager in Gcf.get_all_fig_managers():
69 send_figure(figure_manager.canvas.figure)
69 send_figure(figure_manager.canvas.figure)
70 if close:
70 if close:
71 matplotlib.pyplot.close('all')
71 matplotlib.pyplot.close('all')
72 show._to_draw = []
73
72
74
73
75
74 # This flag will be reset by draw_if_interactive when called
76 # This flag will be reset by draw_if_interactive when called
75 show._draw_called = False
77 show._draw_called = False
78 # list of figures to draw when flush_figures is called
79 show._to_draw = []
76
80
77
81
78 def draw_if_interactive():
82 def draw_if_interactive():
79 """
83 """
80 Is called after every pylab drawing command
84 Is called after every pylab drawing command
81 """
85 """
82 # We simply flag we were called and otherwise do nothing. At the end of
86 # signal that the current active figure should be sent at the end of execution.
83 # the code execution, a separate call to show_close() will act upon this.
87 # Also sets the _draw_called flag, signaling that there will be something to send.
88 # At the end of the code execution, a separate call to flush_figures()
89 # will act upon these values
90
91 fig = Gcf.get_active().canvas.figure
92
93 # ensure current figure will be drawn, and each subsequent call
94 # of draw_if_interactive() moves the active figure to ensure it is
95 # drawn last
96 try:
97 show._to_draw.remove(fig)
98 except ValueError:
99 # ensure it only appears in the draw list once
100 pass
101 show._to_draw.append(fig)
84 show._draw_called = True
102 show._draw_called = True
85
103
86
87 def flush_figures():
104 def flush_figures():
88 """Call show, close all open figures, sending all figure images.
105 """Send all figures that changed
89
106
90 This is meant to be called automatically and will call show() if, during
107 This is meant to be called automatically and will call show() if, during
91 prior code execution, there had been any calls to draw_if_interactive.
108 prior code execution, there had been any calls to draw_if_interactive.
92 """
109 """
93 if show._draw_called:
110 if not show._draw_called:
94 show()
111 return
95 show._draw_called = False
112 # exclude any figures that were closed:
113 active = set([fm.canvas.figure for fm in Gcf.get_all_fig_managers()])
114 for fig in [ fig for fig in show._to_draw if fig in active ]:
115 send_figure(fig)
116 # clear flags for next round
117 show._to_draw = []
118 show._draw_called = False
96
119
97
120
98 def send_figure(fig):
121 def send_figure(fig):
General Comments 0
You need to be logged in to leave comments. Login now