-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.qml
More file actions
178 lines (157 loc) · 3.76 KB
/
Copy pathplayer.qml
File metadata and controls
178 lines (157 loc) · 3.76 KB
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
171
172
173
174
175
176
177
178
import QtQuick 6.2
import QtQuick.Window 6.2
import QtQuick.Controls 6.2
ApplicationWindow {
visible: true
width: 600
height: 920
Rectangle {
id: rectangle
width: 600
height: 920
color: "#2f2f2f"
}
ProgressBar {
id: progressBar
objectName: "progressBar"
x: 0
y: 609
width: 600
height: 44
layer.format: ShaderEffectSource.RGB
value: 0
}
Image {
id: image
objectName: "art"
visible: true
x: 22
y: 26
width: 556
height: 555
source: ""
fillMode: Image.PreserveAspectFit
}
Button {
id: button1
objectName: "playpauseButton"
x: 128
y: 769
width: 344
height: 104
text: qsTr("Play")
states: [
State {
name: "clicked"
when: button1.checked
}
]
}
Button {
id: button2
objectName: "skipButton"
x: 478
y: 769
width: 100
height: 56
text: qsTr(">>>")
}
Text {
id: text1
objectName: "bottomText"
x: 112
y: 886
width: 449
height: 26
color: "#fffdfd"
text: qsTr("This is where a transcript of the recorded asr will be shown")
font.pixelSize: 12
verticalAlignment: Text.AlignVCenter
}
Switch {
id: switch1
objectName: "asrSwitch"
x: 8
y: 886
width: 98
height: 26
text: qsTr("ASR")
checked: false
}
BusyIndicator {
id: busyIndicator
objectName: "busyIndicator"
visible: true
x: 559
y: 879
width: 33
height: 33
}
Button {
id: button3
objectName: "likeButton"
x: 525
y: 831
width: 52
height: 42
text: qsTr("♡")
}
Button {
id: buttonloop
objectName: "loopButton"
x: 478
y: 831
width: 52
height: 42
text: qsTr("↻")
}
Button {
id: button4
objectName: "prevButton"
x: 22
y: 769
width: 100
height: 56
text: qsTr("<<<")
}
Button {
id: button5
objectName: "searchButton"
x: 22
y: 831
width: 100
height: 42
text: qsTr("Search")
}
Text {
id: text2
objectName: "track"
x: 30
y: 659
width: 531
height: 54
color: "#ffffff"
text: qsTr("Track / Album")
font.pixelSize: 24
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.styleName: "Bold"
font.family: "Arial"
font.bold: true
}
Text {
id: text3
objectName: "artist"
x: 30
y: 728
width: 531
height: 35
color: "#ffffff"
text: qsTr("Artist")
font.pixelSize: 18
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.styleName: "Italic"
font.family: "Arial"
}
}