blob: d8e2063527617642a5f257f511d9439304ef215d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
import Qt 4.6
// The WebView size is determined by the width, height,
// idealWidth, and idealHeight properties.
Rect {
id: Rect
color: "white"
width: 200
height: Layout.height
VerticalPositioner {
id: Layout
spacing: 2
WebView {
html: "No width defined."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
WebView {
width: Rect.width
html: "The width is full."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
WebView {
width: Rect.width/2
html: "The width is half."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
WebView {
idealWidth: Rect.width/2
html: "The idealWidth is half."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
WebView {
idealWidth: Rect.width/2
html: "The_idealWidth_is_half."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
WebView {
width: Rect.width/2
html: "The_width_is_half."
Rect {
color: "#10000000"
anchors.fill: parent
}
}
}
}
|