cambionome
This commit is contained in:
74
SPEx/spex/userInterface/compiledUI/advopt.py
Normal file
74
SPEx/spex/userInterface/compiledUI/advopt.py
Normal file
@@ -0,0 +1,74 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Form implementation generated from reading ui file 'advopt.ui'
|
||||
#
|
||||
# Created by: PyQt5 UI code generator 5.12.1
|
||||
#
|
||||
# WARNING! All changes made in this file will be lost!
|
||||
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
|
||||
|
||||
class Ui_editconf(object):
|
||||
def setupUi(self, editconf):
|
||||
editconf.setObjectName("editconf")
|
||||
editconf.resize(600, 500)
|
||||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum)
|
||||
sizePolicy.setHorizontalStretch(0)
|
||||
sizePolicy.setVerticalStretch(0)
|
||||
sizePolicy.setHeightForWidth(editconf.sizePolicy().hasHeightForWidth())
|
||||
editconf.setSizePolicy(sizePolicy)
|
||||
editconf.setMinimumSize(QtCore.QSize(600, 500))
|
||||
icon = QtGui.QIcon()
|
||||
icon.addPixmap(QtGui.QPixmap(":/ico/icons/icons8-smartphone-ram-100.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||
editconf.setWindowIcon(icon)
|
||||
self.verticalLayout = QtWidgets.QVBoxLayout(editconf)
|
||||
self.verticalLayout.setObjectName("verticalLayout")
|
||||
self.label = QtWidgets.QLabel(editconf)
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(12)
|
||||
self.label.setFont(font)
|
||||
self.label.setTextFormat(QtCore.Qt.PlainText)
|
||||
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
||||
self.label.setWordWrap(True)
|
||||
self.label.setTextInteractionFlags(QtCore.Qt.NoTextInteraction)
|
||||
self.label.setObjectName("label")
|
||||
self.verticalLayout.addWidget(self.label)
|
||||
self.label_2 = QtWidgets.QLabel(editconf)
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(10)
|
||||
self.label_2.setFont(font)
|
||||
self.label_2.setAlignment(QtCore.Qt.AlignCenter)
|
||||
self.label_2.setObjectName("label_2")
|
||||
self.verticalLayout.addWidget(self.label_2)
|
||||
self.txt_confFile = QtWidgets.QPlainTextEdit(editconf)
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(11)
|
||||
self.txt_confFile.setFont(font)
|
||||
self.txt_confFile.setObjectName("txt_confFile")
|
||||
self.verticalLayout.addWidget(self.txt_confFile)
|
||||
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
||||
self.horizontalLayout.setObjectName("horizontalLayout")
|
||||
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||||
self.horizontalLayout.addItem(spacerItem)
|
||||
self.btn_cancel = QtWidgets.QPushButton(editconf)
|
||||
self.btn_cancel.setObjectName("btn_cancel")
|
||||
self.horizontalLayout.addWidget(self.btn_cancel)
|
||||
self.btn_ok = QtWidgets.QPushButton(editconf)
|
||||
self.btn_ok.setObjectName("btn_ok")
|
||||
self.horizontalLayout.addWidget(self.btn_ok)
|
||||
self.verticalLayout.addLayout(self.horizontalLayout)
|
||||
|
||||
self.retranslateUi(editconf)
|
||||
QtCore.QMetaObject.connectSlotsByName(editconf)
|
||||
|
||||
def retranslateUi(self, editconf):
|
||||
_translate = QtCore.QCoreApplication.translate
|
||||
editconf.setWindowTitle(_translate("editconf", "Opzioni Avanzate"))
|
||||
self.label.setText(_translate("editconf", "ATTENZIONE!! Quello che scrivi qui potrebbe rompere tutto!"))
|
||||
self.label_2.setText(_translate("editconf", "Da grandi poteri derivano grandi responsabilita\'"))
|
||||
self.btn_cancel.setText(_translate("editconf", "Cancel"))
|
||||
self.btn_ok.setText(_translate("editconf", "OK"))
|
||||
|
||||
|
||||
import resources_rc
|
||||
Reference in New Issue
Block a user