[PyQt] QWizard, custom resizing windows

2011-01-04 Thread James Polk
Doug suggested using QWizard for a multi-step process I have going, and it's working quite well, Thanks Doug! But, I'm having a small issue with tweeking the window size as I go thru each step...Unfortunately, the window contents for "step 1" are much less than they are for steps 2 and 3, so the

Re: [PyQt] qwizard

2009-08-21 Thread pwnedd
Okay, I think I have it figured out. I was a little unclear about how what was actually being created when the QT Designer code was generated. I now realize that the Ui_xx isn't what is actually extended QWizard, but rather the class that instantiates Ui_xx. Since the pages are still instantiated

Re: [PyQt] qwizard

2009-08-20 Thread pwnedd
Hello, I am facing a similar problem, and was wondering if someone might be able to help me out. I am using the QWizard class, and would like to run some functionality at the end of each page when the user clicks "Next" or "Finish", for example, checking to see if login information works. It lo

Re: [PyQt] qwizard

2008-09-10 Thread Phil Thompson
On Tue, 09 Sep 2008 14:32:17 +0300, Oguz Yarimtepe <[EMAIL PROTECTED]> wrote: > Hi all, > > I am trying to write a GUI using QWizard. I have created the wizard > using designer and edited some parts by playing with the code. I also > added a progress bar and some related functions. I need to run a

[PyQt] qwizard

2008-09-09 Thread Oguz Yarimtepe
Hi all, I am trying to write a GUI using QWizard. I have created the wizard using designer and edited some parts by playing with the code. I also added a progress bar and some related functions. I need to run a function when the user comes to the page #3 but i could`nt find how will i do it with p