manuskript/manuskript/ui/sldImportance_ui.py

37 lines
1.3 KiB
Python
Raw Normal View History

2015-05-28 13:32:09 +12:00
# -*- coding: utf-8 -*-
2016-02-06 20:38:33 +13:00
# Form implementation generated from reading ui file 'manuskript/ui/sldImportance_ui.ui'
2015-05-28 13:32:09 +12:00
#
2015-06-04 04:40:19 +12:00
# Created by: PyQt5 UI code generator 5.4.1
2015-05-28 13:32:09 +12:00
#
# WARNING! All changes made in this file will be lost!
2015-06-04 04:40:19 +12:00
from PyQt5 import QtCore, QtGui, QtWidgets
2015-05-28 13:32:09 +12:00
class Ui_sldImportance(object):
def setupUi(self, sldImportance):
2015-06-04 04:40:19 +12:00
sldImportance.setObjectName("sldImportance")
2015-05-28 13:32:09 +12:00
sldImportance.resize(452, 354)
2015-06-04 04:40:19 +12:00
self.horizontalLayout = QtWidgets.QHBoxLayout(sldImportance)
self.horizontalLayout.setObjectName("horizontalLayout")
self.sld = QtWidgets.QSlider(sldImportance)
2015-05-28 13:32:09 +12:00
self.sld.setMinimum(0)
self.sld.setMaximum(2)
self.sld.setPageStep(1)
self.sld.setProperty("value", 0)
self.sld.setOrientation(QtCore.Qt.Horizontal)
2015-06-04 04:40:19 +12:00
self.sld.setObjectName("sld")
2015-05-28 13:32:09 +12:00
self.horizontalLayout.addWidget(self.sld)
2015-06-04 04:40:19 +12:00
self.lbl = QtWidgets.QLabel(sldImportance)
self.lbl.setObjectName("lbl")
2015-05-28 13:32:09 +12:00
self.horizontalLayout.addWidget(self.lbl)
self.retranslateUi(sldImportance)
QtCore.QMetaObject.connectSlotsByName(sldImportance)
def retranslateUi(self, sldImportance):
2015-06-04 04:40:19 +12:00
_translate = QtCore.QCoreApplication.translate
sldImportance.setWindowTitle(_translate("sldImportance", "Form"))
self.lbl.setText(_translate("sldImportance", "TextLabel"))
2015-05-28 13:32:09 +12:00