1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // SALOME Session : implementation of Session.idl
23 // File : Session_Session_i.hxx
24 // Author : Paul RASCLE, EDF
28 #ifndef _SESSION_SESSION_I_HXX_
29 #define _SESSION_SESSION_I_HXX_
31 #include "SALOME_Session.hxx"
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SALOME_Component)
35 #include CORBA_SERVER_HEADER(SALOME_Session)
36 class SALOME_NamingService;
41 class SESSION_EXPORT SALOME_Session_i: public virtual POA_SALOME::Session,
42 public virtual PortableServer::ServantBase
45 SALOME_Session_i(int argc,
48 PortableServer::POA_ptr poa,
50 QWaitCondition* GUILauncher);
53 //! Launch Graphical User Interface
56 //! Return VISU component
57 Engines::Component_ptr GetComponent(const char* theLibraryName);
59 //! Stop the Session (must be idle): kill servant & server
63 SALOME::StatSession GetStatSession();
65 //! Register the servant to Naming Service
68 CORBA::Long GetActiveStudyId();
73 //! Restors a visual state of the study at theSavePoint
74 bool restoreVisualState(CORBA::Long theSavePoint);
76 //! Emit a qt signal from the session GUI desktop window.
77 void emitMessage(const char* theMessage);
78 void emitMessageOneWay(const char* theMessage);
82 //! Naming service interface
83 SALOME_NamingService *_NS;
87 CORBA::Boolean _isGUI ;
89 QWaitCondition* _GUILauncher;
92 PortableServer::POA_var _poa;