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.