How to properly design a settings dialog?
-
wrote on 26 Mar 2012, 21:42 last edited by
Hi,
I'm writing a web scraper app and am currently designing a settings dialog. This is what it will look like:
!http://i.imgur.com/doD9X.png!
As you can see, there are several buttons at the top and clicking on each one brings the relevant settings page. Now how do I accomplish this? I mean, I've managed to do it by overlapping all the setting pages (having them at the same position), and then calling the .hide() (or .show()) function when the user clicks a button. I was just wondering if there was a better way to go about this.
Oh by the way, I'm using PySide (Python's Qt bindings).
Thanks
Deusdies -
wrote on 26 Mar 2012, 21:43 last edited by
Look at [[doc:QStackedWidget]]
-
wrote on 26 Mar 2012, 21:49 last edited by
Thanks for a fast reply, I just did look into it. Hmm it looks like I'd have to rewrite my dialog quite a bit in order to accomplish this.
-
wrote on 26 Mar 2012, 21:53 last edited by
Usually backing up and spending time to rewrite something correctly more than pays off for itself in the long run with saved time and energy spent having to work around a bad design.
-
wrote on 29 Mar 2012, 09:30 last edited by
It should not be that much of a rewrite, actually. You just replace the way you make sure you show the right page at the right time, but the actual content of the pages can stay the same. I agree with mlong though: getting rid of design mistakes like these is generally well worth the effort.
-
wrote on 29 Mar 2012, 11:04 last edited by
Yep, if you already have the widgets you just add them to the stacked widget and you are good to go, if you followed OOP ethics there will be nothing to rewrite, if not, it will be a valuable lesson :P I mean if you really NEED to rewrite your code that would pretty much mean you have made a mess, going against the concepts of encapsulation and code reusability, which is always a bad idea.
5/6