Namespaces
Variants
Actions
Revision as of 11:05, 1 April 2011 by kiran10182 (Talk | contribs)

Archived:Hiding status and control panes in Qt for Symbian

Jump to: navigation, search


Article Metadata

Tested with
Devices(s): Nokia 5800 XpressMusic, Nokia N8

Compatibility
Platform(s): S60 5th Edition
Symbian ^3

Article
Keywords: QWidget, Qt::WindowSoftkeysVisibleHint
Created: (07 Oct 2010)
Last edited: kiran10182 (01 Apr 2011)

Overview

Following code snippets shows how to hide Symbian status and control (CBA buttons) panes.

Note: In order to use this code, you need to have Qt for Symbian installed on your platform.

Preconditions

  • Install Nokia Qt SDK see [1]

Control and status pane visible

ShowMaximized.png

Execute QMainWindow as show maximized mode, call QMainWindow::showMaximized()

int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow w;
w.showMaximized();
return app.exec();
}


Hide control and status pane

No control or status pane visible.

ShowFullScreen.png

Execute QMainWindow as fullscreen mode, call QMainWindow::showFullScreen()

int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow w;
w.showFullScreen();
return app.exec();
}

Hide status pane

Only control pane is visible.

ShowFullScreenAndCBA.png

Execute QMainWindow as fullscreen mode, call QMainWindow::showFullScreen()

int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow w;
w.showFullScreen();
return app.exec();
}

Define control pane as visible in fullscreen mode, set Qt::WindowSoftkeysVisibleHint window flag into QMainWindow

// Enable Qt::WindowSoftkeysVisibleHint flag in QMainWindow constructor
QWidget::setWindowFlags(windowFlags() | Qt::WindowSoftkeysVisibleHint);

See also

400 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved