X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=tree.py;h=69a78cb97c0c776d9a53c8c7ea6f485f4e14abdc;hp=5e90eb0f5954f9579e5dcc88dd5bc9740040700e;hb=40e1d7a9be76ec155d325c8f53bc782f0cc78138;hpb=a503f041dc4947ee21c1d353ddd05ddb13a5e322 diff --git a/tree.py b/tree.py index 5e90eb0..69a78cb 100644 --- a/tree.py +++ b/tree.py @@ -1,26 +1,32 @@ -#!/bin/env python # -*- coding: utf-8 -*- #Author: Pierre Ratinaud #Copyright (c) 2012, Pierre Ratinaud -#Lisense: GNU GPL +#License: GNU GPL import wx +import os +import webbrowser import wx.lib.agw.customtreectrl as CT import logging from openanalyse import OpenAnalyse -from corpusNG import Corpus, copycorpus -from functions import DoConf - +from corpus import Corpus, copycorpus +from functions import DoConf, GetTxtProfile +from profile_segment import ProfileSegment, ProfilType +from search_tools import SearchFrame +from dialog import PrefSimpleFile, PrefExport +from layout import open_antiprofil log = logging.getLogger('iramuteq.tree') -#from agw import customtreectrl as CT class InfoDialog ( wx.Dialog ): def __init__( self, parent, txt, parametres ): wx.Dialog.__init__ ( self, parent, id = wx.ID_ANY, title = u"Informations", pos = wx.DefaultPosition, size = wx.DefaultSize, style = wx.DEFAULT_DIALOG_STYLE ) - - self.SetSizeHintsSz( wx.Size( 400,200 ), wx.DefaultSize ) + if len(parametres) > 30 : + nb = 4 + else : + nb = 2 + self.SetSizeHintsSz( wx.Size( 500,200 ), wx.DefaultSize ) bSizer1 = wx.BoxSizer( wx.VERTICAL ) @@ -38,20 +44,26 @@ class InfoDialog ( wx.Dialog ): bSizer1.Add( self.m_panel2, 0, wx.EXPAND |wx.ALL, 5 ) self.m_panel1 = wx.Panel( self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.TAB_TRAVERSAL ) - fgSizer1 = wx.FlexGridSizer( 0, 2, 0, 0 ) + + fgSizer1 = wx.FlexGridSizer( 0, nb, 0, 0 ) fgSizer1.SetFlexibleDirection( wx.BOTH ) fgSizer1.SetNonFlexibleGrowMode( wx.FLEX_GROWMODE_SPECIFIED ) + txtctrl = [] for val in parametres : fgSizer1.Add( wx.StaticText( self.m_panel1, wx.ID_ANY, val[0], wx.DefaultPosition, wx.DefaultSize, 0 ), 0, wx.ALL, 0) - fgSizer1.Add( wx.StaticText( self.m_panel1, wx.ID_ANY, val[1], wx.DefaultPosition, wx.DefaultSize, 0 ), 0, wx.ALL, 0) - fgSizer1.Add( wx.StaticLine( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ), 0, wx.EXPAND |wx.ALL, 0) - fgSizer1.Add( wx.StaticLine( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ), 0, wx.EXPAND|wx.ALL, 0) + #fgSizer1.Add( wx.StaticText( self.m_panel1, wx.ID_ANY, val[1], wx.DefaultPosition, wx.DefaultSize, 0 ), 0, wx.ALL, 0) + txtctrl.append( wx.TextCtrl( self.m_panel1, wx.ID_ANY, val[1], wx.DefaultPosition, (450, 20), wx.TE_READONLY ) ) + txtctrl[-1].SetBackgroundColour('#DDE8EB') + #wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT)) + fgSizer1.Add( txtctrl[-1], 0, wx.ALL|wx.EXPAND, 0) + #fgSizer1.Add( wx.StaticLine( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ), 0, wx.EXPAND |wx.ALL, 0) + #fgSizer1.Add( wx.StaticLine( self.m_panel1, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize, wx.LI_HORIZONTAL ), 0, wx.EXPAND|wx.ALL, 0) self.m_panel1.SetSizer( fgSizer1 ) self.m_panel1.Layout() fgSizer1.Fit( self.m_panel1 ) - bSizer1.Add( self.m_panel1, 0, wx.EXPAND |wx.ALL, 3 ) + bSizer1.Add( self.m_panel1, 0, wx.EXPAND|wx.ALL, 3 ) m_sdbSizer1 = wx.StdDialogButtonSizer() self.m_sdbSizer1OK = wx.Button( self, wx.ID_OK ) @@ -76,7 +88,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 @@ -93,96 +105,64 @@ class LeftTree(CT.CustomTreeCtrl): self.styles = treestyles self.item = None - il = wx.ImageList(16, 16) - -# for items in ArtIDs[1:-1]: -# bmp = wx.ArtProvider_GetBitmap(eval(items), wx.ART_TOOLBAR, (16, 16)) -# il.Add(bmp) - -# smileidx = il.Add(images.Smiles.GetBitmap()) -# numicons = il.GetImageCount() - - self.AssignImageList(il) + self.il = wx.ImageList(16, 16) + self.ild = {} + imgtextroot = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'textroot.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['alceste'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'reinert.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['corpus'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'textcorpus.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['wordcloud'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'wordcloud.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['stat'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'stats.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['simitxt'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'simitxt.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['clustersimitxt'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'clustersimitxt.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['clustercloud'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'clustercloud.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.ild['spec'] = self.il.Add(wx.Image(os.path.join(self.parent.images_path,'spec.png'), wx.BITMAP_TYPE_PNG).Scale(16,16).ConvertToBitmap()) + self.SetImageList(self.il) + self.count = 0 self.log = log self.history = parent.history self.h = self.history.history 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'Corpus texte') + self.SetPyData(self.textroot, {'uuid': 'textroot'}) + self.SetItemImage(self.textroot, imgtextroot, CT.TreeItemIcon_Normal) + self.SetItemImage(self.textroot, imgtextroot, CT.TreeItemIcon_Expanded) + + for corpus in reversed(self.h) : + child = self.AppendItem(self.textroot, corpus['corpus_name']) + self.SetPyData(child, corpus) + 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) + if y['type'] in self.ild : + img = self.ild[y['type']] + else : + img = 24 + self.SetItemImage(last, img, CT.TreeItemIcon_Normal) + self.SetItemImage(last, 13, CT.TreeItemIcon_Expanded) + + self.matroot = self.AppendItem(self.root, u'Matrices') + self.SetPyData(self.matroot, {'uuid': 'matroot'}) + self.SetItemImage(self.matroot, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(self.matroot, 13, CT.TreeItemIcon_Expanded) + + for matrix in self.history.matrix : + last = self.AppendItem(self.matroot, matrix['name']) + self.SetPyData(last, matrix) + self.SetItemImage(last, 24, CT.TreeItemIcon_Normal) + self.SetItemImage(last, 13, CT.TreeItemIcon_Expanded) - #textctrl = wx.TextCtrl(self, -1, "I Am A Simple\nMultiline wx.TexCtrl", style=wx.TE_MULTILINE) - #self.gauge = wx.Gauge(self, -1, 50, style=wx.GA_HORIZONTAL|wx.GA_SMOOTH) - #self.gauge.SetValue(0) - #combobox = wx.ComboBox(self, -1, choices=["That", "Was", "A", "Nice", "Holyday!"], style=wx.CB_READONLY|wx.CB_DROPDOWN) - - #textctrl.Bind(wx.EVT_CHAR, self.OnTextCtrl) - #combobox.Bind(wx.EVT_COMBOBOX, self.OnComboBox) - #lenArtIds = len(ArtIDs) - 2 - for x in range(len(self.history.corpora)) : - if 'corpus_name' in self.h[self.history.order[x]] : - key = 'corpus_name' - else : - key = 'name' - child = self.AppendItem(self.root, self.h[self.history.order[x]][key]) - #if x == 1: - # child = self.AppendItem(self.root, "Item %d" % x + "\nHello World\nHappy wxPython-ing!") - # self.SetItemBold(child, True) - #else: - # child = self.AppendItem(self.root, "Item %d" % x) - self.SetPyData(child, self.h[self.history.order[x]]) - self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) - self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) - - #if random.randint(0, 3) == 0: - # self.SetItemLeftImage(child, random.randint(0, lenArtIds)) - - #for y in range(5): - # if y == 0 and x == 1: - # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y)), ct_type=2, wnd=self.gauge) - # elif y == 1 and x == 2: - # last = self.AppendItem(child, "Item %d-%s" % (x, chr(ord("a")+y)), ct_type=1, wnd=textctrl) - # if random.randint(0, 3) == 1: - # self.SetItem3State(last, True) - # - # elif 2 < y < 4: - # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y))) - # elif y == 4 and x == 1: - # last = self.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y)), wnd=combobox) - # else: - if 'corpus_name' in self.h[self.history.order[x]] : - if 'analyses' in self.h[self.history.order[x]] : - for y in self.h[self.history.order[x]]['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) - - # if random.randint(0, 3) == 0: - # self.SetItemLeftImage(last, random.randint(0, lenArtIds)) - - #for z in range(len(self.history[x]) - 1): - -# if z > 2: -# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z), ct_type=0) -# #if random.randint(0, 3) == 1: -# # self.SetItem3State(item, True) -# elif 0 < z <= 2: -# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z), ct_type=0) -# elif z == 0: -# item = self.AppendItem(last, "item %d-%s-%d" % (x, chr(ord("a")+y), z)) -# #self.SetItemHyperText(item, True) -# self.SetPyData(item, None) -# self.SetItemImage(item, 28, CT.TreeItemIcon_Normal) -# self.SetItemImage(item, 28, CT.TreeItemIcon_Selected) - - # if random.randint(0, 3) == 0: - # self.SetItemLeftImage(item, random.randint(0, lenArtIds)) self.Bind(wx.EVT_LEFT_DCLICK, self.OnLeftDClick) #self.Bind(wx.EVT_IDLE, self.OnIdle) @@ -201,8 +181,8 @@ class LeftTree(CT.CustomTreeCtrl): mainframe = wx.GetTopLevelParent(self) if not hasattr(mainframe, "leftpanel"): - self.Bind(CT.EVT_TREE_ITEM_EXPANDED, self.OnItemExpanded) - self.Bind(CT.EVT_TREE_ITEM_COLLAPSED, self.OnItemCollapsed) + #self.Bind(CT.EVT_TREE_ITEM_EXPANDED, self.OnItemExpanded) + #self.Bind(CT.EVT_TREE_ITEM_COLLAPSED, self.OnItemCollapsed) self.Bind(CT.EVT_TREE_SEL_CHANGED, self.OnSelChanged) self.Bind(CT.EVT_TREE_SEL_CHANGING, self.OnSelChanging) self.Bind(wx.EVT_RIGHT_DOWN, self.OnRightDown) @@ -294,7 +274,7 @@ class LeftTree(CT.CustomTreeCtrl): self.CloseItem(child, uuid) child, cookie = self.GetNextChild(itemParent, cookie) - def GiveFocus(self, itemParent = None, uuid = None) : + def GiveFocus(self, itemParent = None, uuid = None, bold = False) : if itemParent is None : itemParent = self.root child, cookie = self.GetFirstChild(itemParent) @@ -302,9 +282,24 @@ class LeftTree(CT.CustomTreeCtrl): pydata = self.GetPyData(child) if pydata['uuid'] == uuid : self.SelectItem(child) - break + if bold : + self.SetItemBold(child, True) + return + self.GiveFocus(child, uuid, bold) + child, cookie = self.GetNextChild(itemParent, cookie) + + def IsInTree(self, itemParent = None, uuid = None) : + if itemParent is None : + itemParent = self.root + child, cookie = self.GetFirstChild(itemParent) + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + return True self.GiveFocus(child, uuid) child, cookie = self.GetNextChild(itemParent, cookie) + return False + def OnRightDown(self, event): @@ -353,6 +348,7 @@ class LeftTree(CT.CustomTreeCtrl): itemtype = self.GetItemType(item) text = self.GetItemText(item) pydata = self.GetPyData(item) + self.pydata = pydata self.current = item self.itemdict = {"ishtml": ishtml, "back": back, "fore": fore, "isbold": isbold, @@ -360,72 +356,227 @@ 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") + if not item in [self.textroot, self.matroot] : + menu = wx.Menu() + info = menu.Append(wx.ID_ANY, "Informations") 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) - - 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() - - def getcorpus(self, itemdict): - if itemdict['pydata']['uuid'] in self.parent.history.openedcorpus : - return copycorpus(self.parent.history.openedcorpus[itemdict['pydata']['uuid']]) + + if 'corpus_name' in pydata : + stat = menu.Append(wx.ID_ANY, _(u"Statistics").decode('utf8')) + spec = menu.Append(wx.ID_ANY, _(u"Specificities and CA").decode('utf8')) + classification = wx.Menu() + alceste = classification.Append(wx.ID_ANY, _(u"Reinert method").decode('utf8')) + #pam = classification.Append(wx.ID_ANY, u"Par matrice des distances") + menu.AppendMenu(-1, _(u"Clustering").decode('utf8'), classification) + simi = menu.Append(wx.ID_ANY, _(u"Similarities analysis").decode('utf8')) + wdc = menu.Append(wx.ID_ANY, _(u"Wordcloud").decode('utf8')) + 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"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')) + export_corpus = menu.Append(wx.ID_ANY, _(u"Export corpora").decode('utf8')) + colored = menu.Append(wx.ID_ANY, _(u"Colored corpora").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')) + 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.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) + 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) == 'gnepamatrix' 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) + self.Bind(wx.EVT_MENU, self.OpenAntipro, antipro) + + + itemdelete = menu.Append(wx.ID_ANY, _(u"Delete from history").decode('utf8')) + #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() + + def getcorpus(self): + if self.pydata['uuid'] in self.parent.history.openedcorpus : + return 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) else : - return Corpus(self.parent, parametres = DoConf(itemdict['pydata']['ira']).getoptions('corpus'), read = True) + cuuid = self.pydata['corpus'] + if cuuid in self.parent.history.openedcorpus : + return 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) def OnSpec(self, evt) : - self.parent.OnTextSpec(evt, self.getcorpus(self.itemdict)) + self.parent.OnTextSpec(evt, self.getcorpus()) def OnStat(self, evt) : - self.parent.OnTextStat(evt, self.getcorpus(self.itemdict)) + self.parent.OnTextStat(evt, self.getcorpus()) def OnAlceste(self, evt) : - self.parent.OnTextAlceste(evt, self.getcorpus(self.itemdict)) + self.parent.OnTextAlceste(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(self.itemdict)) + self.parent.OnSimiTxt(evt, self.getcorpus()) def OnWordCloud(self, evt) : - self.parent.OnWordCloud(evt, self.getcorpus(self.itemdict)) + self.parent.OnWordCloud(evt, self.getcorpus()) + + def OnProfSR(self, evt) : + ProfileSegment(self.parent, self.page.dictpathout, self.page.parametres, self.page.corpus) + + def OnProfGram(self, evt) : + ProfilType(self.parent, self.page.corpus, self.page.parametres) + + def OnExportCorpus(self, evt) : + dial = PrefExport(self, self.parent) + dial.fbb.SetValue(os.path.join(os.path.dirname(self.page.dictpathout['ira']), 'export_corpus.txt')) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + if dial.radio_type.GetSelection() == 0 : alc = True + else : alc = False + if dial.radio_lem.GetSelection() == 0 : lem = True + else : lem = False + 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.CenterOnParent() + dlg.ShowModal() + dlg.Destroy() + + def OnColored(self, evt) : + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.html', 'title': _(u"Colored corpora").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() + 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 = ' !\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.NO_DEFAULT | wx.ICON_QUESTION) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_YES : + webbrowser.open(fileout) + dlg.Destroy() + + def OnNavig(self, evt): + if 'FrameSearch' not in dir(self.page) : + 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': _(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() + if res == wx.ID_OK : + fileout = dial.fbb.GetValue() + dial.Destroy() + self.page.corpus.get_stat_by_cluster(fileout) + msg = u"Fini !" + dlg = wx.MessageDialog(self.parent, msg, _(u"Clusters statistics").decode('utf8'), wx.OK | wx.NO_DEFAULT | wx.ICON_INFORMATION) + dlg.CenterOnParent() + if dlg.ShowModal() == wx.ID_OK : + dlg.Destroy() + + def OpenAntipro(self, evt) : + find = False + for i in range(0, self.page.TabChdSim.GetPageCount()) : + page = self.page.TabChdSim.GetPage(i) + if self.page.TabChdSim.GetPageText(i) == _(u"Antiprofiles").decode('utf8') : + self.page.TabChdSim.SetSelection(i) + find = True + break + if not find : + open_antiprofil(self.page, self.page.dictpathout['ANTIPRO_OUT'], self.parent.syscoding) + self.page.TabChdSim.SetSelection(self.page.TabChdSim.GetPageCount() - 1) + + def OnRapport(self, evt) : + dial = PrefSimpleFile(self, self.parent, **{'mask' : '*.txt', 'title': _(u"Report").decode('utf8')}) + dial.fbb.SetValue(self.page.dictpathout['rapport']) + dial.CenterOnParent() + res = dial.ShowModal() + if res == wx.ID_OK : + fileout = dial.fbb.GetValue() + dial.Destroy() + 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"Report").decode('utf8'), wx.OK | wx.NO_DEFAULT | 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 OnItemBackground(self, event): @@ -540,6 +691,7 @@ class LeftTree(CT.CustomTreeCtrl): itemtype = "RadioButton" dlg = InfoDialog(self, itemtext, parametres) + dlg.CenterOnParent() dlg.ShowModal() dlg.Destroy() @@ -548,7 +700,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() @@ -558,9 +710,9 @@ class LeftTree(CT.CustomTreeCtrl): pydata = self.itemdict['pydata'] if 'corpus_name' in pydata : - self.history.delete(pydata['uuid'], True) + self.history.delete(pydata, True) else : - self.history.delete(pydata['uuid']) + self.history.delete(pydata) self.DeleteChildren(self.current) self.Delete(self.current) self.current = None @@ -579,33 +731,45 @@ class LeftTree(CT.CustomTreeCtrl): dlg.Destroy() def AddAnalyse(self, parametres, itemParent = None, bold = True) : - uuid = parametres['corpus'] - if itemParent is None : - itemParent = self.root - child, cookie = self.GetFirstChild(itemParent) - corpus = None - while child : - pydata = self.GetPyData(child) - if pydata['uuid'] == uuid : - corpus = child - break - self.GiveFocus(child, uuid) - child, cookie = self.GetNextChild(itemParent, cookie) - #item = self.AppendItem(child, parametres['name']) - if corpus is not None : - item = self.AppendItem(corpus, parametres['name']) + uuid = parametres.get('corpus', None) + if uuid is not None : + if itemParent is None : + itemParent = self.textroot + child, cookie = self.GetFirstChild(itemParent) + corpus = None + while child : + pydata = self.GetPyData(child) + if pydata['uuid'] == uuid : + corpus = child + break + self.GiveFocus(child, uuid) + child, cookie = self.GetNextChild(itemParent, cookie) + #item = self.AppendItem(child, parametres['name']) + print corpus + if corpus is not None : + item = self.AppendItem(corpus, parametres['name']) + else : + 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) - 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) def OnItemAppend(self, item): - child = self.AppendItem(self.root, item['corpus_name']) + child = self.InsertItem(self.textroot, 0, item['corpus_name']) self.SetPyData(child, item) self.history.addtab(item) - self.SetItemImage(child, 24, CT.TreeItemIcon_Normal) + if item['type'] in self.ild : + img = self.ild[item['type']] + else : + img = 24 + self.SetItemImage(child, img, CT.TreeItemIcon_Normal) self.SetItemImage(child, 13, CT.TreeItemIcon_Expanded) self.SetItemBold(child, True) @@ -655,20 +819,26 @@ class LeftTree(CT.CustomTreeCtrl): def OnLeftDClick(self, event): - pt = event.GetPosition() item, flags = self.HitTest(pt) - pydata = self.GetPyData(item) - if pydata['uuid'] in self.parent.history.opened : - for i in range(self.parent.nb.GetPageCount()) : - page = self.parent.nb.GetPage(i) - if 'parametres' in dir(page) : - if page.parametres['uuid'] == pydata['uuid'] : - self.parent.nb.SetSelection(i) - break - else : - OpenAnalyse(self.parent, pydata) - self.SetItemBold(item, True) + if item is not None : + pydata = self.GetPyData(item) + if pydata['uuid'] in self.parent.history.opened : + for i in range(self.parent.nb.GetPageCount()) : + page = self.parent.nb.GetPage(i) + if 'parametres' in dir(page) : + if page.parametres['uuid'] == pydata['uuid'] : + self.parent.nb.SetSelection(i) + break + elif pydata['uuid'] in ['textroot', 'matroot'] : + pass + else : + busy = wx.BusyInfo(_("Please wait..."), self.parent) + wx.SafeYield() + OpenAnalyse(self.parent, pydata) + del busy + self.SetItemBold(item, True) + self.OnSelChanged(pydata = pydata) #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") @@ -714,26 +884,21 @@ class LeftTree(CT.CustomTreeCtrl): event.Skip() - def OnSelChanged(self, event): - item = event.GetItem() - pydata = self.GetPyData(item) + def OnSelChanged(self, event = None, pydata = None): + if event is not None : + item = event.GetItem() + pydata = self.GetPyData(item) if pydata is not None : + self.pydata = pydata if pydata['uuid'] in self.parent.history.opened : for i in range(self.parent.nb.GetPageCount()) : - page = self.parent.nb.GetPage(i) - if 'parametres' in dir(page) : - if page.parametres['uuid'] == pydata['uuid'] : + self.page = self.parent.nb.GetPage(i) + if 'parametres' in dir(self.page) : + if self.page.parametres['uuid'] == pydata['uuid'] : self.parent.nb.SetSelection(i) break - - #self.item = event.GetItem() - #if self.item: - # self. - #self.log.info("OnSelChanged: %s" % self.GetItemText(self.item)) - # if wx.Platform == '__WXMSW__': - # self.log.info(", BoundingRect: %s" % self.GetBoundingRect(self.item, True) + "\n") - # pass - event.Skip() + if event is not None : + event.Skip() def OnSelChanging(self, event): @@ -746,7 +911,7 @@ class LeftTree(CT.CustomTreeCtrl): olditemtext = "None" else: olditemtext = self.GetItemText(olditem) - self.log.info("OnSelChanging: From %s" % olditemtext + " To %s" % self.GetItemText(item) + "\n") + #self.log.info("OnSelChanging: From %s" % olditemtext + " To %s" % self.GetItemText(item) + "\n") event.Skip()