I met some problem when using Qt window and set window modality to WindowModal, really appreciate if someone can help me solving this problem

I have a window called A, it's parent of 3 windows B1, B2, and B3 (they are same class and generated in order). What I expect is that any of these three windows will block A, but they won't block each other.

According to the document, I can do this by setting B1, B2, and B3 to Qt::WindowModal. http://developer.qt.nokia.com/doc/qt-4.8/qt.html#WindowModality-enum

However, the result is that All of B1, B2, B3 will block A, which is fine, but B1 is blocked by B2, and B2 is blocked by B3, which is not as what I expect. It becomes an order (A < B1 < B2 < B3).

Anyone can tell me where's the problem ? Did I use the wrong modality? However, there're only 3 modality, and other two doesn't look like what I need.

link|improve this question

Can you show any code? Are you sure you didn't parent B3 -> B2 -> B1 -> A ? – jdi Feb 22 at 1:13
Wild gues, but probably Qt::WindowModal makes modal to Parent window and all it's children. That is why it works like it works... – Kamil Klimek Feb 25 at 18:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.