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.
Qt-contributors-summit-2013-Adaptive-UI
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. |
Asset Prefix:
asset prefix: asset://main.qml
will automatically be targeted to the ‘right’ location, and the build system will deploy to the ‘right’ location, too.
Selectors:
select different one file for platform (and model):
../Conf.qml
../+tablet/Conf.qml
../+desktop/Conf.qml
Some selectors will be provided by Qt, but there is an API for also add selectors.
The selector logic should not only work for QML , but be part of Qt Core.
What about performance?
One could resolve some selectors at deployment time (e.g. platform). In addition one might resolve things at installation time (separate map file), or cache resolved paths between runs if the selectors haven’t changed.
How to find the right file in case of conflicts / selectors providing the same file?
Qt Creator could provide means to select active’ selectors’.
Q: Will you be able to switch selectors at runtime (landscape/portrait)?
Not really. You could reset the UI by reloading all .qml files though. But maybe it’s not the right thing for orientation changes anyway.
Singleton elements:
Singleton elements (e..g named Conf)
fontSize:Conf.size
screen size / DPI / orientation
There will be variables to bind too.
Layouts
To be continued …
- Import Restrictions ? Security?
- Timeframe?
- How does that relate to Ubuntu Grid Units?