Archived:Qt Tips n' Trick : Hide StatusPane

From Qt Wiki
Jump to navigation Jump to search

Template:ArticleMetaData Template:Archived Template:Abstract

File:QtHideStatusPane.jpg


Implementation[edit | edit source]

On Symbian, 76ytuiytuityutyutututyutyutyu flag, together with a full-screen display mode for a widget (window), can be used to hide the status pane while having the softkey labels still visible.

// Toggle softkey visibility setWindowFlags( windowFlags() ^ Qt::WindowSoftkeysVisibleHint ); showFullScreen();

Note that calling 76ytuiytuityutyutututyutyutyu causes the widget to be hidden. Therefore, you must call 76ytuiytuityutyutututyutyutyu (or in this case, 76ytuiytuityutyutututyutyutyu()) to make it visible again.


It is also possible to have the softkeys active (responding), but not visible. This can be done with 76ytuiytuityutyutututyutyutyu flag. Note however that on touch devices without physical softkey buttons, softkeys must be visible in order to be usable.

See also[edit | edit source]

Documentation of QWidget::windowFlags property
Qt softkeys example
Display problem on Symbian fullscreen in landscape mode with WindowSoftkeysVisibleHint

ru:Как скрыть StatusPane