~lesuisse-dev/joliebulle/restruct-setup

« back to all changes in this revision

Viewing changes to mashDetail_ui.py

  • Committer: 314r
  • Date: 2012-12-18 18:16:53 UTC
  • Revision ID: contact.314r@gmail.com-20121218181653-l5czx6rtr5339sih
correction oubli bzr add

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
 
 
3
# Form implementation generated from reading ui file 'mashDetail.ui'
 
4
#
 
5
# Created: Thu Dec 13 19:10:26 2012
 
6
#      by: PyQt4 UI code generator 4.9.3
 
7
#
 
8
# WARNING! All changes made in this file will be lost!
 
9
 
 
10
from PyQt4 import QtCore, QtGui
 
11
 
 
12
try:
 
13
    _fromUtf8 = QtCore.QString.fromUtf8
 
14
except AttributeError:
 
15
    _fromUtf8 = lambda s: s
 
16
 
 
17
class Ui_DialogMashDetail(object):
 
18
    def setupUi(self, DialogMashDetail):
 
19
        DialogMashDetail.setObjectName(_fromUtf8("DialogMashDetail"))
 
20
        DialogMashDetail.resize(361, 281)
 
21
        self.gridLayout = QtGui.QGridLayout(DialogMashDetail)
 
22
        self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
 
23
        self.verticalLayout = QtGui.QVBoxLayout()
 
24
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
 
25
        self.labelMashName = QtGui.QLabel(DialogMashDetail)
 
26
        self.labelMashName.setMargin(20)
 
27
        self.labelMashName.setObjectName(_fromUtf8("labelMashName"))
 
28
        self.verticalLayout.addWidget(self.labelMashName)
 
29
        self.formLayout = QtGui.QFormLayout()
 
30
        self.formLayout.setFieldGrowthPolicy(QtGui.QFormLayout.ExpandingFieldsGrow)
 
31
        self.formLayout.setObjectName(_fromUtf8("formLayout"))
 
32
        self.labelPhValue = QtGui.QLabel(DialogMashDetail)
 
33
        self.labelPhValue.setObjectName(_fromUtf8("labelPhValue"))
 
34
        self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.labelPhValue)
 
35
        self.labelSparge = QtGui.QLabel(DialogMashDetail)
 
36
        self.labelSparge.setObjectName(_fromUtf8("labelSparge"))
 
37
        self.formLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.labelSparge)
 
38
        self.labelSpargeValue = QtGui.QLabel(DialogMashDetail)
 
39
        self.labelSpargeValue.setObjectName(_fromUtf8("labelSpargeValue"))
 
40
        self.formLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.labelSpargeValue)
 
41
        self.labelPh = QtGui.QLabel(DialogMashDetail)
 
42
        self.labelPh.setObjectName(_fromUtf8("labelPh"))
 
43
        self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.labelPh)
 
44
        self.verticalLayout.addLayout(self.formLayout)
 
45
        self.label = QtGui.QLabel(DialogMashDetail)
 
46
        self.label.setMargin(20)
 
47
        self.label.setObjectName(_fromUtf8("label"))
 
48
        self.verticalLayout.addWidget(self.label)
 
49
        self.formSteps = QtGui.QFormLayout()
 
50
        self.formSteps.setObjectName(_fromUtf8("formSteps"))
 
51
        self.verticalLayout.addLayout(self.formSteps)
 
52
        spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
 
53
        self.verticalLayout.addItem(spacerItem)
 
54
        self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
 
55
        self.buttonBox = QtGui.QDialogButtonBox(DialogMashDetail)
 
56
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
 
57
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Close)
 
58
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
 
59
        self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 1)
 
60
 
 
61
        self.retranslateUi(DialogMashDetail)
 
62
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), DialogMashDetail.accept)
 
63
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), DialogMashDetail.reject)
 
64
        QtCore.QMetaObject.connectSlotsByName(DialogMashDetail)
 
65
 
 
66
    def retranslateUi(self, DialogMashDetail):
 
67
        DialogMashDetail.setWindowTitle(QtGui.QApplication.translate("DialogMashDetail", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
 
68
        self.labelMashName.setText(QtGui.QApplication.translate("DialogMashDetail", "<html><head/><body><p align=\"center\">Profil</p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
 
69
        self.labelPhValue.setText(QtGui.QApplication.translate("DialogMashDetail", "0", None, QtGui.QApplication.UnicodeUTF8))
 
70
        self.labelSparge.setText(QtGui.QApplication.translate("DialogMashDetail", "<html><head/><body><p><span style=\" font-weight:600;\">Rinçage :</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
 
71
        self.labelSpargeValue.setText(QtGui.QApplication.translate("DialogMashDetail", "0", None, QtGui.QApplication.UnicodeUTF8))
 
72
        self.labelPh.setText(QtGui.QApplication.translate("DialogMashDetail", "<html><head/><body><p><span style=\" font-weight:600;\">Ph : </span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
 
73
        self.label.setText(QtGui.QApplication.translate("DialogMashDetail", "<html><head/><body><p align=\"center\"><span style=\" font-weight:600;\">Etapes</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
 
74