Salome HOME
CCAR: merge de la version 1.14 dans la branche principale
[tools/eficas.git] / InterfaceQT / panelsQT.py
1 # -*- coding: utf-8 -*-
2 import string
3 import os
4
5 import traceback
6
7 from qt import *
8 from qtCommun import QTPanel
9 from desInactif import DInactif
10
11
12 SEPARATEUR = '-'*30
13
14       
15 class PanelInactif( QTPanel, DInactif ):   
16     def __init__(self,node,parent=None ):
17         DInactif.__init__(self,parent)
18         QTPanel.__init__(self,node,parent)
19                 
20         
21 class NoPanel( QWidget ):
22     def __init__(self,parent = None,name = None,fl = 0):
23         QWidget.__init__(self,parent,name,fl)
24         self.textLabel = QLabel(self)
25         self.textLabel.setText(QString("PANNEAU A IMPLEMENTER"))
26         self.textLabel.setGeometry(QRect(130,150,219,17))
27         self.resize(QSize(600,480).expandedTo(self.minimumSizeHint()))
28