Hi.
My App has no enough space to run on Symbian 3 based devices.
I need to turn off, hide or dissapear the Softkeys Options, Exit
from my running application.
Is that possible?
I am using code from the softkeys example with no success.
Qt::WindowFlags flags = windowFlags();
if(flags & Qt::WindowSoftkeysRespondHint) {
flags |= Qt::WindowSoftkeysVisibleHint;
flags &= ~Qt::WindowSoftkeysRespondHint;
setWindowFlags(flags); // Hides visible window
showFullScreen();
Qt::WindowFlags flags = windowFlags();
if(flags & Qt::WindowSoftkeysRespondHint) {
flags |= Qt::WindowSoftkeysVisibleHint;
flags &= ~Qt::WindowSoftkeysRespondHint;
setWindowFlags(flags); // Hides visible window
showFullScreen();
To copy to clipboard, switch view to plain text mode
Please reply me any help.
Bookmarks