-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMusic_TV_Window.qml
47 lines (46 loc) · 918 Bytes
/
Music_TV_Window.qml
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
// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
import QtQuick 1.1
import "mirrorjs.js" as Handler
Rectangle {
property alias text: title.text
width: 340
height: 280
radius: 10
color:"#000"
visible: false
//property string text: "temp"
Rectangle{
x:20
height:20
width:300
color:"#000"
Text{
id: title
//text: text
font.pixelSize: 12
color:"#fff"
}
}
Rectangle{
x:320
height:20
width: 10
radius:20
color:"#000"
Text{
text:"x"
font.pixelSize: 12
color:"#fff"
}
MouseArea{
anchors.fill: parent
onClicked: Handler.click_icon(text)
}
}
Rectangle{
y:16
width:parent.width
height:2
color:"#fff"
}
}