61 lines
3.6 KiB
Python
61 lines
3.6 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'newsubscriptiondialog.ui'
|
||
|
#
|
||
|
# Created: Fri Oct 19 15:30:41 2012
|
||
|
# by: PyQt4 UI code generator 4.9.4
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
from PyQt4 import QtCore, QtGui
|
||
|
|
||
|
try:
|
||
|
_fromUtf8 = QtCore.QString.fromUtf8
|
||
|
except AttributeError:
|
||
|
_fromUtf8 = lambda s: s
|
||
|
|
||
|
class Ui_NewSubscriptionDialog(object):
|
||
|
def setupUi(self, NewSubscriptionDialog):
|
||
|
NewSubscriptionDialog.setObjectName(_fromUtf8("NewSubscriptionDialog"))
|
||
|
NewSubscriptionDialog.resize(368, 192)
|
||
|
self.formLayout = QtGui.QFormLayout(NewSubscriptionDialog)
|
||
|
self.formLayout.setFieldGrowthPolicy(QtGui.QFormLayout.AllNonFixedFieldsGrow)
|
||
|
self.formLayout.setObjectName(_fromUtf8("formLayout"))
|
||
|
self.label_2 = QtGui.QLabel(NewSubscriptionDialog)
|
||
|
self.label_2.setObjectName(_fromUtf8("label_2"))
|
||
|
self.formLayout.setWidget(0, QtGui.QFormLayout.SpanningRole, self.label_2)
|
||
|
self.newsubscriptionlabel = QtGui.QLineEdit(NewSubscriptionDialog)
|
||
|
self.newsubscriptionlabel.setObjectName(_fromUtf8("newsubscriptionlabel"))
|
||
|
self.formLayout.setWidget(2, QtGui.QFormLayout.SpanningRole, self.newsubscriptionlabel)
|
||
|
self.label = QtGui.QLabel(NewSubscriptionDialog)
|
||
|
self.label.setObjectName(_fromUtf8("label"))
|
||
|
self.formLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.label)
|
||
|
spacerItem = QtGui.QSpacerItem(302, 10, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
|
||
|
self.formLayout.setItem(4, QtGui.QFormLayout.FieldRole, spacerItem)
|
||
|
self.lineEditSubscriptionAddress = QtGui.QLineEdit(NewSubscriptionDialog)
|
||
|
self.lineEditSubscriptionAddress.setObjectName(_fromUtf8("lineEditSubscriptionAddress"))
|
||
|
self.formLayout.setWidget(5, QtGui.QFormLayout.SpanningRole, self.lineEditSubscriptionAddress)
|
||
|
self.buttonBox = QtGui.QDialogButtonBox(NewSubscriptionDialog)
|
||
|
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
|
||
|
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
|
||
|
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
|
||
|
self.formLayout.setWidget(8, QtGui.QFormLayout.FieldRole, self.buttonBox)
|
||
|
spacerItem1 = QtGui.QSpacerItem(20, 10, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
|
||
|
self.formLayout.setItem(7, QtGui.QFormLayout.FieldRole, spacerItem1)
|
||
|
self.labelSubscriptionAddressCheck = QtGui.QLabel(NewSubscriptionDialog)
|
||
|
self.labelSubscriptionAddressCheck.setText(_fromUtf8(""))
|
||
|
self.labelSubscriptionAddressCheck.setWordWrap(True)
|
||
|
self.labelSubscriptionAddressCheck.setObjectName(_fromUtf8("labelSubscriptionAddressCheck"))
|
||
|
self.formLayout.setWidget(6, QtGui.QFormLayout.SpanningRole, self.labelSubscriptionAddressCheck)
|
||
|
|
||
|
self.retranslateUi(NewSubscriptionDialog)
|
||
|
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), NewSubscriptionDialog.accept)
|
||
|
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), NewSubscriptionDialog.reject)
|
||
|
QtCore.QMetaObject.connectSlotsByName(NewSubscriptionDialog)
|
||
|
|
||
|
def retranslateUi(self, NewSubscriptionDialog):
|
||
|
NewSubscriptionDialog.setWindowTitle(QtGui.QApplication.translate("NewSubscriptionDialog", "Add new entry", None, QtGui.QApplication.UnicodeUTF8))
|
||
|
self.label_2.setText(QtGui.QApplication.translate("NewSubscriptionDialog", "Label", None, QtGui.QApplication.UnicodeUTF8))
|
||
|
self.label.setText(QtGui.QApplication.translate("NewSubscriptionDialog", "Address", None, QtGui.QApplication.UnicodeUTF8))
|
||
|
|