How to Remove Toolbar from MeeGo Harmattan Application: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) (Remove inaccurate statement about Maemo/MeeGo successor. See Talk:Support for Maemo) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Snippets]] | {{Outdated|reason=The MeeGo/Harmattan platform is no longer supported.}} | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[[Category:Snippets]] | |||
[[Category:HowTo]] | |||
[[Category:Developing_with_Qt::Qt Quick]] | |||
[[Category:Developing_with_Qt::Qt Quick::QML]] | |||
'''English''' [[How_to_Remove_Toolbar_from_MeeGo_Harmattan_Application_Bulgarian|Български]] | '''English''' [[How_to_Remove_Toolbar_from_MeeGo_Harmattan_Application_Bulgarian|Български]] | ||
Line 15: | Line 21: | ||
* Disable the visibility of the toolbar at the main QML file and delete the menu: | * Disable the visibility of the toolbar at the main QML file and delete the menu: | ||
<code>ToolBarLayout { | <code>ToolBarLayout { | ||
id: commonTools | |||
visible: false | |||
}</code> | |||
* Disable tools on you page: | |||
<code>Page { | <code>Page { | ||
tools: null | |||
}</code> | |||
== 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 == |
Latest revision as of 15:06, 27 April 2015
IMPORTANT: The content of this page is outdated. Reason: The MeeGo/Harmattan platform is no longer supported. If you have checked or updated this page and found the content to be suitable, please remove this notice. |
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