2 # -*- coding: utf-8 -*-
3 # Copyright (C) 2007-2013 EDF R&D
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 from determine import monEnvQT5
24 from PyQt5.QtWidgets import QLabel, QFrame
25 from PyQt5.QtCore import QEvent
27 from PyQt4.QtGui import *
28 from PyQt4.QtCore import *
29 from Extensions.i18n import tr
31 #from Extensions.i18n import tr
33 class MonLabelClic(QLabel) :
35 def __init__(self,parent):
36 QLabel.__init__(self,parent)
37 # Pas propre mais impossible de faire fonctionner isinstance sur Groupe, MonWidgetCommande
38 # PNPNPN ? a ameliorer
39 if isinstance (parent,QFrame):
40 parent=parent.parent()
44 def event(self,event) :
45 if event.type() == QEvent.MouseButtonRelease:
46 self.texte=self.text()
47 self.parent.traiteClicSurLabel(self.texte)
48 return QLabel.event(self,event)