thanks nish,
i solved it right now by writing this snippet code and it shows me the device softkeys with fullscreen mode
fileMenu = menuBar()->addMenu(tr("&File"));
fileMenu->addAction(exit);
Qt::WindowFlags flags;
flags |= Qt::WindowSoftkeysVisibleHint;
flags &= ~Qt::WindowSoftkeysRespondHint;
setWindowFlags(flags); // Hides visible window
showFullScreen();
fileMenu = menuBar()->addMenu(tr("&File"));
QAction* exit = new QAction(tr("&Exit"), this);
fileMenu->addAction(exit);
Qt::WindowFlags flags;
flags |= Qt::WindowSoftkeysVisibleHint;
flags &= ~Qt::WindowSoftkeysRespondHint;
setWindowFlags(flags); // Hides visible window
showFullScreen();
To copy to clipboard, switch view to plain text mode
but the problem now is how to replace the "options-exit" menu with "options-back" or "back" soft key only
Ram
Bookmarks