Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / pyqt / gui / sessions.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 import sys
20 import omniORB
21 from omniORB import CORBA
22 import CosNaming
23
24 import Item
25 import CONNECTOR
26
27 class Sessions(Item.Item):
28   def __init__(self,port):
29     Item.Item.__init__(self)
30     self.label="Sessions"
31     self.orb=CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
32     self.port=port
33
34   def getChildren(self):
35     sublist=[]
36     port=self.port
37     while 1:
38       port=port+1
39       try:
40         session=Session(self,self.orb,port)
41         sublist.append(session)
42       except:
43         #traceback.print_exc()
44         break
45     return sublist
46
47   def selected(self):
48     if not self.emitting:
49       self.emitting=1
50       CONNECTOR.Emit(self,"selected",self)
51       self.emitting=0
52
53   def getIconName(self):
54     return "folder"
55
56   def isExpandable(self):
57     return True
58
59 class Session(Item.Item):
60   def __init__(self,root,orb,port):
61     Item.Item.__init__(self)
62     self.root=root
63     self.port=port
64     self.addr="corbaname::localhost:%d/NameService" % port
65     obj=orb.string_to_object(self.addr)
66     context=obj._narrow(CosNaming.NamingContext)
67     self.label="Session on port: %d" % port
68
69   def selected(self):
70     if not self.emitting:
71       self.emitting=1
72       CONNECTOR.Emit(self.root,"selected",self)
73       self.emitting=0
74