Quote:
QDockWidget? I see you can do something in Designer, but how does that work, exactly? I can put them anywhere, and it'll be 'docked', it seems. Should I simply make it stick to the side with a layout for normal dock widget behaviour? Or might it be better to do the dockwidgets all-code?
Hmm I am not exactly sure myself as to how you are suppose to use dockwidgets in the designer, as I have never tried it. See my answer to your next question.
Quote:
In general, how much of the main window do you do in designer and how much in code (except, of course, the behaviour that can only be done with the code)?
For main windows, I think doing it all in code works better. I find i have much better control over what's setup and how. Usually I use designer for widgets and dialogs because it's a lot faster to do them in the designer, and a lot easier to get the layout(s) right. So the main widget for the main window may be something that is created using designer if needed. Ofcourse, even these things (the ui) are usually customised using the code. So it's really the coded class that is used in the main window. Hope that makes sense. Anyway, that's how I do it.