(1) Start the internal python interpreter... and make the 'pylab' module from the main python/casapy namespace visible inside it. ( done inside TPPlotter ) Note that 'pylab' is the only module of casapy that is visible from this internal interpreter. (2) figmanager = pl.get_current_fig_manager() -> This gets a handle to the current window, canvas, toolbar. (3) Create the python-C++ call-back module -> PyBind. ( description in tables/implement/TablePlot/PlotterGlobals.cc ) (3) TablePlotTkAgg.py implements a python class called 'PlotFlag' which takes an instance of 'PyBind' and 'figmanager' and makes the connection between the two. - Additional buttons are placed in the toolbar, and their callbacks defined to call methods of PyBind. - The toolbar event-loop is captured - by explicitly disconnecting previous bindings, and re-defining them for 'pan','zoom','mark-region' modes. (need to do all three, to get them to interact properly with each other) - Some Canvas events are also redefined to allow mark-region boxes to automatically resize and move around, when the window is resized or when in pan or zoom modes. ( This is needed to allow flagging with zooming ). (4) Back to the internal python interpreter. The following steps are carried out. -> figmanager = pl.get_current_fig_manager() -> import PyBind -> from TablePlotTkagg import PlotFlag -> pf = PlotFlag( PyBind ) -> pf.setup_custom_features( figmanager ) ----> All binding is complete at this point. ----> All other logic is to ensure things like... make sure new buttons are added only when needed... make sure they *are* added when needed... and this has to keep up with the native TkAgg matplotlib backend's whimsical decisions of when to create a new figure and when not to.
Definition at line 17 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.__init__ | ( | self, | |
PyBind | |||
) |
Definition at line 58 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag._NewButton | ( | self, | |
frame, | |||
text, | |||
file, | |||
command, | |||
side = Tk.LEFT |
|||
) | [private] |
Definition at line 116 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.add_buttons | ( | self | ) |
Definition at line 129 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.back | ( | self, | |
args | |||
) |
Definition at line 443 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.clearplot | ( | self, | |
args | |||
) |
Definition at line 235 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.configure_buttons | ( | self | ) |
Definition at line 186 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.back(), TablePlotTkAgg.PlotFlag.configure_subplots(), regressframe.regressionframe.flag, asap.lagflagger.lagplotter.flag(), vla_uvfits_line_sf.regressverify.flag(), TablePlotTkAgg.PlotFlag.flag(), TablePlotQt4Agg.PlotFlag.flag(), asap.customgui_base.CustomFlagToolbarCommon.flag(), asap.scantable.scantable.flag(), TablePlotTkAgg.PlotFlag.forward(), TablePlotTkAgg.PlotFlag.home(), __casac__.tableplot.tableplot.iterplotnext(), TablePlotTkAgg.PlotFlag.iterplotnext(), __casac__.msplot.msplot.iterplotnext(), TablePlotTkAgg.PlotFlag.locate(), __casac__.msplot.msplot.markregion(), TablePlotTkAgg.PlotFlag.markregion(), TablePlotTkAgg.PlotFlag.pan(), asap.asaplot.asaplot.quit(), asap.asaplotgui.asaplotgui.quit(), asap.asaplotgui_gtk.asaplotgui.quit(), asap.asaplotgui_qt4.asaplotgui.quit(), asap.customgui_tkagg.CustomToolbarTkAgg.quit(), asap.customgui_qt4agg.CustomToolbarQT4Agg.quit(), TablePlotTkAgg.PlotFlag.quit(), asap.customgui_tkagg.CustomFlagToolbarTkAgg.quit(), asap.customgui_qt4agg.CustomFlagToolbarQT4Agg.quit(), task_sdflag.sdflag_worker.unflag, TablePlotTkAgg.PlotFlag.unflag(), asap.customgui_base.CustomFlagToolbarCommon.unflag(), parameter_dictionary.par.unflag(), and TablePlotTkAgg.PlotFlag.zoom().
def TablePlotTkAgg.PlotFlag.configure_subplots | ( | self | ) |
Definition at line 457 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.copy_trans | ( | self, | |
trans | |||
) |
Definition at line 1026 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.switch_func().
Referenced by TablePlotTkAgg.PlotFlag.press_markregion(), TablePlotTkAgg.PlotFlag.press_pan(), and TablePlotTkAgg.PlotFlag.press_zoom().
def TablePlotTkAgg.PlotFlag.destroy | ( | self, | |
args | |||
) |
Definition at line 407 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.newtoolbar, asap.asaplot.asaplot.quit(), asap.asaplotgui.asaplotgui.quit(), asap.asaplotgui_gtk.asaplotgui.quit(), asap.asaplotgui_qt4.asaplotgui.quit(), asap.customgui_tkagg.CustomToolbarTkAgg.quit(), asap.customgui_qt4agg.CustomToolbarQT4Agg.quit(), TablePlotTkAgg.PlotFlag.quit(), asap.customgui_tkagg.CustomFlagToolbarTkAgg.quit(), asap.customgui_qt4agg.CustomFlagToolbarQT4Agg.quit(), and TablePlotTkAgg.PlotFlag.quitted.
Referenced by asap.customgui_tkagg.CustomToolbarTkAgg.delete_bar(), asap.customgui_qt4agg.CustomToolbarQT4Agg.delete_bar(), asap.customgui_tkagg.CustomFlagToolbarTkAgg.delete_bar(), and asap.customgui_qt4agg.CustomFlagToolbarQT4Agg.delete_bar().
def TablePlotTkAgg.PlotFlag.disable_clear_button | ( | self | ) |
Definition at line 312 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.disable_flag_button | ( | self | ) |
Definition at line 276 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.disable_iter_button | ( | self | ) |
Definition at line 252 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.disable_locate_button | ( | self | ) |
Definition at line 300 of file TablePlotTkAgg.py.
Definition at line 264 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.disable_quit_button | ( | self | ) |
Definition at line 324 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.disable_unflag_button | ( | self | ) |
Definition at line 288 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.drag_pan | ( | self, | |
event | |||
) |
Definition at line 839 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_bbox_size(), TablePlotTkAgg.PlotFlag.get_inverse_xy(), TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.press_pan().
def TablePlotTkAgg.PlotFlag.draw_rect | ( | self, | |
x0, | |||
y0, | |||
x1, | |||
y1, | |||
x0data, | |||
y0data, | |||
x1data, | |||
y1data, | |||
a, | |||
panel, | |||
rows, | |||
cols | |||
) |
Definition at line 345 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_bbox_size().
Referenced by TablePlotTkAgg.PlotFlag.release_markregion().
def TablePlotTkAgg.PlotFlag.draw_rubberband | ( | self, | |
event, | |||
x0, | |||
y0, | |||
x1, | |||
y1 | |||
) |
Definition at line 330 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_bbox_size().
Referenced by TablePlotTkAgg.PlotFlag.mouse_move().
def TablePlotTkAgg.PlotFlag.enable_clear_button | ( | self | ) |
Definition at line 306 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_flag_button | ( | self | ) |
Definition at line 270 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_iter_button | ( | self | ) |
Definition at line 246 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_locate_button | ( | self | ) |
Definition at line 294 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_markregion_button | ( | self | ) |
Definition at line 258 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_quit_button | ( | self | ) |
Definition at line 318 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.enable_unflag_button | ( | self | ) |
Definition at line 282 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.erase_rects | ( | self | ) |
Definition at line 360 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.axeslist, TablePlotQt4Agg.PlotFlag.axeslist, TablePlotTkAgg.PlotFlag.panelregionlist, and TablePlotTkAgg.PlotFlag.regionlist.
Referenced by TablePlotTkAgg.PlotFlag.destroy(), TablePlotTkAgg.PlotFlag.markregion(), and TablePlotTkAgg.PlotFlag.operate().
def TablePlotTkAgg.PlotFlag.flag | ( | self, | |
args | |||
) |
Definition at line 204 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.operate().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.forward | ( | self, | |
args | |||
) |
Definition at line 450 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.get_bbox_size | ( | self, | |
obj, | |||
func = "" |
|||
) |
Definition at line 1029 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_called_or_attr().
Referenced by TablePlotTkAgg.PlotFlag.drag_pan(), TablePlotTkAgg.PlotFlag.draw_rect(), TablePlotTkAgg.PlotFlag.draw_rubberband(), and TablePlotTkAgg.PlotFlag.redraw_rects().
def TablePlotTkAgg.PlotFlag.get_called_or_attr | ( | self, | |
obj, | |||
func = "" , |
|||
args, | |||
kwargs | |||
) |
Returns a result from function call if it's callable. If not callable, returns the attribute or False (non-existent).
Definition at line 1042 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.get_bbox_size(), and TablePlotTkAgg.PlotFlag.switch_func().
def TablePlotTkAgg.PlotFlag.get_inverse_xy | ( | self, | |
trans, | |||
x, | |||
y | |||
) |
Definition at line 1018 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.drag_pan(), TablePlotTkAgg.PlotFlag.release_markregion(), and TablePlotTkAgg.PlotFlag.release_zoom().
def TablePlotTkAgg.PlotFlag.get_xy | ( | self, | |
trans, | |||
x, | |||
y | |||
) |
Definition at line 1023 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.switch_func().
Referenced by TablePlotTkAgg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.release_markregion().
def TablePlotTkAgg.PlotFlag.home | ( | self, | |
args | |||
) |
Definition at line 436 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.ismatlab_new | ( | self | ) |
Workarounds for Matplotlib version handling (ugly) ####.
Definition at line 1012 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.iterplotnext | ( | self, | |
args | |||
) |
Definition at line 229 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.iterplotstop | ( | self, | |
args | |||
) |
Definition at line 232 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.key_release | ( | self, | |
event | |||
) |
Definition at line 423 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.regionlist.
def TablePlotTkAgg.PlotFlag.locate | ( | self, | |
args | |||
) |
Definition at line 210 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.operate().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.markregion | ( | self, | |
args | |||
) |
Definition at line 465 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.press_markregion(), TablePlotTkAgg.PlotFlag.release_markregion(), TablePlotTkAgg.PlotFlag.toolbar, and TablePlotTkAgg.PlotFlag.update_relief().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.mouse_move | ( | self, | |
event | |||
) |
Definition at line 944 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.draw_rubberband(), and TablePlotTkAgg.PlotFlag.set_cursor().
Referenced by TablePlotTkAgg.PlotFlag.release_pan().
def TablePlotTkAgg.PlotFlag.operate | ( | self, | |
flag = 1 |
|||
) |
Definition at line 213 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.erase_rects(), and TablePlotTkAgg.PlotFlag.panelregionlist.
Referenced by TablePlotTkAgg.PlotFlag.flag(), TablePlotTkAgg.PlotFlag.locate(), and TablePlotTkAgg.PlotFlag.unflag().
def TablePlotTkAgg.PlotFlag.pan | ( | self, | |
args | |||
) |
Definition at line 751 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.press_pan(), TablePlotTkAgg.PlotFlag.release_pan(), TablePlotTkAgg.PlotFlag.toolbar, and TablePlotTkAgg.PlotFlag.update_relief().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.plotflag_cleanup | ( | self | ) |
Definition at line 109 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.press_markregion | ( | self, | |
event | |||
) |
Definition at line 499 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.cols, TablePlotQt4Agg.PlotFlag.cols, asap.asaplotbase.asaplotbase.cols, TablePlotTkAgg.PlotFlag.copy_trans(), TablePlotTkAgg.PlotFlag.panel, TablePlotQt4Agg.PlotFlag.panel, TablePlotTkAgg.PlotFlag.rows, TablePlotQt4Agg.PlotFlag.rows, asap.asaplotbase.asaplotbase.rows, and gprof2dot.AQtimeTable.rows.
Referenced by TablePlotTkAgg.PlotFlag.markregion().
def TablePlotTkAgg.PlotFlag.press_pan | ( | self, | |
event | |||
) |
Definition at line 789 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.copy_trans(), and TablePlotTkAgg.PlotFlag.drag_pan().
Referenced by TablePlotTkAgg.PlotFlag.pan().
def TablePlotTkAgg.PlotFlag.press_zoom | ( | self, | |
event | |||
) |
Definition at line 635 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.copy_trans().
Referenced by TablePlotTkAgg.PlotFlag.zoom().
def TablePlotTkAgg.PlotFlag.quit | ( | self, | |
closewin = True |
|||
) |
Definition at line 418 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.quitted.
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons(), and TablePlotTkAgg.PlotFlag.destroy().
def TablePlotTkAgg.PlotFlag.redraw_rects | ( | self | ) |
Definition at line 371 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.axeslist, TablePlotQt4Agg.PlotFlag.axeslist, TablePlotTkAgg.PlotFlag.get_bbox_size(), TablePlotTkAgg.PlotFlag.get_xy(), TablePlotTkAgg.PlotFlag.panelregionlist, and TablePlotTkAgg.PlotFlag.regionlist.
Referenced by TablePlotTkAgg.PlotFlag.back(), TablePlotTkAgg.PlotFlag.configure_subplots(), TablePlotTkAgg.PlotFlag.drag_pan(), TablePlotTkAgg.PlotFlag.forward(), TablePlotTkAgg.PlotFlag.home(), TablePlotTkAgg.PlotFlag.release_pan(), TablePlotTkAgg.PlotFlag.release_zoom(), and TablePlotTkAgg.PlotFlag.resize().
def TablePlotTkAgg.PlotFlag.release_markregion | ( | self, | |
event | |||
) |
Definition at line 536 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.cols, TablePlotQt4Agg.PlotFlag.cols, asap.asaplotbase.asaplotbase.cols, TablePlotQt4Agg.PlotFlag.draw_rect(), TablePlotTkAgg.PlotFlag.draw_rect(), TablePlotTkAgg.PlotFlag.get_inverse_xy(), TablePlotTkAgg.PlotFlag.get_xy(), TablePlotTkAgg.PlotFlag.panel, TablePlotQt4Agg.PlotFlag.panel, TablePlotTkAgg.PlotFlag.rows, TablePlotQt4Agg.PlotFlag.rows, asap.asaplotbase.asaplotbase.rows, and gprof2dot.AQtimeTable.rows.
Referenced by TablePlotTkAgg.PlotFlag.markregion().
def TablePlotTkAgg.PlotFlag.release_pan | ( | self, | |
event | |||
) |
Definition at line 824 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.mouse_move(), TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.pan().
def TablePlotTkAgg.PlotFlag.release_zoom | ( | self, | |
event | |||
) |
Definition at line 667 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_inverse_xy(), TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Referenced by TablePlotTkAgg.PlotFlag.zoom().
def TablePlotTkAgg.PlotFlag.resize | ( | self, | |
event | |||
) |
Definition at line 402 of file TablePlotTkAgg.py.
References TablePlotQt4Agg.PlotFlag.redraw_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
def TablePlotTkAgg.PlotFlag.savefig | ( | self, | |
args | |||
) |
Definition at line 240 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.set_cursor | ( | self, | |
cursor | |||
) |
Definition at line 112 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.mouse_move().
def TablePlotTkAgg.PlotFlag.setup_custom_features | ( | self, | |
cfigman | |||
) |
Definition at line 69 of file TablePlotTkAgg.py.
def TablePlotTkAgg.PlotFlag.sub | ( | self | ) |
Definition at line 64 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.quitted.
def TablePlotTkAgg.PlotFlag.switch_func | ( | self, | |
obj, | |||
funcs = [] , |
|||
args, | |||
kwargs | |||
) |
Tries a list of functions and return a result from callable one. Deals with function name changes but parameters have to be unchanged.
Definition at line 1032 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.get_called_or_attr().
Referenced by TablePlotTkAgg.PlotFlag.copy_trans(), and TablePlotTkAgg.PlotFlag.get_xy().
def TablePlotTkAgg.PlotFlag.unflag | ( | self, | |
args | |||
) |
Definition at line 207 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.operate().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
def TablePlotTkAgg.PlotFlag.update_relief | ( | self, | |
newmode | |||
) |
Definition at line 990 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.markregion(), TablePlotTkAgg.PlotFlag.pan(), and TablePlotTkAgg.PlotFlag.zoom().
def TablePlotTkAgg.PlotFlag.zoom | ( | self, | |
args | |||
) |
Definition at line 602 of file TablePlotTkAgg.py.
References TablePlotTkAgg.PlotFlag.press_zoom(), TablePlotTkAgg.PlotFlag.release_zoom(), TablePlotTkAgg.PlotFlag.toolbar, and TablePlotTkAgg.PlotFlag.update_relief().
Referenced by TablePlotTkAgg.PlotFlag.configure_buttons().
Definition at line 96 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.erase_rects(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Definition at line 73 of file TablePlotTkAgg.py.
Definition at line 91 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.press_markregion(), and TablePlotTkAgg.PlotFlag.release_markregion().
Definition at line 75 of file TablePlotTkAgg.py.
Definition at line 131 of file TablePlotTkAgg.py.
Definition at line 61 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.destroy().
workaround for matplotlib API changes self.toolbar._xypress.append(( x, y, a, i, lim, a.transData.deepcopy() )) #0.91.4 self.toolbar._xypress.append(( x, y, a, i, lim, a.transData.frozen() )) #>=0.98
Definition at line 89 of file TablePlotTkAgg.py.
Referenced by task_sdplot.sdplot_worker.__setup_plotter(), TablePlotTkAgg.PlotFlag.press_markregion(), TablePlotTkAgg.PlotFlag.release_markregion(), tests.test_sdplot.sdplot_storageTest.testDF(), tests.test_sdplot.sdplot_storageTest.testDT(), tests.test_sdplot.sdplot_storageTest.testMF(), and tests.test_sdplot.sdplot_storageTest.testMT().
Definition at line 95 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.operate(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Definition at line 60 of file TablePlotTkAgg.py.
Definition at line 62 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.destroy(), TablePlotTkAgg.PlotFlag.quit(), and TablePlotTkAgg.PlotFlag.sub().
Definition at line 94 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.erase_rects(), TablePlotTkAgg.PlotFlag.key_release(), and TablePlotTkAgg.PlotFlag.redraw_rects().
Definition at line 90 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.press_markregion(), and TablePlotTkAgg.PlotFlag.release_markregion().
Definition at line 72 of file TablePlotTkAgg.py.
Referenced by TablePlotTkAgg.PlotFlag.markregion(), TablePlotTkAgg.PlotFlag.pan(), and TablePlotTkAgg.PlotFlag.zoom().
Definition at line 74 of file TablePlotTkAgg.py.