-
Notifications
You must be signed in to change notification settings - Fork 12
/
Ui_qgsnewhttpconnectionbase.py
65 lines (58 loc) · 3.43 KB
/
Ui_qgsnewhttpconnectionbase.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'qgsnewhttpconnectionbase.ui'
#
# Created by: PyQt5 UI code generator 5.15.0
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_QgsNewHttpConnectionBase(object):
def setupUi(self, QgsNewHttpConnectionBase):
QgsNewHttpConnectionBase.setObjectName("QgsNewHttpConnectionBase")
QgsNewHttpConnectionBase.resize(569, 147)
QgsNewHttpConnectionBase.setSizeGripEnabled(True)
QgsNewHttpConnectionBase.setModal(True)
self.gridlayout = QtWidgets.QGridLayout(QgsNewHttpConnectionBase)
self.gridlayout.setContentsMargins(11, 11, 11, 11)
self.gridlayout.setSpacing(6)
self.gridlayout.setObjectName("gridlayout")
self.GroupBox1 = QtWidgets.QGroupBox(QgsNewHttpConnectionBase)
self.GroupBox1.setObjectName("GroupBox1")
self.gridlayout1 = QtWidgets.QGridLayout(self.GroupBox1)
self.gridlayout1.setContentsMargins(11, 11, 11, 11)
self.gridlayout1.setSpacing(6)
self.gridlayout1.setObjectName("gridlayout1")
self.TextLabel1_2 = QtWidgets.QLabel(self.GroupBox1)
self.TextLabel1_2.setObjectName("TextLabel1_2")
self.gridlayout1.addWidget(self.TextLabel1_2, 0, 0, 1, 1)
self.txtName = QtWidgets.QLineEdit(self.GroupBox1)
self.txtName.setMinimumSize(QtCore.QSize(0, 0))
self.txtName.setFrame(True)
self.txtName.setObjectName("txtName")
self.gridlayout1.addWidget(self.txtName, 0, 1, 1, 2)
self.TextLabel1 = QtWidgets.QLabel(self.GroupBox1)
self.TextLabel1.setObjectName("TextLabel1")
self.gridlayout1.addWidget(self.TextLabel1, 1, 0, 1, 1)
self.txtUrl = QtWidgets.QLineEdit(self.GroupBox1)
self.txtUrl.setObjectName("txtUrl")
self.gridlayout1.addWidget(self.txtUrl, 1, 1, 1, 2)
self.gridlayout.addWidget(self.GroupBox1, 0, 0, 1, 1)
self.buttonBox = QtWidgets.QDialogButtonBox(QgsNewHttpConnectionBase)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.gridlayout.addWidget(self.buttonBox, 1, 0, 1, 1)
self.TextLabel1_2.setBuddy(self.txtName)
self.TextLabel1.setBuddy(self.txtUrl)
self.retranslateUi(QgsNewHttpConnectionBase)
self.buttonBox.accepted.connect(QgsNewHttpConnectionBase.accept)
self.buttonBox.rejected.connect(QgsNewHttpConnectionBase.reject)
QtCore.QMetaObject.connectSlotsByName(QgsNewHttpConnectionBase)
QgsNewHttpConnectionBase.setTabOrder(self.txtName, self.txtUrl)
def retranslateUi(self, QgsNewHttpConnectionBase):
_translate = QtCore.QCoreApplication.translate
QgsNewHttpConnectionBase.setWindowTitle(_translate("QgsNewHttpConnectionBase", "Create a new WPS connection"))
self.GroupBox1.setTitle(_translate("QgsNewHttpConnectionBase", "Connection details"))
self.TextLabel1_2.setText(_translate("QgsNewHttpConnectionBase", "Name"))
self.txtName.setToolTip(_translate("QgsNewHttpConnectionBase", "Name of the new connection"))
self.TextLabel1.setText(_translate("QgsNewHttpConnectionBase", "URL"))
self.txtUrl.setToolTip(_translate("QgsNewHttpConnectionBase", "HTTP address of the Web Map Server"))