How to tab DockWidgets in Qt Designer
-
Hi Everyone!
First of all I would like to say that I love Qt so far, thank you guys for creating this. So now to my problem...
I am having a bit of a problem with the Qt Designer to get the DockWidgets to be tabbed by default. Is it possible to create this directly in the Qt Designer, via editing the .ui file directly or is it only possible to make this trough coding it?
Here are some images to describe it further:
This is how I would like for it to behave as default when previewing the file:
!http://img268.imageshack.us/img268/3263/qttabspreview2.jpg(How it should preview as default)!Here is what it looks like now in the editor:
!http://img534.imageshack.us/img534/3451/qttabseditor.jpg(How it looks in the Qt Designer)!And how that one looks like in preview at the moment:
!http://img215.imageshack.us/img215/7149/qttabspreview1.jpg(How the preview looks like)!Thanks
-
Hi!
As far as i know you can't nest or put QDockWidget into another. They directly append to the main window.
Shall the tabs be dockable, too?
If not, just add a tab widget (tabPosition:South) to your QDockWidget and add pages to it, connect to "currentChanged()" in tab-widget and set the caption of your QDockWidget to the caption on the active page of your tab-widget.
Screens:
QtDesigner
!http://oi53.tinypic.com/2i0udn8.jpg(DESIGNER)!Preview
!http://oi54.tinypic.com/29cnssm.jpg(Preview)!Does it fit your needs?
Edit:
Sorry for my bad english and mistakes. I just got into Qt, started learning.Edit 2:
Sorry. It is possible to tab QDockWidgets…Messages merged by Andre: please update your latest post instead of starting a new one if that makes sense
-
[quote author="jensen82" date="1299858676"]Sorry. It is possible to tab QDockWidgets...[/quote]
Thank you for your reply. Did you find a solution? I know that it was just a row of code to make it possible in the coding but as for me as a designer it would be the best for me if I could do as much as possible in just the design part. -
This is definitely a feature that is missing in Qt Designer, I think a lot of people would appreciate this functionality being added as this makes it near impossible, or at the very least incredibly impractical, using Qt Designer to design applications that have tabbed QDockWidgets.
In my case, using 4+ tabbed QDockWidgets means I have to navigate about 3-4x the Screen Space that is available on my monitor for an application that, while running, fits into it just fine.