from Tkinter import *
import tkFileDialog
+from glob import glob
+from os.path import join as pjoin
class Application(Frame) :
def __init__(self, master=None) :
Frame.__init__(self, master)
- self.grid()
+ self.configureStretching()
self.createWidgets()
+ self.logDir = ''
+ self.logFiles = []
+
+ def configureStretching(self) :
+ top=self.winfo_toplevel()
+ top.rowconfigure(0, weight=1)
+ top.columnconfigure(0, weight=1)
+
+ self.grid(sticky=N+S+E+W, padx=10, pady=10)
+ self.rowconfigure(0, weight=1)
+ self.columnconfigure(0, weight=1)
def createWidgets(self) :
- self.chooseLogDir = Button(self, text="Parcourir…", command=self.openFileDialog)
- self.chooseLogDir.grid()
- self.quitButton = Button(self, text='Terminer', command=self.quit)
- self.quitButton.grid()
+ # zone d'affichage des données'
+ self.dataFrame = df = Frame(self)
+ #df.grid(sticky=NW)
+
+ self.identFrame = Identification(df)
+ self.identFrame.grid(sticky=NW)
+ self.nav = Navbar(df)
+ self.nav.grid()
+
+
+ # barre de boutons
+ self.btnFrame = bf = Frame(self)
+ bf.grid(row=1, column=0, sticky=W+S+E)
+ bf.rowconfigure(0, weight=1)
+ bf.columnconfigure(0, weight=1)
+ bf.columnconfigure(1, weight=1)
+
+
+ self.chooseLogDir = Button(bf, text="Parcourir…", command=self.openFileDialog)
+ self.chooseLogDir.grid(row=0, column=0, sticky=W)
+
+ self.quitButton = Button(bf, text='Terminer', command=self.quit)
+ self.quitButton.grid(row=0, column=1, sticky=E)
def openFileDialog(self) :
- print tkFileDialog.askopenfilename()
+ self.logDir = tkFileDialog.askdirectory()
+ if self.logDir :
+ self.logFiles = glob(pjoin(self.logDir, '*.log'))
+ self.logFiles.sort()
+ self.dataFrame.grid(row=0, column=0, sticky=NW)
+
+
+class Navbar(Frame) :
+ def __init__(self, master=None, from_=1, to=10, start=1, step=1) :
+ Frame.__init__(self, master)
+ self.from_ = from_
+ self.to = to
+ self.index = start
+ self.step = step
+ self.grid()
+ self.caption = StringVar()
+ self.caption.set('%d / %d' % (self.index, self.to))
+ self.createWidgets()
+
+ def createWidgets(self) :
+ self.backBtn = Button(self,
+ text='◀',
+ state = DISABLED if self.index==self.from_ else NORMAL,
+ command = self.dec
+ )
+ self.backBtn.grid(row=0, column=0)
+
+ self.lbl = Label(self, textvariable=self.caption)
+ self.lbl.grid(row=0, column=1)
+
+ self.nextBtn = Button(self,
+ text='▶',
+ state = DISABLED if self.index==self.to else NORMAL,
+ command = self.inc)
+ self.nextBtn.grid(row=0, column=2)
+
+ def dec(self) :
+ self.index = self.index - self.step
+ self.caption.set('%d / %d' % (self.index, self.to))
+ if self.index == self.from_ :
+ self.backBtn.configure(state=DISABLED)
+ if self.index < self.to :
+ self.nextBtn.configure(state=NORMAL)
+
+ def inc(self) :
+ 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)
+
+
+class Identification(Frame) :
+ def __init__(self, master=None) :
+ Frame.__init__(self, master)
+ self.createWidgets()
+
+ def createWidgets(self) :
+ nameLbl = Label(self, text='Patient :')
+ nameLbl.grid(row=0, column=0)
+
+ self.nameEntry = Entry(self, width=40)
+ self.nameEntry.grid(row=0, column=1)
+
+ commentsLbl = Label(self, text='Commentaires :')
+ commentsLbl.grid(row=1, column=0)
+
+ self.commentsText = Text(self, width=40, height=4, undo=True, wrap=WORD)
+ self.commentsText.grid(row=1, column=1)
+
app = Application()
app.master.title("Analyseur des sessions MINWii")