forked from PyQt5/PyQt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testTreeWidget.py
40 lines (33 loc) · 1.06 KB
/
testTreeWidget.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
#!/usr/bin/env python
# encoding: utf-8
"""
Created on 2017年4月20日
@author: weike32
@site: https://pyqt.site , https://github.com/weike32
@email: [email protected]
@file: CopyContent
@description:
"""
import sys
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QDialog, QApplication
from Lib.testTree import Ui_Form # @UnresolvedImport
class graphAnalysis(QDialog, Ui_Form):
def __init__(self):
super(graphAnalysis, self).__init__()
self.setupUi(self)
# 点击父节点
self.treeWidget.itemChanged.connect(self.handleChanged)
def handleChanged(self, item, column):
count = item.childCount()
if item.checkState(column) == Qt.Checked:
for index in range(count):
item.child(index).setCheckState(0, Qt.Checked)
if item.checkState(column) == Qt.Unchecked:
for index in range(count):
item.child(index).setCheckState(0, Qt.Unchecked)
if __name__ == "__main__":
app = QApplication(sys.argv)
w = graphAnalysis()
w.show()
sys.exit(app.exec_())