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 Code:
  1. Qt::WindowFlags flags = windowFlags();
  2. if(flags & Qt::WindowSoftkeysRespondHint) {
  3. flags |= Qt::WindowSoftkeysVisibleHint;
  4. flags &= ~Qt::WindowSoftkeysRespondHint;
  5. setWindowFlags(flags); // Hides visible window
  6. showFullScreen();
To copy to clipboard, switch view to plain text mode 

Please reply me any help.