Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Remove Toolbar from MeeGo Harmattan Application: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Add "cleanup" tag) |
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
||
Line 32: | Line 32: | ||
== External Links == | == External Links == | ||
[http://www.anavi.org/article/144/ How to Remove Toolbar from MeeGo Harmattan QML Application] | |||
== Qt/C++ Applications == | == Qt/C++ Applications == |
Revision as of 08:43, 4 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
English Български
How to Remove Toolbar from MeeGo Harmattan Application
The problem
By default all native Qt applications for MeeGo Harmattan (Nokia N9, Nokia N950) have a toolbar containing buttons at the bottom of the screen. Some applications do not need this toolbar and it has to be removed.
Solution
To remove the toolbar of a native MeeGo Harmattan QML application do the following steps:
- Disable the visibility of the toolbar at the main QML file and delete the menu:
ToolBarLayout {
id: commonTools
visible: false
}
- Disable tools on you page:
Page {
tools: null
}
External Links
How to Remove Toolbar from MeeGo Harmattan QML Application