|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.0 |
|
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_SvnLoginDialog(object): |
|
13 def setupUi(self, SvnLoginDialog): |
|
14 SvnLoginDialog.setObjectName("SvnLoginDialog") |
|
15 SvnLoginDialog.resize(400, 145) |
|
16 SvnLoginDialog.setSizeGripEnabled(True) |
|
17 self.vboxlayout = QtWidgets.QVBoxLayout(SvnLoginDialog) |
|
18 self.vboxlayout.setObjectName("vboxlayout") |
|
19 self.gridlayout = QtWidgets.QGridLayout() |
|
20 self.gridlayout.setObjectName("gridlayout") |
|
21 self.saveCheckBox = QtWidgets.QCheckBox(parent=SvnLoginDialog) |
|
22 self.saveCheckBox.setObjectName("saveCheckBox") |
|
23 self.gridlayout.addWidget(self.saveCheckBox, 3, 0, 1, 2) |
|
24 self.passwordEdit = QtWidgets.QLineEdit(parent=SvnLoginDialog) |
|
25 self.passwordEdit.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password) |
|
26 self.passwordEdit.setObjectName("passwordEdit") |
|
27 self.gridlayout.addWidget(self.passwordEdit, 2, 1, 1, 1) |
|
28 self.label_2 = QtWidgets.QLabel(parent=SvnLoginDialog) |
|
29 self.label_2.setObjectName("label_2") |
|
30 self.gridlayout.addWidget(self.label_2, 2, 0, 1, 1) |
|
31 self.label = QtWidgets.QLabel(parent=SvnLoginDialog) |
|
32 self.label.setObjectName("label") |
|
33 self.gridlayout.addWidget(self.label, 1, 0, 1, 1) |
|
34 self.realmLabel = QtWidgets.QLabel(parent=SvnLoginDialog) |
|
35 self.realmLabel.setText("") |
|
36 self.realmLabel.setObjectName("realmLabel") |
|
37 self.gridlayout.addWidget(self.realmLabel, 0, 0, 1, 2) |
|
38 self.usernameEdit = QtWidgets.QLineEdit(parent=SvnLoginDialog) |
|
39 self.usernameEdit.setObjectName("usernameEdit") |
|
40 self.gridlayout.addWidget(self.usernameEdit, 1, 1, 1, 1) |
|
41 self.vboxlayout.addLayout(self.gridlayout) |
|
42 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnLoginDialog) |
|
43 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
44 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
45 self.buttonBox.setObjectName("buttonBox") |
|
46 self.vboxlayout.addWidget(self.buttonBox) |
|
47 |
|
48 self.retranslateUi(SvnLoginDialog) |
|
49 self.buttonBox.accepted.connect(SvnLoginDialog.accept) # type: ignore |
|
50 self.buttonBox.rejected.connect(SvnLoginDialog.reject) # type: ignore |
|
51 QtCore.QMetaObject.connectSlotsByName(SvnLoginDialog) |
|
52 SvnLoginDialog.setTabOrder(self.usernameEdit, self.passwordEdit) |
|
53 SvnLoginDialog.setTabOrder(self.passwordEdit, self.saveCheckBox) |
|
54 |
|
55 def retranslateUi(self, SvnLoginDialog): |
|
56 _translate = QtCore.QCoreApplication.translate |
|
57 SvnLoginDialog.setWindowTitle(_translate("SvnLoginDialog", "Subversion Login")) |
|
58 self.saveCheckBox.setToolTip(_translate("SvnLoginDialog", "Select, if the login data should be saved.")) |
|
59 self.saveCheckBox.setText(_translate("SvnLoginDialog", "Save login data")) |
|
60 self.passwordEdit.setToolTip(_translate("SvnLoginDialog", "Enter password")) |
|
61 self.label_2.setText(_translate("SvnLoginDialog", "Password:")) |
|
62 self.label.setText(_translate("SvnLoginDialog", "Username:")) |
|
63 self.usernameEdit.setToolTip(_translate("SvnLoginDialog", "Enter username")) |