blob: 3d78b95774ed2021775219ad6f9599b8c1e91773 (
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
/*
* Copyright (c) 2019 TOYOTA MOTOR CORPORATION
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import QtQuick 2.6
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.0
import TouchLogPlayImpl 1.0
import '..'
ColumnLayout {
property int blankheight : 50
// property bool playing: false
anchors.left: parent.left
anchors.right: parent.right
Item { height:blankheight }
// Title
RowLayout{
anchors.left: parent.left
anchors.right: parent.right
Label { text: 'Touch Log files: ' ; color: '#59FF7F'}
}
Item { height:blankheight/3 }
Image { source: '../images/HMI_Settings_DividingLine.svg' }
Item { height:blankheight/3 }
// List view
ListView {
id: touchloglist
property int impheight: 0
property int listitemheight : 50
property int listmaxheight : 600
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: 20
implicitHeight: 0
clip: true
model:touchlogplayimpl
delegate: MouseArea {
height: touchloglist.listitemheight
width: ListView.view.width
Label {
anchors.right: parent.right
anchors.bottom: parent.bottom
visible: model.children > 0 ? true : false
text: '' + model.children
color: 'gray'
font.pixelSize: 30
}
Image {
source: '../images/HMI_Settings_DividingLine.svg'
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
visible: model.index > 0
}
Image {
visible: touchloglist.currentIndex === model.index ? true : false
anchors.fill: parent
source:'./images/HMI_Settings_Button_Cancel.svg'
}
Label {
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.margins: 5
text: model.folder ? model.name : ' > ' + model.name
color: model.folder ? 'gray' : (touchloglist.currentIndex === model.index ? 'orange' : 'white')
font.pixelSize: 30
}
onClicked: {
if(!model.folder) {
touchloglist.currentIndex = model.index
}
}
}
onCountChanged: {
impheight = (count * listitemheight) > listmaxheight ? listmaxheight : (count * listitemheight)
implicitHeight = impheight
}
Component.onCompleted: {
currentIndex = -1
}
onCurrentIndexChanged: {
model.setLogFileIndex(currentIndex)
}
}
Item { height:blankheight/3 }
Image { source: '../images/HMI_Settings_DividingLine.svg' }
Item { height:blankheight/3 }
Item { height:blankheight/3 }
RowLayout {
anchors.left: parent.left
anchors.right: parent.right
Button {
anchors.left: parent.left
anchors.leftMargin: 100
text: 'Refresh'
highlighted: true
onClicked: {
touchloglist.currentIndex = -1
touchlogplayimpl.refresh()
}
}
Button {
id:playstopbutton
anchors.right: parent.right
anchors.rightMargin: 100
text: touchlogplayimpl.propTouchPlayFlag ? 'Stop' : 'Play'
highlighted: true
onClicked: {
console.log("status:", touchlogplayimpl.propTouchPlayFlag);
if(touchlogplayimpl.propTouchPlayFlag) {
touchlogplayimpl.touchPlay(false)
}
else {
touchlogplayimpl.setTouchProperty(touchloglist.currentIndex)
touchlogplayimpl.touchPlay(true)
}
}
}
}
Timer {
id:countDown
repeat: false
triggeredOnStart: true
onTriggered: {
console.log("countDown onTriggered:");
playstopbutton.text = 'Play'
countDown.stop();
}
}
TouchLogPlayImpl {
id: touchlogplayimpl
onPropTouchPlayFlagChanged: {
console.log("onPropTouchPlayFlagChanged:", touchlogplayimpl.propTouchPlayFlag);
if(touchlogplayimpl.propTouchPlayFlag) {
playstopbutton.text = 'Stop'
console.log("Stop:");
} else {
//playstopbutton.text = 'Play'
console.log("countDown.start():");
countDown.start();
console.log("countDown.started():");
}
}
}
onVisibleChanged: {
if(visible) {
touchlogplayimpl.refresh()
}
else {
resetPosition()
}
}
function adjustPosition(offset) {
touchloglist.implicitHeight -= offset
touchloglist.positionViewAtIndex(touchloglist.currentIndex, ListView.Beginning)
}
function resetPosition() {
touchloglist.implicitHeight = touchloglist.impheight
}
}
|