Salome HOME
pb d accent. on les enleve en français
[tools/eficas.git] / InterfaceQT4 / monLabelClic.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 # Copyright (C) 2007-2013   EDF R&D
4 #
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.
9 #
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.
14 #
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
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21
22 import re
23 from PyQt4.QtGui import *
24 from PyQt4.QtCore import *
25 #from Extensions.i18n import tr
26
27 class MonLabelClic(QLabel) :
28
29      def __init__(self,parent):
30         QLabel.__init__(self,parent)
31         # Pas propre mais impossible de faire fonctionner isinstance sur Groupe, MonWidgetCommande 
32         # PNPNPN ? a ameliorer
33         if isinstance (parent,QFrame):
34            parent=parent.parent()
35         self.parent=parent
36
37
38      def event(self,event) :
39          if event.type() == QEvent.MouseButtonRelease:
40             self.texte=self.text()
41             self.parent.traiteClicSurLabel(self.texte)
42          return QLabel.event(self,event)
43