blob: fbbe7b2512a415684c97fed83fc357e0803f0b1b (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
import Qt 4.7
import org.webkit 1.0
import "content"
Item {
id: webBrowser
property string urlString : "http://qt.nokia.com/"
width: 640
height: 480
Item {
id: webPanel
anchors.fill: parent
clip: true
Rectangle {
color: "#555555"
anchors.fill: parent
}
Image {
source: "content/pics/softshadow-bottom.png"
width: webPanel.width
height: 16
}
Image {
source: "content/pics/softshadow-top.png"
width: webPanel.width
height: 16
anchors.bottom: footer.top
}
RectSoftShadow {
x: -webView.contentX
y: -webView.contentY
width: webView.contentWidth
height: webView.contentHeight+headerSpace.height
}
Item {
id: headerSpace
width: parent.width
height: 60
z: 1
RetractingWebBrowserHeader { id: header }
}
FlickableWebView {
id: webView
width: parent.width
anchors.top: headerSpace.bottom
anchors.bottom: footer.top
anchors.left: parent.left
anchors.right: parent.right
}
BorderImage {
id: footer
source: "content/pics/footer.sci"
width: parent.width
height: 43
anchors.bottom: parent.bottom
Rectangle {
y: -1
width: parent.width
height: 1
color: "#555555"
}
Item {
id: backbutton
width: back_e.width
height: back_e.height
anchors.right: reload.left
anchors.rightMargin: 10
anchors.verticalCenter: parent.verticalCenter
Image {
id: back_e
source: "content/pics/back.png"
anchors.fill: parent
}
Image {
id: back_d
source: "content/pics/back-disabled.png"
anchors.fill: parent
}
states: [
State {
name: "Enabled"
when: webView.back.enabled==true
PropertyChanges { target: back_e; opacity: 1 }
PropertyChanges { target: back_d; opacity: 0 }
},
State {
name: "Disabled"
when: webView.back.enabled==false
PropertyChanges { target: back_e; opacity: 0 }
PropertyChanges { target: back_d; opacity: 1 }
}
]
transitions: [
Transition {
NumberAnimation {
properties: "opacity"
easing.type: "InOutQuad"
duration: 300
}
}
]
MouseArea {
anchors.fill: back_e
onClicked: { if (webView.back.enabled) webView.back.trigger() }
}
}
Image {
id: reload
source: "content/pics/reload.png"
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
}
MouseArea {
anchors.fill: reload
onClicked: { webView.reload.trigger() }
}
Item {
id: forwardbutton
width: forward_e.width
height: forward_e.height
anchors.left: reload.right
anchors.leftMargin: 10
anchors.verticalCenter: parent.verticalCenter
Image {
id: forward_e
source: "content/pics/forward.png"
anchors.fill: parent
anchors.verticalCenter: parent.verticalCenter
}
Image {
id: forward_d
source: "content/pics/forward-disabled.png"
anchors.fill: parent
}
states: [
State {
name: "Enabled"
when: webView.forward.enabled==true
PropertyChanges { target: forward_e; opacity: 1 }
PropertyChanges { target: forward_d; opacity: 0 }
},
State {
name: "Disabled"
when: webView.forward.enabled==false
PropertyChanges { target: forward_e; opacity: 0 }
PropertyChanges { target: forward_d; opacity: 1 }
}
]
transitions: [
Transition {
NumberAnimation {
properties: "opacity"
easing.type: "InOutQuad"
duration: 320
}
}
]
MouseArea {
anchors.fill: parent
onClicked: { if (webView.forward.enabled) webView.forward.trigger() }
}
}
}
}
}
|