Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
righttoleft.qdoc
Go to the documentation of this file.
1
// Copyright (C) 2021 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4
/*!
5
\page qtquick-positioning-righttoleft.html
6
\title Right-to-left User Interfaces
7
\brief switching text flow and layout
8
\section1 Overview
9
10
This chapter discusses different approaches and options available for implementing right-to-left
11
language support for Qt Quick applications. Some common right-to-left languages include Arabic, Hebrew,
12
Persian and Urdu. Most changes include making sure that text translated to right-to-left languages
13
is properly aligned to the right, and horizontally ordered content in views, lists and grids flows
14
correctly from the right to left.
15
16
In right-to-left language speaking cultures, people naturally scan and read graphic elements and text
17
from the right to left. The general rule of thumb is that content (like photos, videos and maps) is not
18
mirrored, but positioning of the content (like application layouts and the flow of visual elements) is
19
mirrored. For example, photos shown in chronological order should flow from right to left, the
20
low end range of the horizontal sliders should be located at the right side of the slider, and
21
text lines should be aligned to the right side of the available text area. The location of visual
22
elements should not be mirrored when the position is related to a content; for example, when a
23
position marker is shown to indicate a location on a map. Also, there are some special cases you may
24
need to take into account where right-to-left language speakers are used to left-to-right
25
positioning, for example when using number dialers in phones and media play, pause, rewind and
26
forward buttons in music players.
27
28
\section1 Text Alignment
29
30
(This applies to the \l Text, \l TextInput and \l TextEdit types.)
31
32
When the horizontal alignment of a text item is not explicitly set, the text element is
33
automatically aligned to the natural reading direction of the text. By default left-to-right text
34
like English is aligned to the left side of the text area, and right-to-left text like Arabic is
35
aligned to the right side of the text area. The alignment of a text element with empty text takes
36
its alignment cue from \l QInputMethod::inputDirection(), which is based on the active
37
system locale.
38
39
This default locale-based alignment can be overridden by setting the \c horizontalAlignment
40
property for the text element, or by enabling layout mirroring using the \l LayoutMirroring attached
41
property, which causes any explicit left and right horizontal alignments to be mirrored.
42
Note that when \l LayoutMirroring is set, the \c horizontalAlignment property value remains unchanged;
43
the effective alignment of the text element that takes the mirroring into account can be read from the
44
\c effectiveHorizontalAlignment property.
45
46
\snippet qml/righttoleft.qml 0
47
48
\section1 Layout Direction of Positioners and Views
49
50
(This applies to the \l Row, \l Grid, \l Flow, \l ListView and \l GridView types.)
51
52
Types used for horizontal positioning and model views have the \c layoutDirection
53
property for controlling the horizontal direction of the layouts. Setting \c layoutDirection to
54
\c Qt.RightToLeft causes items to be laid out from the right to left. By default Qt Quick follows
55
the left-to-right layout direction.
56
57
The horizontal layout direction can also be reversed through the \l LayoutMirroring attached property.
58
This causes the effective \c layoutDirection of positioners and views to be mirrored. Note the actual value
59
of the \c layoutDirection property will remain unchanged; the effective layout direction of positioners and
60
views that takes the mirroring into account can be read from the \c effectiveLayoutDirection property.
61
62
\snippet qml/righttoleft.qml 1
63
64
\section1 Layout Mirroring
65
66
The attached property \l LayoutMirroring is provided as a convenience for easily implementing right-to-left
67
support for existing left-to-right Qt Quick applications. It mirrors the behavior of \l {anchor-layout}
68
{Item anchors}, the layout direction of \l{Item Positioners}{positioners} and
69
\l{qtquick-modelviewsdata-modelview.html}{model views}, and the explicit text alignment of QML text types.
70
71
You can enable layout mirroring for a particular \l Item:
72
73
\snippet qml/righttoleft.qml 2
74
75
Or set all child types to also inherit the layout direction:
76
77
\snippet qml/righttoleft.qml 3
78
79
Applying mirroring in this manner does not change the actual value of the relevant anchor,
80
\c layoutDirection or \c horizontalAlignment properties. The separate read-only property
81
\c effectiveLayoutDirection can be used to query the effective layout
82
direction of positioners and model views that takes the mirroring into account. Similarly the \l Text,
83
\l TextInput and \l TextEdit types have gained the read-only property \c effectiveHorizontalAlignment
84
for querying the effective visual alignment of text.
85
86
Note that application layouts and animations that are defined using \l {Item::}{x} property values (as
87
opposed to anchors or positioner types) are not affected by the \l LayoutMirroring attached property.
88
Therefore, adding right-to-left support to these types of layouts may require some code changes to your application,
89
especially in views that rely on both the anchors and x coordinate-based positioning. Here is one way to use
90
the \l LayoutMirroring attached property to apply mirroring to an item that is positioned using \l {Item::}{x}
91
coordinates:
92
93
\snippet qml/righttoleft.qml 4
94
95
Not all layouts should necessarily be mirrored. There are cases where a visual type is positioned to
96
the right side of the screen for improved one-handed use, because most people are right-handed, and not
97
because of the reading direction. In the case that a child type should not be affected by mirroring,
98
set the \l {LayoutMirroring::enabled}{LayoutMirroring.enabled} property for that type to false.
99
100
Qt Quick is designed for developing animated, fluid user interfaces. When mirroring your application, remember to test that
101
the animations and transitions continue to work as expected. If you do not have the resources to add
102
right-to-left support for your application, it may be better to just keep the application layouts left
103
aligned and just make sure that text is translated and aligned properly.
104
105
\section1 Mirroring Icons
106
107
(This applies to \l Image, \l BorderImage and \l AnimatedImage types.)
108
109
Most images do not need to be mirrored, but some directional icons, such as arrows, may need to be mirrored.
110
The painting of these icons can be mirrored with a dedicated \c mirror property:
111
112
\snippet qml/righttoleft.qml 5
113
114
\section1 Default Layout Direction
115
116
Use the \l {QtQml::Qt::application}{Qt.application.layoutDirection} property
117
to query the active layout direction of the application. It inherits
118
QGuiApplication::layoutDirection(), which determines the layout direction from
119
the active language translation file.
120
121
To define the layout direction for a particular locale, declare the dedicated
122
string literal \c QT_LAYOUT_DIRECTION in the context \c QGuiApplication as
123
either \c LTR or \c RTL.
124
125
First, introduce this line somewhere in your QML source code:
126
127
\code
128
qsTr("QT_LAYOUT_DIRECTION","QGuiApplication");
129
\endcode
130
131
Then use \l {Using lupdate} to generate the translation source file.
132
133
This appends the following declaration to the translation file, where you can
134
enter either \c LTR or \c RTL as the translation for the locale.
135
136
\code
137
<context>
138
<name>QGuiApplication</name>
139
<message>
140
<location filename="myapp.qml" line="33"/>
141
<source>QT_LAYOUT_DIRECTION</source>
142
<translation type="unfinished">RTL</translation>
143
</message>
144
</context>
145
\endcode
146
147
Next, add the following bindings to the root QML component of your application:
148
\code
149
LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft
150
LayoutMirroring.childrenInherit: true
151
\endcode
152
153
The first binding ensures that the UI will be mirrored appropriately when a
154
right-to-left locale is set. The second binding ensures that child items of the
155
root component will also respect mirroring.
156
157
You can test that the layout direction works as expected by running your Qt Quick application with
158
the compiled translation file:
159
160
\code
161
qml myapp.qml -translation myapp.qm
162
\endcode
163
164
You can test your application in right-to-left layout direction by calling the
165
static function \l QGuiApplication::setLayoutDirection():
166
167
\code
168
QGuiApplication app(argc, argv);
169
app.setLayoutDirection(Qt::RightToLeft);
170
\endcode
171
172
*/
qtdeclarative
src
quick
doc
src
concepts
positioning
righttoleft.qdoc
Generated on
for Qt by
1.14.0