-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
ui_ftp_configuration.py
78 lines (71 loc) · 3.93 KB
/
ui_ftp_configuration.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
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui_ftp_configuration.ui'
#
# Created by: PyQt4 UI code generator 4.11.4
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtWidgets.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtWidgets.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtWidgets.QApplication.translate(context, text, disambig)
class Ui_FtpConfiguration(object):
def setupUi(self, FtpConfiguration):
FtpConfiguration.setObjectName(_fromUtf8("FtpConfiguration"))
FtpConfiguration.resize(349, 198)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/plugins/qgis2web/icons/qgis2web.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
FtpConfiguration.setWindowIcon(icon)
self.gridLayout = QtWidgets.QGridLayout(FtpConfiguration)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.hostLineEdit = QtWidgets.QLineEdit(FtpConfiguration)
self.hostLineEdit.setObjectName(_fromUtf8("hostLineEdit"))
self.gridLayout.addWidget(self.hostLineEdit, 0, 1, 1, 1)
self.usernameLineEdit = QtWidgets.QLineEdit(FtpConfiguration)
self.usernameLineEdit.setObjectName(_fromUtf8("usernameLineEdit"))
self.gridLayout.addWidget(self.usernameLineEdit, 3, 1, 1, 1)
self.label_2 = QtWidgets.QLabel(FtpConfiguration)
self.label_2.setObjectName(_fromUtf8("label_2"))
self.gridLayout.addWidget(self.label_2, 3, 0, 1, 1)
self.label = QtWidgets.QLabel(FtpConfiguration)
self.label.setObjectName(_fromUtf8("label"))
self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
self.label_3 = QtWidgets.QLabel(FtpConfiguration)
self.label_3.setObjectName(_fromUtf8("label_3"))
self.gridLayout.addWidget(self.label_3, 1, 0, 1, 1)
self.portSpinBox = QtWidgets.QSpinBox(FtpConfiguration)
self.portSpinBox.setMaximum(65535)
self.portSpinBox.setProperty("value", 21)
self.portSpinBox.setObjectName(_fromUtf8("portSpinBox"))
self.gridLayout.addWidget(self.portSpinBox, 1, 1, 1, 1)
self.buttonBox = QtWidgets.QDialogButtonBox(FtpConfiguration)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
self.gridLayout.addWidget(self.buttonBox, 4, 0, 1, 2)
self.folderLineEdit = QtWidgets.QLineEdit(FtpConfiguration)
self.folderLineEdit.setObjectName(_fromUtf8("folderLineEdit"))
self.gridLayout.addWidget(self.folderLineEdit, 2, 1, 1, 1)
self.label_4 = QtWidgets.QLabel(FtpConfiguration)
self.label_4.setObjectName(_fromUtf8("label_4"))
self.gridLayout.addWidget(self.label_4, 2, 0, 1, 1)
self.retranslateUi(FtpConfiguration)
self.buttonBox.accepted.connect(FtpConfiguration.accept)
self.buttonBox.rejected.connect(FtpConfiguration.reject)
QtCore.QMetaObject.connectSlotsByName(FtpConfiguration)
FtpConfiguration.setTabOrder(self.hostLineEdit, self.portSpinBox)
FtpConfiguration.setTabOrder(self.portSpinBox, self.folderLineEdit)
FtpConfiguration.setTabOrder(self.folderLineEdit, self.usernameLineEdit)
def retranslateUi(self, FtpConfiguration):
FtpConfiguration.setWindowTitle(_translate("FtpConfiguration", "FTP Settings", None))
self.label_2.setText(_translate("FtpConfiguration", "Username", None))
self.label.setText(_translate("FtpConfiguration", "Host", None))
self.label_3.setText(_translate("FtpConfiguration", "Port", None))
self.label_4.setText(_translate("FtpConfiguration", "Remote folder", None))