Ça s'affiche déjà un peu plus joliment.
[minwii.git] / src / minwii / logapp.py
index b48140c..a632d60 100755 (executable)
@@ -11,6 +11,8 @@ import tkFileDialog
 from glob import glob
 from os.path import join as pjoin
 from os.path import basename
+from loganalyse import LogFileAnalyser
+from pprint import pprint
 
 class Application(Frame) :
     def __init__(self, master=None) :
@@ -19,6 +21,7 @@ class Application(Frame) :
         self.createWidgets()
         self.logDir = ''
         self.logFiles = []
+        self.resultsFrame = None
     
     def configureStretching(self) :
         top=self.winfo_toplevel()
@@ -37,7 +40,7 @@ class Application(Frame) :
         self.identFrame = Identification(df)
         self.identFrame.grid(sticky=NW)
         self.nav = Navbar(df, incCallback=self.loadLogFile, decCallback=self.loadLogFile)
-        self.nav.grid()
+#        self.nav.grid()
         
         
         # barre de boutons
@@ -50,9 +53,12 @@ class Application(Frame) :
 
         self.chooseLogDir = Button(bf, text="Parcourir…", command=self.openFileDialog)
         self.chooseLogDir.grid(row=0, column=0, sticky=W)
+        
+        self.nav = Navbar(bf, incCallback=self.loadLogFile, decCallback=self.loadLogFile)
+        #self.nav.grid(row=0, column=1)
 
         self.quitButton = Button(bf, text='Terminer', command=self.quit)
-        self.quitButton.grid(row=0, column=1, sticky=E)
+        self.quitButton.grid(row=0, column=2, sticky=E)
     
     def openFileDialog(self) :
         self.logDir = tkFileDialog.askdirectory()
@@ -61,6 +67,7 @@ class Application(Frame) :
              self.logFiles.sort()
              self.dataFrame.grid(row=0, column=0, sticky=NW)
              self.nav.setSize(len(self.logFiles))
+             self.nav.grid(row=0, column=1)
              self.loadLogFile(self.nav)
     
     def loadLogFile(self, nav) :
@@ -68,6 +75,11 @@ class Application(Frame) :
         filepath = self.logFiles[index]
         filename = basename(filepath)
         self.identFrame.setFileName(filename)
+        if self.resultsFrame :
+            self.resultsFrame.destroy()
+        self.resultsFrame = ResultsFrame(self.dataFrame, filepath)
+        self.resultsFrame.layResults()
+        self.resultsFrame.grid()
 
 
 class Navbar(Frame) :
@@ -78,7 +90,6 @@ class Navbar(Frame) :
         self.setSize(size)
         self.incCallback = incCallback if incCallback else lambda x : None
         self.decCallback = decCallback if decCallback else lambda x : None
-        self.grid()
         self.caption.set('%d / %d' % (self.index, self.to))
     
     def createWidgets(self) :
@@ -154,7 +165,28 @@ class Identification(Frame) :
         
         self.commentsText = Text(self, width=40, height=4, undo=True, wrap=WORD)
         self.commentsText.grid(row=2, column=1, sticky=W)
+
+class ResultsFrame(Frame) :
+    def __init__(self, master, logFilePath) :
+        Frame.__init__(self, master)
+        self.logFilePath = logFilePath
     
+    def layResults(self) :
+        lfa = LogFileAnalyser(self.logFilePath)
+        results = lfa.analyse()
+        if results :
+            for i, kv in enumerate(results.items()) :
+                k, v = kv
+                kl = Label(self, text='%s :' % k)
+                kl.grid(row=i, column=0, sticky=E)
+            
+                vl = Label(self, text=v)
+                vl.grid(row=i, column=1, sticky=W)
+        else :
+            msg = Label(self, text="Pas de données exploitables.")
+            msg.grid()
+            
+        
 
 app = Application()
 app.master.title("Analyseur des sessions MINWii")