~314r/joliebulle/joliebulle-2.8

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/python3
#­*­coding: utf­8 -­*­

#JolieBulle 2.8
#Copyright (C) 2010-2013 Pierre Tavares

#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version 3
#of the License, or (at your option) any later version.

#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.

#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

import codecs
import PyQt4
import sys
from PyQt4 import QtGui
from PyQt4 import QtCore
from stepEditor_ui import *

class DialogStep(QtGui.QDialog):
    stepChanged = QtCore.pyqtSignal(str,str,float,float,float)
    def __init__(self, parent = None):
        QtGui.QDialog.__init__(self,parent)
        self.ui = Ui_Dialog()
        self.ui.setupUi(self)
        self.ui.comboBoxStepType.addItems(["Infusion", "Température", "Décoction"])
        
        self.ui.lineEditStepName.textChanged.connect(self.valueChanged)
        self.ui.comboBoxStepType.currentIndexChanged.connect(self.valueChanged)
        self.ui.doubleSpinBoxStepTime.valueChanged.connect(self.valueChanged)
        self.ui.doubleSpinBoxStepTemp.valueChanged.connect(self.valueChanged)
#        self.ui.doubleSpinBoxStepVol.valueChanged.connect(self.valueChanged)
        
        self.ui.buttonBox.accepted.connect(self.accepted)
        
        
        
    def fields (self, stepName, stepType, stepTime, stepTemp, stepVol) :
        self.ui.lineEditStepName.setText(stepName)
        if stepType == self.trUtf8('''Infusion''') :
            self.ui.comboBoxStepType.setCurrentIndex(0)
        elif stepType== self.trUtf8('''Temperature''') :
            self.ui.comboBoxStepType.setCurrentIndex(1)
        elif stepType == self.trUtf8('''Decoction''') :
            self.ui.comboBoxStepType.setCurrentIndex(2)              
        self.ui.doubleSpinBoxStepTime.setValue(float(stepTime))
        self.ui.doubleSpinBoxStepTemp.setValue(float(stepTemp))
#        self.ui.doubleSpinBoxStepVol.setValue(float(stepVol))
        
        
        
    def valueChanged (self) :
        self.stepName = self.ui.lineEditStepName.text()
        if self.ui.comboBoxStepType.currentIndex() is 0 :
            self.stepType = self.trUtf8('''Infusion''')  
        elif self.ui.comboBoxStepType.currentIndex() is 1 :
            self.stepType = self.trUtf8('''Temperature''') 
        elif self.ui.comboBoxStepType.currentIndex() is 2 :
            self.stepType = self.trUtf8('''Decoction''') 
        self.stepTime = self.ui.doubleSpinBoxStepTime.value()
        self.stepTemp = self.ui.doubleSpinBoxStepTemp.value()
        self.stepVol = 0
        
    def accepted(self) :
        self.stepChanged.emit(self.stepName,self.stepType,self.stepTime,self.stepTemp,self.stepVol)