|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Form implementation generated from reading ui file 'arduinoconnectiontest.ui' |
| 4 | +# |
| 5 | +# Created by: PyQt5 UI code generator 5.7 |
| 6 | +# |
| 7 | +# WARNING! All changes made in this file will be lost! |
| 8 | + |
| 9 | +from PyQt5 import QtCore, QtGui, QtWidgets |
| 10 | + |
| 11 | +class Ui_ArduinoConnectionTest(object): |
| 12 | + def setupUi(self, ArduinoConnectionTest): |
| 13 | + ArduinoConnectionTest.setObjectName("ArduinoConnectionTest") |
| 14 | + ArduinoConnectionTest.resize(400, 300) |
| 15 | + self.verticalLayout = QtWidgets.QVBoxLayout(ArduinoConnectionTest) |
| 16 | + self.verticalLayout.setSizeConstraint(QtWidgets.QLayout.SetMinimumSize) |
| 17 | + self.verticalLayout.setObjectName("verticalLayout") |
| 18 | + self.loadingPanel = QtWidgets.QLabel(ArduinoConnectionTest) |
| 19 | + self.loadingPanel.setText("") |
| 20 | + self.loadingPanel.setAlignment(QtCore.Qt.AlignCenter) |
| 21 | + self.loadingPanel.setObjectName("loadingPanel") |
| 22 | + self.verticalLayout.addWidget(self.loadingPanel) |
| 23 | + self.label_2 = QtWidgets.QLabel(ArduinoConnectionTest) |
| 24 | + self.label_2.setMaximumSize(QtCore.QSize(2400, 25)) |
| 25 | + self.label_2.setTextFormat(QtCore.Qt.RichText) |
| 26 | + self.label_2.setAlignment(QtCore.Qt.AlignCenter) |
| 27 | + self.label_2.setObjectName("label_2") |
| 28 | + self.verticalLayout.addWidget(self.label_2) |
| 29 | + self.buttonBox = QtWidgets.QDialogButtonBox(ArduinoConnectionTest) |
| 30 | + self.buttonBox.setLayoutDirection(QtCore.Qt.LeftToRight) |
| 31 | + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) |
| 32 | + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel) |
| 33 | + self.buttonBox.setCenterButtons(True) |
| 34 | + self.buttonBox.setObjectName("buttonBox") |
| 35 | + self.verticalLayout.addWidget(self.buttonBox) |
| 36 | + |
| 37 | + self.retranslateUi(ArduinoConnectionTest) |
| 38 | + self.buttonBox.accepted.connect(ArduinoConnectionTest.accept) |
| 39 | + self.buttonBox.rejected.connect(ArduinoConnectionTest.reject) |
| 40 | + QtCore.QMetaObject.connectSlotsByName(ArduinoConnectionTest) |
| 41 | + |
| 42 | + def retranslateUi(self, ArduinoConnectionTest): |
| 43 | + _translate = QtCore.QCoreApplication.translate |
| 44 | + ArduinoConnectionTest.setWindowTitle(_translate("ArduinoConnectionTest", "Dialog")) |
| 45 | + self.label_2.setText(_translate("ArduinoConnectionTest", "<b>Checking connection...</b>")) |
| 46 | + |
0 commit comments