I have two buttons on my QMainWindow. One to btnShowKb and another btnHideKb. When i press btnShowKb it shows an QWidget. I want this QWidget always to be on top of all windows till I press btnHideKb. When its on top, I want both QWidget and QMainWidget be activated.

Can anybody suggest on this?

link|improve this question

63% accept rate
You can't (reliably) steal focus in windows. – J-16 SDiZ Feb 10 '11 at 1:17
feedback

1 Answer

Setting the setWindowFlags() with Qt::WindowStaysOnTopHint is meant to help.

http://doc.qt.nokia.com/4.7/qt.html#WindowType-enum

http://doc.qt.nokia.com/4.7/widgets-windowflags.html

link|improve this answer
Thanks, also the code is shown in this question: stackoverflow.com/questions/2855968/… – Anisha Kaul Feb 15 at 8:59
feedback

Your Answer

 
or
required, but never shown

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