PDA

View Full Version : Problem in Overlaying some part of Active window



nagendrababu
27th December 2017, 22:38
Hi All,
I have a window created with some menu options in the top of the window and left the remaining space in the window left empty. Now I want to fill the empty space (with some widgets) in window based on Menu option selected. I did the overlay as follows:

// Screen with Menu (Full screen: 480*272)
MainMenuScreen->show();

//Placing another window by offsetting it's position
ModesScreen->showFullScreen();
ModesScreen->raise();
ModesScreen->activateWindow();
ModesScreen->setGeometry(0,100,272,287);

When I do this, the widgets in ModesScreen aren't responsding. Any help to solve this problem?

Thanks,
Nagendra

d_stranz
28th December 2017, 17:25
Any help to solve this problem?

Not without more code that shows how and where the MainMenuScreen, ModesScreen, and other widgets are created, and how the code you posted is invoked. Better would be complete example that shows what you are trying to do but fails in the same way.