# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'resources/_ui/guidelinewidget.ui' # # Created by: PyQt5 UI code generator 5.12.3 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(431, 799) self.gridLayout_2 = QtWidgets.QGridLayout(Form) self.gridLayout_2.setContentsMargins(3, 3, 3, 3) self.gridLayout_2.setSpacing(3) self.gridLayout_2.setObjectName("gridLayout_2") self.mode_comboBox = QtWidgets.QComboBox(Form) self.mode_comboBox.setObjectName("mode_comboBox") self.mode_comboBox.addItem("") self.mode_comboBox.addItem("") self.gridLayout_2.addWidget(self.mode_comboBox, 2, 0, 1, 2) self.graph_comboBox = QtWidgets.QComboBox(Form) self.graph_comboBox.setObjectName("graph_comboBox") self.gridLayout_2.addWidget(self.graph_comboBox, 0, 0, 1, 2) self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.diagonal_widget = QtWidgets.QWidget(Form) self.diagonal_widget.setObjectName("diagonal_widget") self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.diagonal_widget) self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0) self.horizontalLayout_4.setObjectName("horizontalLayout_4") self.horizontalLayout_2.addWidget(self.diagonal_widget) self.vh_widget = QtWidgets.QWidget(Form) self.vh_widget.setObjectName("vh_widget") self.horizontalLayout = QtWidgets.QHBoxLayout(self.vh_widget) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(self.vh_widget) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.vh_pos_lineEdit = QtWidgets.QLineEdit(self.vh_widget) self.vh_pos_lineEdit.setObjectName("vh_pos_lineEdit") self.horizontalLayout.addWidget(self.vh_pos_lineEdit) self.horizontalLayout_2.addWidget(self.vh_widget) self.drag_checkBox = QtWidgets.QCheckBox(Form) self.drag_checkBox.setChecked(True) self.drag_checkBox.setObjectName("drag_checkBox") self.horizontalLayout_2.addWidget(self.drag_checkBox) self.gridLayout_2.addLayout(self.horizontalLayout_2, 3, 0, 1, 2) self.color_comboBox = ColorListEditor(Form) self.color_comboBox.setObjectName("color_comboBox") self.gridLayout_2.addWidget(self.color_comboBox, 6, 1, 1, 1) self.pushButton = QtWidgets.QPushButton(Form) self.pushButton.setObjectName("pushButton") self.gridLayout_2.addWidget(self.pushButton, 7, 0, 1, 2) self.label_6 = QtWidgets.QLabel(Form) self.label_6.setObjectName("label_6") self.gridLayout_2.addWidget(self.label_6, 5, 0, 1, 1) self.comment_lineEdit = QtWidgets.QLineEdit(Form) self.comment_lineEdit.setObjectName("comment_lineEdit") self.gridLayout_2.addWidget(self.comment_lineEdit, 5, 1, 1, 1) self.label_2 = QtWidgets.QLabel(Form) self.label_2.setObjectName("label_2") self.gridLayout_2.addWidget(self.label_2, 6, 0, 1, 1) self.tableWidget = QtWidgets.QTableWidget(Form) self.tableWidget.setSelectionMode(QtWidgets.QAbstractItemView.SingleSelection) self.tableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) self.tableWidget.setColumnCount(2) self.tableWidget.setObjectName("tableWidget") self.tableWidget.setRowCount(0) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(0, item) item = QtWidgets.QTableWidgetItem() self.tableWidget.setHorizontalHeaderItem(1, item) self.tableWidget.horizontalHeader().setVisible(True) self.tableWidget.horizontalHeader().setStretchLastSection(True) self.gridLayout_2.addWidget(self.tableWidget, 8, 0, 1, 2) self.line = QtWidgets.QFrame(Form) self.line.setFrameShape(QtWidgets.QFrame.HLine) self.line.setFrameShadow(QtWidgets.QFrame.Sunken) self.line.setObjectName("line") self.gridLayout_2.addWidget(self.line, 1, 0, 1, 2) self.line_2 = QtWidgets.QFrame(Form) self.line_2.setFrameShape(QtWidgets.QFrame.HLine) self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken) self.line_2.setObjectName("line_2") self.gridLayout_2.addWidget(self.line_2, 4, 0, 1, 2) self.label.setBuddy(self.vh_pos_lineEdit) self.label_6.setBuddy(self.comment_lineEdit) self.label_2.setBuddy(self.color_comboBox) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) Form.setTabOrder(self.graph_comboBox, self.mode_comboBox) Form.setTabOrder(self.mode_comboBox, self.vh_pos_lineEdit) Form.setTabOrder(self.vh_pos_lineEdit, self.drag_checkBox) Form.setTabOrder(self.drag_checkBox, self.comment_lineEdit) Form.setTabOrder(self.comment_lineEdit, self.color_comboBox) Form.setTabOrder(self.color_comboBox, self.pushButton) Form.setTabOrder(self.pushButton, self.tableWidget) def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.mode_comboBox.setItemText(0, _translate("Form", "Vertical")) self.mode_comboBox.setItemText(1, _translate("Form", "Horizontal")) self.label.setText(_translate("Form", "Position")) self.vh_pos_lineEdit.setText(_translate("Form", "0")) self.drag_checkBox.setText(_translate("Form", "Drag enabled")) self.pushButton.setText(_translate("Form", "Create line")) self.label_6.setText(_translate("Form", "Comment")) self.label_2.setText(_translate("Form", "Color")) item = self.tableWidget.horizontalHeaderItem(0) item.setText(_translate("Form", "Pos.")) item = self.tableWidget.horizontalHeaderItem(1) item.setText(_translate("Form", "Comment")) from ..lib.delegates import ColorListEditor