Salome HOME
16bedf620084622f5ab2ffe40cd50b16fdc76cc9
[modules/yacs.git] / src / pyqt / gui / browser_catalog.py
1 #  Copyright (C) 2006-2008  CEA/DEN, 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 from qt import *
20 import browser
21 import cataitems
22
23 class Browser(browser.Browser):
24   def init(self):
25     self.setStretchFactor(self.hSplitter,10)
26     row2=QHBox(self)
27     but1=QPushButton( "Add node", row2 )
28     but1.setFixedSize( but1.sizeHint())
29     self.connect( but1, SIGNAL("clicked()"), self.handleBut1 )
30
31   def handleBut1(self):
32     print "handleBut1",self.selected
33     if hasattr(self.selected,"addNode"):
34       self.selected.addNode(self.appli)
35     return
36
37   def setCata(self,cata):
38     self.rootItem=cataitems.Cata(cata)
39     self.objectBrowser.additem(self.rootItem)
40     self.boxManager.setRootItem(self.rootItem)
41