Re: [pygtk] Multiple Windows and Glade

2003-09-01 Thread Gustavo J A M Carneiro
A Seg, 2003-09-01 às 00:10, Colin Fox escreveu: > On Sun, 2003-08-31 at 15:51, Federico Di Gregorio wrote: > > > The trouble is when I want to show multiple simultaneous versions of it, > > > each with different data. > > > > > > Does anyone know of any examples doing this, or of any documentation

Re: [pygtk] Multiple Windows and Glade

2003-08-31 Thread Colin Fox
On Sun, 2003-08-31 at 15:51, Federico Di Gregorio wrote: > > The trouble is when I want to show multiple simultaneous versions of it, > > each with different data. > > > > Does anyone know of any examples doing this, or of any documentation > > that explains how? > > well, just load the view with

Re: [pygtk] Multiple Windows and Glade

2003-08-31 Thread Federico Di Gregorio
Il lun, 2003-09-01 alle 00:47, Colin Fox ha scritto: > Hi, all. > > I'm working on an app that requires multiple 'view' windows on data. > > I have a tree widget, and I'd like to have it set up so that when you > double-click an entry a view pops up showing details on that element. > > I can cre

[pygtk] Multiple Windows and Glade

2003-08-31 Thread Colin Fox
Hi, all. I'm working on an app that requires multiple 'view' windows on data. I have a tree widget, and I'd like to have it set up so that when you double-click an entry a view pops up showing details on that element. I can create a view window in Glade, and I can hide and show it no problem. T

[pygtk] multiple windows?

2003-08-14 Thread William Hanlon
Hi, I would like to know how to have multiple windows running in the same python program. I have been following the drawingarea.py example in the tutorial (http://www.moeraki.com/pygtktutorial/pygtk2tutorial/sec-DrawingMethods.html) and can't figure out how to extend it so that a second window is

Re: [pygtk] multiple windows?

2003-08-14 Thread Christian Reis
On Tue, Aug 05, 2003 at 12:16:22AM -0600, William Hanlon wrote: > I would like to know how to have multiple windows running in the same > python program. I have been following the drawingarea.py example in Just create a new Window() in a callback and call show() on it. It should `just work'. Take