summaryrefslogtreecommitdiffstats
path: root/examples/declarative/righttoleft
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary QtQuick 1.1 effectiveLayoutDirection, ↵Joona Petrell2011-05-271-1/+11
| | | | | | | | | | | | | | | | | | | | effectiveHorizontalAlignment and anchors.mirror properties * these properties are seldomly used * they confuse developers that do not care about right-to-left user interfaces * LayoutMirroring.enabled property can be used instead to determine if mirroring is enabled * if needed, you can easily determine the effective layout directions and alignments with a little bit of JavaScript: function effectiveLayoutDirection() { if (LayoutMirroring.enabled) return (listView.layoutDirection == Qt.LeftToRight) ? Qt.RightToLeft : Qt.LeftToRight; else return listView.layoutDirection; } Task-number: QTBUG-11042 Reviewed-by: Martin Jones
* fixes/improvements for new QML right-to-left docsBea Lam2011-03-213-9/+9
| | | | Clarify some of the docs and fix some broken doc links.
* Write Qt Quick 1.1 right-to-left documentation and examplesJoona Petrell2011-03-186-0/+1039
Task-number: QTBUG-11042 Reviewed-by: Martin Jones Change-Id: I6319992dec52a4d9252c2df39801ebe6a7dee75d