Salome HOME
optim eciture
[tools/eficas.git] / InterfaceQT4 / monWidgetFact.py
1 # Copyright (C) 2007-2013   EDF R&D
2 #
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.
7 #
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.
12 #
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
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 # Modules Python
20 from __future__ import absolute_import
21 from PyQt5.QtCore import Qt, QTimer
22 from PyQt5.QtWidgets import QWidget
23
24
25 # Modules Eficas
26
27 from .groupe import Groupe
28 from desWidgetFact import Ui_WidgetFact
29 from Extensions.i18n import tr
30 # Import des panels
31
32 class MonWidgetFact(Ui_WidgetFact,Groupe):
33   """
34   """
35   def __init__(self,node,editor,parentQt,definition, obj, niveau,commande):
36       #print "fact : ",node.item.nom
37       Groupe.__init__(self,node,editor,parentQt, definition,obj,niveau,commande)
38       labeltext,fonte,couleur = self.node.item.GetLabelText()
39       self.GroupBox.setText(tr(labeltext))
40       self.GroupBox.setTextInteractionFlags(Qt.TextSelectableByMouse)
41       self.parentQt.commandesLayout.insertWidget(-1,self)
42       self.doitAfficherOptionnel=False
43
44   def enterEvent(self,event):
45       #print "enterEvent ", self.node.item.GetLabelText()[0]
46       self.doitAfficherOptionnel=True
47       QWidget.enterEvent(self,event)
48       QTimer.singleShot(500, self.delayAffiche)
49
50   def leaveEvent(self,event):
51       #print "leaveEvent", self.node.item.GetLabelText()[0]
52       self.doitAfficherOptionnel=False
53       QWidget.leaveEvent(self,event)
54
55   def delayAffiche(self):
56       #print "delayAffiche, self.doitAfficherOptionnel = ", self.doitAfficherOptionnel
57       if self.doitAfficherOptionnel and self.editor.code != "CARMELCND" :self.afficheOptionnel()