I create QMainWindow with parent widget which is modal QDialog. QMainWindow created as modl window ontop of dialog and doesn't has active close, minimize buttons and has grayed(unaccessable) menu.

I suppose access to QMainWindow's menu restricted since there is QDialog with modal flag active. But I need to have a non modal QMainWindow with menu which can be accessed.

Is it possible? I use qt 4.5.2 and os x lion. Thanks!

link|improve this question
feedback

1 Answer

I'm having trouble imagining the context in which one would open a QMainWindow parented to a modal QDialog.

However, if you want the QMainWindow to act as a top-level window, don't set a parent.

link|improve this answer
In this case it will be overlapped by QDialog(which was parent in previous case). – andrey.s Oct 14 '11 at 3:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.