- self.index = self.index + self.step
- self.caption.set('%d / %d' % (self.index, self.to))
- if self.index == self.to :
- self.nextBtn.configure(state=DISABLED)
- if self.index > self.from_ :
- self.backBtn.configure(state=NORMAL)
+ self.index = self.index + 1
+ self.refreshStates()
+ self.incCallback(self)
+
+ def setSize(self, size) :
+ self.from_ = 1
+ self.to = size
+ self.index = 1
+ self.refreshStates()
+
+
+class Identification(Frame) :
+ def __init__(self, master=None) :
+ Frame.__init__(self, master)
+ self.fileName = StringVar()
+ self.createWidgets()
+
+ def setFileName(self, name) :
+ self.fileName.set(name)
+
+ def createWidgets(self) :
+ fileLbl = Label(self, text='Fichier :')
+ fileLbl.grid(row=0, column=0, sticky=E)
+
+ fileNameLbl = Label(self, textvariable=self.fileName)
+ fileNameLbl.grid(row=0, column=1, sticky=W)
+
+ nameLbl = Label(self, text='Patient :')
+ nameLbl.grid(row=1, column=0, sticky=E)
+
+ self.nameEntry = Entry(self, width=40)
+ self.nameEntry.grid(row=1, column=1, sticky=W)
+
+ commentsLbl = Label(self, text='Commentaires :')
+ commentsLbl.grid(row=2, column=0, sticky=E)
+
+ self.commentsText = Text(self, width=40, height=4, undo=True, wrap=WORD)
+ self.commentsText.grid(row=2, column=1, sticky=W)