import Qt 4.7
Item {
width: 600
height: 900
Loader
{
id: pageLoader
focus: true
}
Image {
id: back_ground_main
source: "images/back_ground_main.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: tabs_main
source: "images/tabs_main.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: pics_main
source: "images/pics_main.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: text_main
source: "images/text_main.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: logo_copy
source: "images/logo_copy.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: shape_2
source: "images/shape_2.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
Image {
id: logo_main
source: "images/logo_main.png"
x: 0
y: 0
width: 600
height: 900
opacity: 1
}
MouseArea {
id: mouse_area1
x: 52
y: 302
width: 496
height: 129
opacity: 0
hoverEnabled: false
anchors.fill: parent
onClicked:
{
pageLoader.source = "SunglassesGui.qml"
}
}
MouseArea {
id: mouse_area2
x: 52
y: 431
width: 496
height: 129
opacity: 0
anchors.fill: parent
onClicked: pageLoader.source = "MakeupGui.qml"
}
MouseArea {
id: mouse_area3
x: 52
y: 560
width: 496
height: 130
opacity: 0
hoverEnabled: true
anchors.fill: parent
onClicked:
{
pageLoader.source = "ClothesGui.qml"
}
}
}