|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/ConfigurationPage/MouseClickHandlerRopePage.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.3.1 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_MouseClickHandlerRopePage(object): |
|
13 def setupUi(self, MouseClickHandlerRopePage): |
|
14 MouseClickHandlerRopePage.setObjectName("MouseClickHandlerRopePage") |
|
15 MouseClickHandlerRopePage.resize(400, 300) |
|
16 self.verticalLayout = QtWidgets.QVBoxLayout(MouseClickHandlerRopePage) |
|
17 self.verticalLayout.setObjectName("verticalLayout") |
|
18 self.headerLabel = QtWidgets.QLabel(MouseClickHandlerRopePage) |
|
19 self.headerLabel.setObjectName("headerLabel") |
|
20 self.verticalLayout.addWidget(self.headerLabel) |
|
21 self.line15 = QtWidgets.QFrame(MouseClickHandlerRopePage) |
|
22 self.line15.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
23 self.line15.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) |
|
24 self.line15.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
25 self.line15.setObjectName("line15") |
|
26 self.verticalLayout.addWidget(self.line15) |
|
27 self.ropeClickHandlerCheckBox = QtWidgets.QCheckBox(MouseClickHandlerRopePage) |
|
28 self.ropeClickHandlerCheckBox.setObjectName("ropeClickHandlerCheckBox") |
|
29 self.verticalLayout.addWidget(self.ropeClickHandlerCheckBox) |
|
30 self.groupBox = QtWidgets.QGroupBox(MouseClickHandlerRopePage) |
|
31 self.groupBox.setObjectName("groupBox") |
|
32 self.horizontalLayout = QtWidgets.QHBoxLayout(self.groupBox) |
|
33 self.horizontalLayout.setObjectName("horizontalLayout") |
|
34 self.label = QtWidgets.QLabel(self.groupBox) |
|
35 self.label.setObjectName("label") |
|
36 self.horizontalLayout.addWidget(self.label) |
|
37 self.gotoClickEdit = QtWidgets.QLineEdit(self.groupBox) |
|
38 self.gotoClickEdit.setFocusPolicy(QtCore.Qt.FocusPolicy.NoFocus) |
|
39 self.gotoClickEdit.setReadOnly(True) |
|
40 self.gotoClickEdit.setObjectName("gotoClickEdit") |
|
41 self.horizontalLayout.addWidget(self.gotoClickEdit) |
|
42 self.changeGotoButton = QtWidgets.QPushButton(self.groupBox) |
|
43 self.changeGotoButton.setObjectName("changeGotoButton") |
|
44 self.horizontalLayout.addWidget(self.changeGotoButton) |
|
45 self.verticalLayout.addWidget(self.groupBox) |
|
46 spacerItem = QtWidgets.QSpacerItem(20, 147, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
47 self.verticalLayout.addItem(spacerItem) |
|
48 |
|
49 self.retranslateUi(MouseClickHandlerRopePage) |
|
50 QtCore.QMetaObject.connectSlotsByName(MouseClickHandlerRopePage) |
|
51 |
|
52 def retranslateUi(self, MouseClickHandlerRopePage): |
|
53 _translate = QtCore.QCoreApplication.translate |
|
54 self.headerLabel.setText(_translate("MouseClickHandlerRopePage", "<b>Configure Rope Mouse Click Handler Support</b>")) |
|
55 self.ropeClickHandlerCheckBox.setToolTip(_translate("MouseClickHandlerRopePage", "Select, whether the rope mouse click handler support shall be enabled.")) |
|
56 self.ropeClickHandlerCheckBox.setText(_translate("MouseClickHandlerRopePage", "Enable Mouse Click Handler")) |
|
57 self.groupBox.setTitle(_translate("MouseClickHandlerRopePage", "Go To Definition")) |
|
58 self.label.setText(_translate("MouseClickHandlerRopePage", "Click Sequence:")) |
|
59 self.gotoClickEdit.setToolTip(_translate("MouseClickHandlerRopePage", "Shows the mouse click sequence")) |
|
60 self.changeGotoButton.setToolTip(_translate("MouseClickHandlerRopePage", "Press to open a dialog to configure the mouse click sequence")) |
|
61 self.changeGotoButton.setText(_translate("MouseClickHandlerRopePage", "Change...")) |
|
62 |
|
63 |
|
64 if __name__ == "__main__": |
|
65 import sys |
|
66 app = QtWidgets.QApplication(sys.argv) |
|
67 MouseClickHandlerRopePage = QtWidgets.QWidget() |
|
68 ui = Ui_MouseClickHandlerRopePage() |
|
69 ui.setupUi(MouseClickHandlerRopePage) |
|
70 MouseClickHandlerRopePage.show() |
|
71 sys.exit(app.exec()) |