projects
/
profile
/
ivi
/
qtdeclarative.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Allow QML URLs to contain pre-encoded octets
[profile/ivi/qtdeclarative.git]
/
tests
/
auto
/
declarative
/
qdeclarativeaccessibility
/
data
/
statictext.qml
1
import QtQuick 2.0
2
3
Item {
4
width: 400
5
height: 400
6
7
Text {
8
x: 100
9
y: 20
10
width: 200
11
height: 50
12
text : "Hello Accessibility"
13
}
14
15
Text {
16
x: 100
17
y: 40
18
width: 100
19
height: 40
20
text : "Hello 2"
21
Accessible.role: Accessible.StaticText
22
Accessible.name: "The Hello 2 accessible text"
23
Accessible.description: "A text description"
24
}
25
}