forked from LabPy/lantz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui_initializing.py
105 lines (70 loc) · 2.57 KB
/
gui_initializing.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
# -*- coding: utf-8 -*-
import sys
import time
import random
from lantz.utils.qt import QtGui
from lantz import Driver
from lantz.ui.widgets import initialize_and_report
class FunGen3210(Driver):
"""This an fake driver that takes some random time to initialize.
"""
def initialize(self):
time.sleep(random.choice((2, 3, 4, 5)))
print('initialize {}'.format(self))
super().initialize()
def finalize(self):
print('finalize {}'.format(self))
super().finalize()
class InitializeWindow(QtGui.QWidget):
"""This windows receives the list of drivers to initialize
and their dependency.
"""
def __init__(self, drivers=None, dependencies=None, parent=None):
super(InitializeWindow, self).__init__(parent)
factory = QtGui.QItemEditorFactory()
QtGui.QItemEditorFactory.setDefaultFactory(factory)
self.drivers = drivers
self.dependencies = dependencies
self.createGUI()
def initialize(self):
self.thread = initialize_and_report(self.widget, self.drivers,
dependencies=self.dependencies,
concurrent=True)
def createGUI(self):
# Demonstrate the supported widgets.
# Uncomment to try others.
self.widget = self._createGUITable()
#self.widget = self._createGUILine()
#self.widget = self._createGUIText()
button = QtGui.QPushButton()
button.setText('Initialize')
button.setEnabled(True)
button.clicked.connect(self.initialize)
layout = QtGui.QVBoxLayout()
layout.addWidget(button)
layout.addWidget(self.widget)
self.setLayout(layout)
self.setWindowTitle("Driver initialization")
def _createGUIText(self):
text = QtGui.QTextEdit()
return text
def _createGUILine(self):
text = QtGui.QLineEdit()
return text
def _createGUITable(self):
table = QtGui.QTableWidget(0, 3)
table.setHorizontalHeaderLabels(["Name", "Class", "Status"])
table.verticalHeader().setVisible(False)
table.resize(250, 50)
table.resizeColumnToContents(0)
return table
qapp = QtGui.QApplication(sys.argv)
dependencies = {'slave': ('master', )}
drivers = [FunGen3210(name='master'),
FunGen3210(name='slave'),
FunGen3210(name='sync')]
window = InitializeWindow(drivers=drivers, dependencies=dependencies)
window.show()
if sys.platform.startswith('darwin'):
window.raise_()
sys.exit(qapp.exec_())