1 # Copyright (C) 2007-2013 EDF R&D
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 from determine import monEnvQT5
24 from PyQt5.QtWidgets import QWidget
26 from PyQt4.QtGui import *
27 from PyQt4.QtCore import *
29 from Extensions.i18n import tr
30 from desWidgetInactif import Ui_WidgetInactif
38 class MonWidgetInactif(QWidget,Ui_WidgetInactif):
41 def __init__(self,node,editor):
42 QWidget.__init__(self,None)
46 from monWidgetOptionnel import MonWidgetOptionnel
47 if self.editor.widgetOptionnel!= None :
48 self.monOptionnel=self.editor.widgetOptionnel
50 self.monOptionnel=MonWidgetOptionnel(self)
51 self.editor.widgetOptionnel=self.monOptionnel
52 self.editor.splitter.addWidget(self.monOptionnel)
53 self.editor.restoreSplitterSizes()
54 self.afficheOptionnel()
56 self.bAvant.clicked.connect(self.afficheAvant)
57 self.bApres.clicked.connect(self.afficheApres)
58 self.bCatalogue.clicked.connect(self.afficheCatalogue)
60 self.connect(self.bAvant,SIGNAL("clicked()"), self.afficheAvant)
61 self.connect(self.bApres,SIGNAL("clicked()"), self.afficheApres)
62 self.connect(self.bCatalogue,SIGNAL("clicked()"), self.afficheCatalogue)
63 self.labelNomCommande.setText(tr(self.node.item.nom))
64 self.labelNomCommande.setEnabled(False)
66 def traiteClicSurLabel(self):
73 def afficheOptionnel(self):
74 # N a pas de parentQt. doit donc etre redefini
76 #print "dans afficheOptionnel", self.monOptionnel
77 # dans le cas ou l insertion n a pas eu leiu (souci d ordre par exemple)
78 #if self.monOptionnel == None : return
79 self.monOptionnel.parentMC=self
80 self.monOptionnel.affiche(liste)
83 def afficheCatalogue(self):
84 if self.editor.widgetOptionnel != None : self.monOptionnel.hide()
85 self.node.tree.racine.affichePanneau()
86 self.node.tree.racine.select()
88 def afficheApres(self):
89 self.node.selectApres()
91 def afficheAvant(self):
92 self.node.selectAvant()