# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'evDisplay.ui' # # Created: Fri Jul 5 11:06:01 2013 # by: PyQt4 UI code generator 4.7.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(400, 300) self.horizontalLayout = QtGui.QHBoxLayout(Dialog) self.horizontalLayout.setObjectName("horizontalLayout") self.verticalLayout = QtGui.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.prevEvent = QtGui.QPushButton(Dialog) self.prevEvent.setObjectName("prevEvent") self.verticalLayout.addWidget(self.prevEvent) self.horizontalLayoutup = QtGui.QHBoxLayout() self.horizontalLayoutup.setObjectName("horizontalLayoutup") self.labelEvent = QtGui.QLabel(Dialog) self.labelEvent.setObjectName("labelEvent") self.horizontalLayoutup.addWidget(self.labelEvent) self.spinBoxEvent = QtGui.QSpinBox(Dialog) self.spinBoxEvent.setObjectName("spinBoxEvent") self.horizontalLayoutup.addWidget(self.spinBoxEvent) self.gotoEvent = QtGui.QPushButton(Dialog) self.gotoEvent.setObjectName("gotoEvent") self.horizontalLayoutup.addWidget(self.gotoEvent) self.verticalLayout.addLayout(self.horizontalLayoutup) self.nextEvent = QtGui.QPushButton(Dialog) self.nextEvent.setObjectName("nextEvent") self.verticalLayout.addWidget(self.nextEvent) self.horizontaldown = QtGui.QHBoxLayout() self.horizontaldown.setObjectName("horizontaldown") self.labelmaxEvent = QtGui.QLabel(Dialog) self.labelmaxEvent.setObjectName("labelmaxEvent") self.horizontaldown.addWidget(self.labelmaxEvent) self.labelcountmaxEvent = QtGui.QLabel(Dialog) self.labelcountmaxEvent.setObjectName("labelcountmaxEvent") self.horizontaldown.addWidget(self.labelcountmaxEvent) self.verticalLayout.addLayout(self.horizontaldown) self.horizontalLayout.addLayout(self.verticalLayout) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8)) self.prevEvent.setText(QtGui.QApplication.translate("Dialog", "event -", None, QtGui.QApplication.UnicodeUTF8)) self.labelEvent.setText(QtGui.QApplication.translate("Dialog", "Event:", None, QtGui.QApplication.UnicodeUTF8)) self.gotoEvent.setText(QtGui.QApplication.translate("Dialog", "goto", None, QtGui.QApplication.UnicodeUTF8)) self.nextEvent.setText(QtGui.QApplication.translate("Dialog", "event +", None, QtGui.QApplication.UnicodeUTF8)) self.labelmaxEvent.setText(QtGui.QApplication.translate("Dialog", "max Event", None, QtGui.QApplication.UnicodeUTF8)) self.labelcountmaxEvent.setText(QtGui.QApplication.translate("Dialog", "0", None, QtGui.QApplication.UnicodeUTF8))