Salome HOME
Plie/Deplie MT
[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 desWidgetFactHorizon import Ui_WidgetFactHorizon
30 from Extensions.i18n import tr
31 # Import des panels
32
33 class MonWidgetFactCommun(Groupe):
34   """
35   """
36   def __init__(self,node,editor,parentQt,definition, obj, niveau,commande,insertIn=-1):
37       #print "fact : ",node.item.nom
38       Groupe.__init__(self,node,editor,parentQt, definition,obj,niveau,commande)
39       labeltext,fonte,couleur = self.node.item.GetLabelText()
40       self.GroupBox.setText(tr(labeltext))
41       self.GroupBox.setTextInteractionFlags(Qt.TextSelectableByMouse)
42       self.parentQt.commandesLayout.insertWidget(insertIn,self)
43       #else :  self.parentQt.commandesLayout.insertWidget(0,self)
44       self.doitAfficherOptionnel=False
45
46   def enterEvent(self,event):
47       #print "enterEvent ", self.node.item.GetLabelText()[0]
48       self.doitAfficherOptionnel=True
49       QWidget.enterEvent(self,event)
50       QTimer.singleShot(500, self.delayAffiche)
51
52   def leaveEvent(self,event):
53       #print "leaveEvent", self.node.item.GetLabelText()[0]
54       self.doitAfficherOptionnel=False
55       QWidget.leaveEvent(self,event)
56
57   def delayAffiche(self):
58       #print "delayAffiche, self.doitAfficherOptionnel = ", self.doitAfficherOptionnel
59       if self.doitAfficherOptionnel and self.editor.code != "CARMELCND" :self.afficheOptionnel()
60
61 class MonWidgetFact(Ui_WidgetFact,MonWidgetFactCommun):
62   def __init__(self,node,editor,parentQt,definition, obj, niveau,commande,insertIn=True):
63       MonWidgetFactCommun.__init__(self,node,editor,parentQt, definition,obj,niveau,commande,insertIn)
64
65 #class MonWidgetFactHorizontal(Ui_WidgetFactHorizon,MonWidgetFactCommun):
66 #  def __init__(self,node,editor,parentQt,definition, obj, niveau,commande):
67 #      MonWidgetFactCommun.__init__(self,node,editor,parentQt, definition,obj,niveau,commande)