Re: [Matplotlib-users] Keep list of figures or plots and flip through list using UI

2015-02-18 Thread Thomas Caswell
Please ping the mailing list again (I cc'd the list on this). See https://github.com/tacaswell/leidenfrost/blob/master/leidenfrost/gui/reader_gui.py#L636 (sorry for the code quality, this is a bespoked gui I wrote as part of my PhD work, you might be the second person to ever read this code) for a

Re: [Matplotlib-users] Keep list of figures or plots and flip through list using UI

2015-02-10 Thread Thomas Caswell
Sorry this didn't get a response for so long. The core of the embedding in Qt is at QWidget which contains the canvas. Anything you want to do with a QWidget you can do with the canvas. Independently you need to maintain the mpl level plotting objects (the Figure, Axes, and Artist objects) (well,

[Matplotlib-users] Keep list of figures or plots and flip through list using UI

2015-02-05 Thread tenspd137 .
Hi all, I often have scripts that make a lot of plots, and I would like to be able to create the plots and then have a UI tool that shows a list of their titles, click on the title and have the plot be drawn in a window. So far, I have been able to use PyQt to create a UI with a list box and a Wi