X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=tree.py;h=a4c3aa3807de37dbd41f609a50bf169f6b7ab9fa;hp=e9ab091cd1f692c58c53ec5741cba09880593e36;hb=287f9e72c3e3d666b016dff0fa3dc39419adfcc2;hpb=7fb5b2b86f6c9a0617208ee85211177c23d12f47 diff --git a/tree.py b/tree.py index e9ab091..a4c3aa3 100644 --- a/tree.py +++ b/tree.py @@ -1,8 +1,7 @@ -#!/bin/env python # -*- coding: utf-8 -*- #Author: Pierre Ratinaud #Copyright (c) 2012, Pierre Ratinaud -#Lisense: GNU GPL +#License: GNU GPL import wx import os @@ -11,14 +10,39 @@ import wx.lib.agw.customtreectrl as CT import logging from openanalyse import OpenAnalyse from corpus import Corpus, copycorpus -from functions import DoConf, GetTxtProfile +from tableau import Tableau, copymatrix +from functions import DoConf, GetTxtProfile, TGen, BugReport, open_folder from profile_segment import ProfileSegment, ProfilType from search_tools import SearchFrame from dialog import PrefSimpleFile, PrefExport -from layout import open_antiprofil +from layout import open_antiprofil, TgenLayout +from guifunct import TGenFrame +from textaslexico import TgenSpec +from textreinert import TgenProf log = logging.getLogger('iramuteq.tree') +def buildmenu(menu, parent_menu): + for i in range(parent_menu.GetMenuItemCount()) : + item = parent_menu.FindItemByPosition(i) + itemid = item.GetId() + itemtext = item.GetText() + itemicon = item.GetBitmap() + nitem = wx.MenuItem(menu, itemid, itemtext) + nitem.SetBitmap(itemicon) + if item.IsSubMenu() : + nmenu = wx.Menu() + for val in item.GetSubMenu().GetMenuItems() : + itemid = val.GetId() + itemtext = val.GetText() + itemicon = val.GetBitmap() + nitem = wx.MenuItem(menu, itemid, itemtext) + nitem.SetBitmap(itemicon) + nmenu.AppendItem(nitem) + menu.AppendMenu(-1, item.GetText(), nmenu) + else : + menu.AppendItem(nitem) + class InfoDialog ( wx.Dialog ): def __init__( self, parent, txt, parametres ): @@ -89,7 +113,7 @@ class LeftTree(CT.CustomTreeCtrl): def __init__(self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.SUNKEN_BORDER|wx.WANTS_CHARS, - agwStyle=CT.TR_HAS_BUTTONS|CT.TR_HAS_VARIABLE_ROW_HEIGHT): + agwStyle=CT.TR_HIDE_ROOT|CT.TR_HAS_BUTTONS|CT.TR_HAS_VARIABLE_ROW_HEIGHT): CT.CustomTreeCtrl.__init__(self, parent, id, pos, size, style, agwStyle) self.log = log @@ -102,43 +126,83 @@ class LeftTree(CT.CustomTreeCtrl): elif data.startswith("EVT_"): events.append(data) self.parent = parent + self.ira = parent self.events = events self.styles = treestyles self.item = None - il = wx.ImageList(16, 16) + self.il = wx.ImageList(16, 16) + self.ild = {} + for img in self.ira.images_analyses : + self.ild[img] = self.il.Add(self.ira.images_analyses[img]) + self.SetImageList(self.il) + self.count = 0 self.log = log self.history = parent.history self.h = self.history.history + + idopenfolder = wx.NewId() + accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('E'), idopenfolder)]) + self.SetAcceleratorTable(accel_tbl) + + self.Bind(wx.EVT_MENU, self.OnOpenFolder, id=idopenfolder) + self.root = self.AddRoot("Iramuteq") if not(self.GetAGWWindowStyleFlag() & CT.TR_HIDE_ROOT): self.SetPyData(self.root, None) self.SetItemImage(self.root, 24, CT.TreeItemIcon_Normal) self.SetItemImage(self.root, 13, CT.TreeItemIcon_Expanded) + + self.textroot = self.AppendItem(self.root, _(u'Textual corpus')) + self.SetPyData(self.textroot, {'uuid': 'textroot'}) + self.SetItemImage(self.textroot, self.ild['textroot'], CT.TreeItemIcon_Normal) + self.SetItemImage(self.textroot, self.ild['textroot'], CT.TreeItemIcon_Expanded) - for corpus in self.h : - child = self.AppendItem(self.root, corpus['corpus_name']) + for corpus in reversed(self.h) : + child = self.AppendItem(self.textroot, corpus['corpus_name']) self.SetPyData(child, corpus) - self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) - self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) + self.SetItemImage(child, self.ild['corpus'], CT.TreeItemIcon_Normal) + self.SetItemImage(child, self.ild['corpus'], CT.TreeItemIcon_Expanded) if 'analyses' in corpus : for y in corpus['analyses'] : last = self.AppendItem(child, y['name'], ct_type=0) self.SetPyData(last, y) - self.SetItemImage(last, 24, CT.TreeItemIcon_Normal) - self.SetItemImage(last, 13, CT.TreeItemIcon_Expanded) - - for matrix in self.history.matrix : - last = self.AppendItem(self.root, matrix['name']) - self.SetPyData(last, matrix) - self.SetItemImage(last, 24, CT.TreeItemIcon_Normal) - self.SetItemImage(last, 13, CT.TreeItemIcon_Expanded) - + if y['type'] in self.ild : + img = self.ild[y['type']] + else : + img = 24 + self.SetItemImage(last, img, CT.TreeItemIcon_Normal) + self.SetItemImage(last, img, CT.TreeItemIcon_Expanded) + + self.matroot = self.AppendItem(self.root, _(u'Matrix')) + self.SetPyData(self.matroot, {'uuid': 'matroot'}) + self.SetItemImage(self.matroot, self.ild['matroot'], CT.TreeItemIcon_Normal) + self.SetItemImage(self.matroot, self.ild['matroot'], CT.TreeItemIcon_Expanded) + + orphmat = [] + for matrix in reversed(self.history.matrix) : + if 'matrix_name' in matrix : + child = self.AppendItem(self.matroot, matrix['matrix_name']) + self.SetPyData(child, matrix) + self.SetItemImage(child, self.ild['matrix'], CT.TreeItemIcon_Normal) + self.SetItemImage(child, self.ild['matrix'], CT.TreeItemIcon_Expanded) + if 'analyses' in matrix : + for y in matrix['analyses'] : + last = self.AppendItem(child, y['name'], ct_type=0) + self.SetPyData(last, y) + if y['type'] in self.ild : + img = self.ild[y['type']] + else : + img = 24 + self.SetItemImage(last, img, CT.TreeItemIcon_Normal) + self.SetItemImage(last, img, CT.TreeItemIcon_Expanded) + else : + orphmat.append(matrix) self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) #self.Bind(wx.EVT_IDLE, self.OnIdle) @@ -268,6 +332,7 @@ class LeftTree(CT.CustomTreeCtrl): if itemParent is None : itemParent = self.root child, cookie = self.GetFirstChild(itemParent) + while child : pydata = self.GetPyData(child) if pydata['uuid'] == uuid : @@ -332,85 +397,128 @@ class LeftTree(CT.CustomTreeCtrl): "selexp": selexp, "haswin": haswin, "children": children, "itemtype": itemtype, "text": text, "pydata": pydata, "enabled": enabled} - menu = wx.Menu() - info = menu.Append(wx.ID_ANY, "Informations") - menu.AppendSeparator() - - if 'corpus_name' in pydata : - stat = menu.Append(wx.ID_ANY, u"Statistiques") - spec = menu.Append(wx.ID_ANY, u"Spécificté et AFC") - classification = wx.Menu() - alceste = classification.Append(wx.ID_ANY, u"Méthode ALCESTE") - pam = classification.Append(wx.ID_ANY, u"Par matrice des distances") - menu.AppendMenu(-1, u"Classification", classification) - simi = menu.Append(wx.ID_ANY, u"Analyse de similitude") - wdc = menu.Append(wx.ID_ANY, u"Nuage de mots") - menu.AppendSeparator() - self.Bind(wx.EVT_MENU, self.OnAlceste, alceste) - self.Bind(wx.EVT_MENU, self.OnPam, pam) - self.Bind(wx.EVT_MENU, self.OnStat, stat) - self.Bind(wx.EVT_MENU, self.OnSpec, spec) - self.Bind(wx.EVT_MENU, self.OnSimiTxt, simi) - self.Bind(wx.EVT_MENU, self.OnWordCloud, wdc) - elif pydata.get('type', False) == 'alceste' and pydata['uuid'] in self.parent.history.opened : - openmenu = wx.Menu() - antipro = openmenu.Append(wx.ID_ANY, u"antiprofils") - menu.AppendMenu(wx.ID_ANY, u"Ouvrir...", openmenu) - - profsr = menu.Append(wx.ID_ANY, u"Profils des segments répétés") - profgram = menu.Append(wx.ID_ANY, u"Profils des types") - export_corpus = menu.Append(wx.ID_ANY, u"Exporter le corpus") - colored = menu.Append(wx.ID_ANY, u"Corpus en couleur") - navig = menu.Append(wx.ID_ANY, u"Outil de navigation") - statclasse = menu.Append(wx.ID_ANY, u"Statistiques par classe") - rapport = menu.Append(wx.ID_ANY, u"Rapport") + if not item in [self.textroot, self.matroot] : + menu = wx.Menu() + info = wx.MenuItem(menu, wx.ID_ANY, _(u"Informations").decode('utf8')) + info.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_INFORMATION, size = (16,16))) + menu.AppendItem(info) + + rename = wx.MenuItem(menu, wx.ID_ANY, _(u"Rename").decode('utf8')) + rename.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_TIP, size = (16,16))) + menu.AppendItem(rename) + + openfolder = wx.MenuItem(menu, wx.ID_ANY, _(u"Open directory").decode('utf8')) + openfolder.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_FOLDER_OPEN, size = (16,16))) + menu.AppendItem(openfolder) menu.AppendSeparator() + + if 'corpus_name' in pydata : + buildmenu(menu, self.parent.text_menu) + menu.AppendSeparator() + elif 'matrix_name' in pydata : + buildmenu(menu, self.parent.matrix_menu) + menu.AppendSeparator() + elif pydata.get('type', False) == 'alceste' and pydata['uuid'] in self.parent.history.opened : + openmenu = wx.Menu() + antipro = openmenu.Append(wx.ID_ANY, _(u"Antiprofiles").decode('utf8')) + menu.AppendMenu(wx.ID_ANY, _(u"Open ...").decode('utf8'), openmenu) + + profsr = menu.Append(wx.ID_ANY, _(u"Repeated segments profiles").decode('utf8')) + profgram = menu.Append(wx.ID_ANY, _(u"POS profiles").decode('utf8')) + tgen = menu.Append(wx.ID_ANY, _(u"Tgen Editor").decode('utf8')) + computetgen = menu.Append(wx.ID_ANY, _(u"Compute Tgen").decode('utf8')) + export_corpus = menu.Append(wx.ID_ANY, _(u"Export corpus").decode('utf8')) + colored = menu.Append(wx.ID_ANY, _(u"Colored corpus").decode('utf8')) + navig = menu.Append(wx.ID_ANY, _(u"Navigator").decode('utf8')) + statclasse = menu.Append(wx.ID_ANY, _(u"Clusters statistics").decode('utf8')) + rapport = menu.Append(wx.ID_ANY, _(u"Report").decode('utf8')) + export_classes = menu.Append(wx.ID_ANY, _(u"Export clusters").decode('utf8')) + subcorpusfromcl = menu.Append(wx.ID_ANY, _(u"Sub corpus from clusters").decode('utf8')) + menu.AppendSeparator() + self.Bind(wx.EVT_MENU, self.OpenAntipro, antipro) + self.Bind(wx.EVT_MENU, self.OnProfSR, profsr) + self.Bind(wx.EVT_MENU, self.OnProfGram, profgram) + self.Bind(wx.EVT_MENU, self.OnTgenEditor, tgen) + self.Bind(wx.EVT_MENU, self.OnTgenCompute, computetgen) + self.Bind(wx.EVT_MENU, self.OnExportCorpus, export_corpus) + self.Bind(wx.EVT_MENU, self.OnColored, colored) + self.Bind(wx.EVT_MENU, self.OnNavig, navig) + self.Bind(wx.EVT_MENU, self.StatClasse, statclasse) + self.Bind(wx.EVT_MENU, self.OnRapport, rapport) + self.Bind(wx.EVT_MENU, self.OnExportClasses, export_classes) + self.Bind(wx.EVT_MENU, self.OnSubCorpusFromClusters, subcorpusfromcl) + elif pydata.get('type', False) == 'stat' and pydata['uuid'] in self.parent.history.opened : + export_dictionary = menu.Append(wx.ID_ANY, _(u"Export dictionary").decode('utf8')) + export_lems = menu.Append(wx.ID_ANY, _(u"Export lemma dictionary").decode('utf8')) + self.Bind(wx.EVT_MENU, self.OnExportDictionary, export_dictionary) + self.Bind(wx.EVT_MENU, self.OnExportLems, export_lems) + menu.AppendSeparator() + elif pydata.get('type', False) == 'spec' and pydata['uuid'] in self.parent.history.opened : + tgen = menu.Append(wx.ID_ANY, _(u"Tgen Editor").decode('utf8')) + computetgen = menu.Append(wx.ID_ANY, _(u"Compute Tgen").decode('utf8')) + self.Bind(wx.EVT_MENU, self.OnTgenEditor, tgen) + self.Bind(wx.EVT_MENU, self.OnTgenCompute, computetgen) + menu.AppendSeparator() + elif pydata.get('type', False) == 'reinertmatrix' and pydata['uuid'] in self.parent.history.opened : + openmenu = wx.Menu() + antipro = openmenu.Append(wx.ID_ANY, _(u"antiprofiles").decode('utf8')) + rapport = menu.Append(wx.ID_ANY, _(u"Report").decode('utf8')) + menu.AppendMenu(wx.ID_ANY, _(u"Open ...").decode('utf8'), openmenu) + self.Bind(wx.EVT_MENU, self.OpenAntipro, antipro) + self.Bind(wx.EVT_MENU, self.OnRapport, rapport) + + itemdelete = wx.MenuItem(menu, wx.ID_ANY, _(u"Delete from history").decode('utf8')) + itemdelete.SetBitmap(wx.ArtProvider_GetBitmap(wx.ART_DELETE, size = (16,16))) + menu.AppendItem(itemdelete) + #item11 = menu.Append(wx.ID_ANY, "Prepend An Item") + #item12 = menu.Append(wx.ID_ANY, "Append An Item") + + #self.Bind(wx.EVT_MENU, self.OnItemBackground, item1) + #self.Bind(wx.EVT_MENU, self.OnItemForeground, item2) + #self.Bind(wx.EVT_MENU, self.OnItemBold, item3) + #self.Bind(wx.EVT_MENU, self.OnItemFont, item4) + #self.Bind(wx.EVT_MENU, self.OnItemHyperText, item5) + #self.Bind(wx.EVT_MENU, self.OnEnableWindow, item6) + #self.Bind(wx.EVT_MENU, self.OnDisableItem, item7) + #self.Bind(wx.EVT_MENU, self.OnItemIcons, item8) + self.Bind(wx.EVT_MENU, self.OnItemInfo, info) + self.Bind(wx.EVT_MENU, self.OnRename, rename) + self.Bind(wx.EVT_MENU, self.OnItemDelete, itemdelete) + self.Bind(wx.EVT_MENU, self.OnOpenFolder, openfolder) + #self.Bind(wx.EVT_MENU, self.OnItemPrepend, item11) + #self.Bind(wx.EVT_MENU, self.OnItemAppend, item12) - self.Bind(wx.EVT_MENU, self.OpenAntipro, antipro) - self.Bind(wx.EVT_MENU, self.OnProfSR, profsr) - self.Bind(wx.EVT_MENU, self.OnProfGram, profgram) - self.Bind(wx.EVT_MENU, self.OnExportCorpus, export_corpus) - self.Bind(wx.EVT_MENU, self.OnColored, colored) - self.Bind(wx.EVT_MENU, self.OnNavig, navig) - self.Bind(wx.EVT_MENU, self.StatClasse, statclasse) - self.Bind(wx.EVT_MENU, self.OnRapport, rapport) - - - itemdelete = menu.Append(wx.ID_ANY, "Supprimer de l'historique") - if item == self.GetRootItem(): - itemdelete.Enable(False) - #item11 = menu.Append(wx.ID_ANY, "Prepend An Item") - #item12 = menu.Append(wx.ID_ANY, "Append An Item") - - #self.Bind(wx.EVT_MENU, self.OnItemBackground, item1) - #self.Bind(wx.EVT_MENU, self.OnItemForeground, item2) - #self.Bind(wx.EVT_MENU, self.OnItemBold, item3) - #self.Bind(wx.EVT_MENU, self.OnItemFont, item4) - #self.Bind(wx.EVT_MENU, self.OnItemHyperText, item5) - #self.Bind(wx.EVT_MENU, self.OnEnableWindow, item6) - #self.Bind(wx.EVT_MENU, self.OnDisableItem, item7) - #self.Bind(wx.EVT_MENU, self.OnItemIcons, item8) - self.Bind(wx.EVT_MENU, self.OnItemInfo, info) - self.Bind(wx.EVT_MENU, self.OnItemDelete, itemdelete) - #self.Bind(wx.EVT_MENU, self.OnItemPrepend, item11) - #self.Bind(wx.EVT_MENU, self.OnItemAppend, item12) - - self.PopupMenu(menu) - menu.Destroy() + self.PopupMenu(menu) + menu.Destroy() def getcorpus(self): + busy = wx.BusyInfo(_("Please wait...Reading corpus").decode('utf8'), self.parent) + wx.SafeYield() if self.pydata['uuid'] in self.parent.history.openedcorpus : - return copycorpus(self.parent.history.openedcorpus[self.pydata['uuid']]) + corpus = copycorpus(self.parent.history.openedcorpus[self.pydata['uuid']]) elif 'corpus_name' in self.pydata : - return Corpus(self.parent, parametres = DoConf(self.pydata['ira']).getoptions('corpus'), read = True) + corpus = Corpus(self.parent, parametres = DoConf(self.pydata['ira']).getoptions('corpus'), read = True) else : cuuid = self.pydata['corpus'] if cuuid in self.parent.history.openedcorpus : - return copycorpus(self.parent.history.openedcorpus[cuuid]) + corpus = copycorpus(self.parent.history.openedcorpus[cuuid]) else : irapath = self.parent.history.corpus[cuuid]['ira'] - return Corpus(self.parent, parametres = DoConf(irapath).getoptions('corpus'), read = True) + corpus = Corpus(self.parent, parametres = DoConf(irapath).getoptions('corpus'), read = True) + del busy + return corpus + + def getmatrix(self): + if 'matrix_name' in self.pydata : + matrix = Tableau(self.parent, parametres = DoConf(self.pydata['ira']).getoptions('matrix')) + matrix.open() + return copymatrix(matrix) + else : + cuuid = self.pydata['matrix'] + matrix = Tableau(self.parent, parametres = DoConf(self.history.matrixanalyse[cuuid]['ira']).getoptions('matrix')) + matrix.open() + return copymatrix(matrix) def OnSpec(self, evt) : self.parent.OnTextSpec(evt, self.getcorpus()) @@ -418,17 +526,41 @@ class LeftTree(CT.CustomTreeCtrl): def OnStat(self, evt) : self.parent.OnTextStat(evt, self.getcorpus()) - def OnAlceste(self, evt) : - self.parent.OnTextAlceste(evt, self.getcorpus()) + def OnReinert(self, evt) : + self.parent.OnTextReinert(evt, self.getcorpus()) def OnPam(self, evt) : - print 'rien' + self.parent.OnPamSimple(evt, self.getcorpus()) def OnSimiTxt(self, evt) : self.parent.OnSimiTxt(evt, self.getcorpus()) def OnWordCloud(self, evt) : self.parent.OnWordCloud(evt, self.getcorpus()) + +# def OnFreq(self, evt): +# self.parent.OnFreq(evt, self.getmatrix()) + +# def OnChiSquare(self, evt): +# self.parent.OnChi2(evt, self.getmatrix()) + +# def OnSimiTab(self, evt): +# self.parent.OnSimiTab(evt, self.getmatrix()) + +# def OnProto(self, evt): +# self.parent.OnProto(evt, self.getmatrix()) + +# def OnSplitFromVar(self, evt): +# self.parent.OnSplitVar(evt, self.getmatrix()) + +# def OnCHDReinert(self, evt): +# self.parent.OnCHDReinert(evt, self.getmatrix()) + + #def OnSubTextFromMeta(self, evt): + # self.parent.OnSubText(self.getcorpus(), parametres = {'frommeta' : True}) + + #def OnSubTextFromTheme(self, evt): + # self.parent.OnSubText(self.getcorpus(), parametres = {'fromtheme' : True}) def OnProfSR(self, evt) : ProfileSegment(self.parent, self.page.dictpathout, self.page.parametres, self.page.corpus) @@ -446,27 +578,35 @@ class LeftTree(CT.CustomTreeCtrl): else : alc = False if dial.radio_lem.GetSelection() == 0 : lem = True else : lem = False - self.page.corpus.export_corpus_classes(dial.fbb.GetValue(), alc = alc, lem = lem) + if self.page.parametres['classif_mode'] != 2 : + uci = False + else : + uci = True + self.page.corpus.export_corpus_classes(dial.fbb.GetValue(), alc = alc, lem = lem, uci = uci) msg = u"Fini !" dial.Destroy() - dlg = wx.MessageDialog(self.parent, msg, u"Export", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg = wx.MessageDialog(self.parent, msg, u"Export", wx.OK | wx.ICON_INFORMATION) dlg.CenterOnParent() dlg.ShowModal() dlg.Destroy() def OnColored(self, evt) : - dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.html', 'title': 'Corpus en couleur'}) + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.html', 'title': _(u"Colored corpus").decode('utf8')}) dial.fbb.SetValue(os.path.join(os.path.dirname(self.page.dictpathout['ira']), 'corpus_couleur.html')) dial.CenterOnParent() res = dial.ShowModal() if res == wx.ID_OK : fileout = dial.fbb.GetValue() dial.Destroy() - txt = self.page.corpus.make_colored_corpus() + if self.page.parametres['classif_mode'] != 2 : + uci = False + else : + uci = True + txt = self.page.corpus.make_colored_corpus(uci = uci) with open(fileout, 'w') as f : f.write(txt) - msg = u"Fini !\nVoulez-vous ouvrir le corpus dans votre navigateur ?" - dlg = wx.MessageDialog(self.parent, msg, u"Corpus en couleur", wx.NO | wx.YES | wx.NO_DEFAULT | wx.ICON_QUESTION) + msg = ' !\n'.join([_(u"Done").decode('utf8'), _(u"Open in a web browser ?").decode('utf8')]) + dlg = wx.MessageDialog(self.parent, msg, u"Corpus en couleur", wx.NO | wx.YES | wx.ICON_QUESTION) dlg.CenterOnParent() if dlg.ShowModal() == wx.ID_YES : webbrowser.open(fileout) @@ -474,11 +614,11 @@ class LeftTree(CT.CustomTreeCtrl): def OnNavig(self, evt): if 'FrameSearch' not in dir(self.page) : - self.page.FrameSearch = SearchFrame(self.parent, -1, u"Rechercher...", self.page.corpus) + self.page.FrameSearch = SearchFrame(self.parent, -1, _(u"Search ...").decode('utf8'), self.page.corpus) self.page.FrameSearch.Show() def StatClasse(self, evt): - dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.csv', 'title': 'Stat par classe'}) + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.csv', 'title': _(u"Clusters statistics").decode('utf8')}) dial.fbb.SetValue( os.path.join(os.path.dirname(self.page.dictpathout['ira']), 'stat_par_classe.csv')) dial.CenterOnParent() res = dial.ShowModal() @@ -487,7 +627,7 @@ class LeftTree(CT.CustomTreeCtrl): dial.Destroy() self.page.corpus.get_stat_by_cluster(fileout) msg = u"Fini !" - dlg = wx.MessageDialog(self.parent, msg, u"Stat par classe", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg = wx.MessageDialog(self.parent, msg, _(u"Clusters statistics").decode('utf8'), wx.OK | wx.ICON_INFORMATION) dlg.CenterOnParent() if dlg.ShowModal() == wx.ID_OK : dlg.Destroy() @@ -496,7 +636,7 @@ class LeftTree(CT.CustomTreeCtrl): find = False for i in range(0, self.page.TabChdSim.GetPageCount()) : page = self.page.TabChdSim.GetPage(i) - if self.page.TabChdSim.GetPageText(i) == 'Antiprofils' : + if self.page.TabChdSim.GetPageText(i) == _(u"Antiprofiles").decode('utf8') : self.page.TabChdSim.SetSelection(i) find = True break @@ -505,7 +645,7 @@ class LeftTree(CT.CustomTreeCtrl): self.page.TabChdSim.SetSelection(self.page.TabChdSim.GetPageCount() - 1) def OnRapport(self, evt) : - dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.txt', 'title': 'Rapport'}) + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.txt', 'title': _(u"Report").decode('utf8')}) dial.fbb.SetValue(self.page.dictpathout['rapport']) dial.CenterOnParent() res = dial.ShowModal() @@ -515,13 +655,109 @@ class LeftTree(CT.CustomTreeCtrl): with open(fileout, 'w') as f : f.write(self.page.debtext + '\n' + GetTxtProfile(self.page.DictProfile, self.page.cluster_size)) msg = u"Fini !" - dlg = wx.MessageDialog(self.parent, msg, u"Rapport", wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg = wx.MessageDialog(self.parent, msg, _(u"Report").decode('utf8'), wx.OK | wx.ICON_INFORMATION) dlg.CenterOnParent() dlg.ShowModal() dlg.Destroy() else : dial.Destroy() + def OnExportDictionary(self, evt) : + corpus = self.page.corpus + corpus.export_dictionary(self.page.pathout['dictionary.csv'], self.parent.syscoding) + log.info('export dictionary %s' % self.page.pathout['dictionary.csv']) + dial = wx.MessageDialog(self.parent, self.page.pathout['dictionary.csv'], 'Export', wx.OK) + dial.ShowModal() + dial.Destroy() + + def OnExportLems(self, evt) : + corpus = self.page.corpus + corpus.export_lems(self.page.pathout['lemmes.csv'], self.parent.syscoding) + log.info('export lemmes %s' % self.page.pathout['lemmes.csv']) + dial = wx.MessageDialog(self.parent, self.page.pathout['lemmes.csv'], 'Export', wx.OK) + dial.ShowModal() + dial.Destroy() + + def OnTgenEditor(self, evt): + corpus = self.page.corpus + tgenpath = os.path.join(self.page.parametres['pathout'], 'tgen.csv') + tgen = TGen(path = tgenpath, encoding = self.parent.syscoding) + if os.path.exists(tgenpath) : + tgen.read(tgenpath) + if isinstance(evt, list) : + i = 0 + while 'tgen%i' %i in tgen.tgen : + i += 1 + tgenname = 'tgen%i' %i + tgen.tgen[tgenname] = evt + tgenframe = TGenFrame(self.parent, corpus, tgen) + tgenframe.Show() + if isinstance(evt, list) : + tgenframe.OnNewTgen(None, tgen = tgenname) + + def OnTgenCompute(self, evt): + corpus = self.page.corpus + tgenpath = os.path.join(self.page.parametres['pathout'], 'tgen.csv') + if not os.path.exists(tgenpath) : + message = wx.MessageDialog(self.parent, _(u"No TGen yet !").decode('utf8'), style = wx.ICON_EXCLAMATION | wx.OK) + message.ShowModal() + message.Destroy() + else : + self.page.parametres['tgenpath'] = tgenpath + tgen = TGen(path = tgenpath, encoding = self.parent.syscoding) + if self.page.parametres['type'] == 'spec' : + self.page.parametres['etoiles'] = self.page.etoiles + TgenSpec(self.parent, corpus, self.page.parametres) + elif self.page.parametres['type'] == 'alceste' : + TgenProf(self.parent, corpus, self.page.parametres, self.page.cluster_size) + TgenLayout(self.page) + + def OnExportClasses(self, event): + corpus = self.page.corpus + if self.page.parametres['classif_mode'] != 2 : + uci = False + else : + uci = True + busy = wx.BusyInfo(_("Please wait...").decode('utf8'), self.parent) + wx.SafeYield() + for i in range(1, self.page.parametres['clnb'] + 1) : + corpus.export_classe(self.page.pathout['classe_%i_export.txt' % i], i, uci = uci) + del busy + dial = wx.MessageDialog(self, self.page.pathout['classe_x_export.txt'], u"Export", wx.OK|wx.ICON_INFORMATION) + dial.ShowModal() + dial.Destroy() + + def OnSubCorpusFromClusters(self, evt): + self.parent.OnSubText(evt, corpus = self.getcorpus(), parametres = {'fromclusters' : True, 'clnb': self.page.parametres['clnb'], 'lc' : self.page.corpus.lc}) + + def OnRename(self, event): + pydata = self.itemdict['pydata'] + if 'matrix_name' in pydata : + name = 'matrix_name' + elif 'corpus_name' in pydata : + name = 'corpus_name' + else : + name = 'name' + oldname = pydata[name] + dlg = wx.TextEntryDialog(self, _("New Name").decode('utf8'), _(u'Rename').decode('utf8'), oldname) + if dlg.ShowModal() == wx.ID_OK: + newname = dlg.GetValue() + dlg.Destroy() + pydata[name] = newname + Totconf = DoConf(configfile=pydata['ira']) + conf = Totconf.getoptions() + conf[name] = newname + Totconf.makeoptions(Totconf.getsections(), [conf]) + self.history.update(pydata) + self.SetItemText(self.current, newname) + self.EnsureVisible(self.current) + + def OnOpenFolder(self, evt): + try : + open_folder(os.path.dirname(self.pydata['ira'])) + except : + print 'cannot open folder %s' % self.pydata.get('ira', 'noirapath') + def OnItemBackground(self, event): colourdata = wx.ColourData() @@ -644,7 +880,7 @@ class LeftTree(CT.CustomTreeCtrl): def OnItemDelete(self, event): strs = "Are You Sure You Want To Delete Item " + self.GetItemText(self.current) + "?" - dlg = wx.MessageDialog(None, strs, 'Deleting Item', wx.YES_NO | wx.NO_DEFAULT | wx.CANCEL | wx.ICON_QUESTION) + dlg = wx.MessageDialog(None, strs, 'Deleting Item', wx.OK | wx.CANCEL | wx.ICON_QUESTION) if dlg.ShowModal() in [wx.ID_NO, wx.ID_CANCEL]: dlg.Destroy() @@ -678,7 +914,7 @@ class LeftTree(CT.CustomTreeCtrl): uuid = parametres.get('corpus', None) if uuid is not None : if itemParent is None : - itemParent = self.root + itemParent = self.textroot child, cookie = self.GetFirstChild(itemParent) corpus = None while child : @@ -692,21 +928,64 @@ class LeftTree(CT.CustomTreeCtrl): if corpus is not None : item = self.AppendItem(corpus, parametres['name']) else : - item = self.AppendItem(self.root, parametres['name']) + item = self.AppendItem(self.textroot, parametres['name']) else : - item = self.AppendItem(self.root, parametres['name']) + item = self.AppendItem(self.matroot, parametres['name']) + self.SetPyData(item, parametres) + if parametres['type'] in self.ild : + img = self.ild[parametres['type']] + else : + img = 24 + self.SetItemImage(item, img, CT.TreeItemIcon_Normal) + self.SetItemImage(item, 13, CT.TreeItemIcon_Expanded) + self.SetItemBold(item, bold) + self.SelectItem(item) + + def AddMatAnalyse(self, parametres, itemParent = None, bold = True) : + uuid = parametres.get('matrix', None) + if uuid is not None : + if itemParent is None : + itemParent = self.matroot + child, cookie = self.GetFirstChild(itemParent) + matrix = None + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + matrix = child + break + self.GiveFocus(child, uuid) + child, cookie = self.GetNextChild(itemParent, cookie) + #item = self.AppendItem(child, parametres['name']) + if matrix is not None : + item = self.AppendItem(matrix, parametres['name']) + else : + item = self.AppendItem(self.matroot, parametres['name']) self.SetPyData(item, parametres) - self.SetItemImage(item, 24, CT.TreeItemIcon_Normal) + if parametres['type'] in self.ild : + img = self.ild[parametres['type']] + else : + img = 24 + self.SetItemImage(item, img, CT.TreeItemIcon_Normal) self.SetItemImage(item, 13, CT.TreeItemIcon_Expanded) self.SetItemBold(item, bold) + self.SelectItem(item) - def OnItemAppend(self, item): - child = self.AppendItem(self.root, item['corpus_name']) + def OnItemAppend(self, item, select = True): + if 'corpus_name' in item : + child = self.InsertItem(self.textroot, 0, item['corpus_name']) + else : + child = self.InsertItem(self.matroot, 0, item['matrix_name']) self.SetPyData(child, item) - self.history.addtab(item) - self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) - self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) - self.SetItemBold(child, True) + if item['type'] in self.ild : + img = self.ild[item['type']] + else : + img = 24 + self.SetItemImage(child, img, CT.TreeItemIcon_Normal) + self.SetItemImage(child, img, CT.TreeItemIcon_Expanded) + if select : + self.history.addtab(item) + self.SetItemBold(child, True) + self.SelectItem(child) #dlg = wx.TextEntryDialog(self, "Please Enter The New Item Name", 'Item Naming', 'Python') @@ -754,7 +1033,6 @@ class LeftTree(CT.CustomTreeCtrl): def OnLeftDClick(self, event): - pt = event.GetPosition() item, flags = self.HitTest(pt) if item is not None : @@ -766,10 +1044,22 @@ class LeftTree(CT.CustomTreeCtrl): if page.parametres['uuid'] == pydata['uuid'] : self.parent.nb.SetSelection(i) break + elif pydata['uuid'] in ['textroot', 'matroot'] : + pass else : - OpenAnalyse(self.parent, pydata) - self.SetItemBold(item, True) - self.OnSelChanged(pydata = pydata) + if os.path.exists(pydata['ira']) : + busy = wx.BusyInfo(_("Please wait..."), self.parent) + wx.SafeYield() + try : + OpenAnalyse(self.parent, pydata) + del busy + self.SetItemBold(item, True) + self.OnSelChanged(pydata = pydata) + except : + del busy + BugReport(self.ira) + else : + wx.MessageBox(_(u"This file does not exist : %s" % pydata['ira']).decode('utf8'), 'Information', wx.ICON_EXCLAMATION | wx.STAY_ON_TOP ) #if item and (flags & CT.TREE_HITTEST_ONITEMLABEL): # if self.GetAGWWindowStyleFlag() & CT.TR_EDIT_LABELS: # self.log.info("OnLeftDClick: %s (manually starting label edit)"% self.GetItemText(item) + "\n") @@ -819,7 +1109,18 @@ class LeftTree(CT.CustomTreeCtrl): if event is not None : item = event.GetItem() pydata = self.GetPyData(item) + if pydata is not None : + if 'corpus_name' in pydata or 'corpus' in pydata : + self.ira.ShowMenu('matrix', False) + self.ira.ShowMenu('text', True) + if 'matrix_name' in pydata or 'matrix' in pydata: + self.ira.ShowMenu('text', False) + self.ira.ShowMenu('matrix', True) + if 'uuid' in pydata : + if pydata['uuid'] in ['textroot', 'matroot'] : + self.ira.ShowMenu('text', False) + self.ira.ShowMenu('matrix', False) self.pydata = pydata if pydata['uuid'] in self.parent.history.opened : for i in range(self.parent.nb.GetPageCount()) :