From: Pascale Noyret Date: Wed, 13 Oct 2010 10:40:34 +0000 (+0000) Subject: enleve la dépendance à VISU X-Git-Tag: V5_1_5~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c5d528f804d460a10ca4b7b29159c12234e82e19;p=tools%2Feficas.git enleve la dépendance à VISU --- diff --git a/src/EFICASGUI/eficasSalome.py b/src/EFICASGUI/eficasSalome.py index 3857853f..db184cd5 100644 --- a/src/EFICASGUI/eficasSalome.py +++ b/src/EFICASGUI/eficasSalome.py @@ -471,26 +471,16 @@ class MyEficas( qtEficas.Appli ): visualisation de nom shapeName dans salome """ ok, msgError = False, '' - try: - import VISU - import visu_gui - currentViewType = None - visu_gui.myVisu.SetCurrentStudy(self.editor.study) - m = visu_gui.myVisu.GetViewManager() - v = m.GetCurrentView() - #print v - if v: - currentViewType = v.GetType() - atLeastOneStudy = self.editor.study - if not atLeastOneStudy: - return ok, msgError + #try: + if 1 : + import SalomePyQt + sgPyQt = SalomePyQt.SalomePyQt() + myActiveView=sgPyQt.getActiveView() + if myActiveView < 0 : + return ok, 'pas de vue courante' - #salome.sg.EraseAll() - #print 'displayShapestrGeomShape shapeName -> ', shapeName - #print currentViewType - - if currentViewType == VISU.TVIEW3D: # maillage - #print 'Vue courante = VTK : affichage groupe de maille' + currentViewType=sgPyQt.getViewType(myActiveView) + if str(currentViewType) != "OCCViewer" : # maillage ok, msgError = self.displayMeshGroups(shapeName) else: #geometrie current_color = COLORS[ self.icolor % LEN_COLORS ] @@ -501,7 +491,8 @@ class MyEficas( qtEficas.Appli ): self.icolor = self.icolor + 1 if not ok: msgError = "Impossible d afficher "+shapeName - except: + #except: + else : logger.debug(50*'=') return ok, msgError