-
Notifications
You must be signed in to change notification settings - Fork 5
/
EcuMultiZoneTreeWidgetItem.py
146 lines (121 loc) · 5.73 KB
/
EcuMultiZoneTreeWidgetItem.py
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
"""
EcuZoneTable.py
Copyright (C) 2024 - 2025 Marc Postema (mpostema09 -at- gmail.com)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Or, point your browser to http://www.gnu.org/copyleft/gpl.html
"""
from PySide6.QtCore import Qt, Slot
from PySide6.QtWidgets import QTreeWidgetItem, QTreeWidget
from EcuZoneLineEdit import EcuZoneLineEdit
from EcuZoneCheckBox import EcuZoneCheckBox
from EcuZoneComboBox import EcuZoneComboBox
from EcuZoneTreeWidgetItem import EcuZoneTreeWidgetItem
class EcuMultiZoneTreeWidgetItem(QTreeWidgetItem):
zone = ""
zoneDescription = ""
zoneObject = {}
integrity = True
def __init__(self, parent: QTreeWidget, row: int, zone: str, description: str, zoneObject: dict):
super(EcuMultiZoneTreeWidgetItem, self).__init__(parent, [zone.upper(), str("** " + description + " **")])
parent.insertTopLevelItem(row, self)
self.setToolTip(1, description)
self.zoneObject = zoneObject
self.zone = zone.upper()
self.zoneDescription = description
def addRootWidgetItem(self, tree: QTreeWidget, widget):
tree.setItemWidget(self, 2, widget)
self.__setupConnections(widget)
def addChildWidgetItem(self, tree: QTreeWidget, label, widget):
level = EcuZoneTreeWidgetItem(self, None, "", label)
level.setToolTip(1, label)
tree.setItemWidget(level, 2, widget)
self.__setupConnections(widget)
def __setupConnections(self, widget):
if isinstance(widget, EcuZoneLineEdit):
widget.textChanged.connect(self.textChanged)
elif isinstance(widget, EcuZoneCheckBox):
widget.stateChanged.connect(self.stateChanged)
elif isinstance(widget, EcuZoneComboBox):
widget.currentIndexChanged.connect(self.currentIndexChanged)
def getValuesAsCSV(self):
widget = self.treeWidget().itemWidget(self, 2)
value = "None"
# Check if Integrity is correct, then return Zone data
if self.integrity and isinstance(widget, EcuZoneLineEdit):
value = widget.getValuesAsCSV()
return [self.zone, value, self.zoneDescription]
def getZoneAndHex(self):
widget = self.treeWidget().itemWidget(self, 2)
value = "None"
# Check if Integrity is correct, then return Zone data
if self.integrity and isinstance(widget, EcuZoneLineEdit):
value = widget.getZoneAndHex()
return [self.zone, value]
def changeZoneOption(self, root, data: str, valueType: str):
# Make Bytes (2 chars) from input data
byteData = []
for i in range(0, len(data), 2):
byteData.append(data[i:i + 2])
# Set Root value of Multi Config zone
widget = root.treeWidget().itemWidget(root, 2)
widget.changeZoneOption(data, "")
# Set individual Sub items
for index in range(root.childCount()):
cellItem = root.child(index)
widget = cellItem.treeWidget().itemWidget(cellItem, 2)
if isinstance(widget, EcuZoneLineEdit):
self.integrity = widget.changeZoneOption(data, valueType) and self.integrity
elif isinstance(widget, EcuZoneCheckBox):
self.integrity = widget.changeZoneOption(data, valueType) and self.integrity
elif isinstance(widget, EcuZoneComboBox):
self.integrity = widget.changeZoneOption(data, valueType) and self.integrity
# Integrity wrong, disable the sub zones and coding
if not self.integrity:
for index in range(root.childCount()):
cellItem = root.child(index)
widget = cellItem.treeWidget().itemWidget(cellItem, 2)
widget.setStyleSheet("QComboBox{background-color: red;}");
widget.setEnabled(False)
def __update(self):
rootWidget = self.treeWidget().itemWidget(self, 2)
data = rootWidget.text()
byteData = []
for i in range(0, len(data), 2):
byteData.append(data[i:i + 2])
for index in range(self.childCount()):
cellItem = self.child(index)
widget = cellItem.treeWidget().itemWidget(cellItem, 2)
byteNr = widget.getCorrespondingByte()
# Do we need to expand
if len(byteData) < (byteNr + 1):
for i in range((byteNr - len(byteData) + 1)):
byteData.insert(len(byteData) + i, "00")
if isinstance(widget, EcuZoneLineEdit):
byteData[byteNr] = widget.update(byteData[byteNr])
elif isinstance(widget, EcuZoneCheckBox):
byteData[byteNr] = widget.update(byteData[byteNr])
elif isinstance(widget, EcuZoneComboBox):
byteData[byteNr] = widget.update(byteData[byteNr])
data = ""
for i in range(len(byteData)):
data += byteData[i]
rootWidget.updateText(str(data))
@Slot()
def currentIndexChanged(self, item: int):
self.__update()
@Slot()
def textChanged(self, item: str):
self.__update()
@Slot()
def stateChanged(self, item: int):
self.__update()