1 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
22 // File : SALOME_Session.idl
23 // Author : Paul RASCLE, EDF
26 #include "SALOME_Component.idl"
27 /*! \defgroup Kernel SALOME KERNEL module
32 This package contains interfaces used for management of the session in %SALOME application.
36 /*! \brief State of the session
38 This enumeration contains values defining the state of the session
41 enum SessionState {asleep, running} ;
43 /*! \brief %Session State and Statistics
46 This struct contains a field list with general information about the session
51 /*! \brief State of the session
54 * -# asleep : no running study
55 * -# running : one or more running studies
58 /*! Number of running studies
60 short runningStudies ;
61 /*! It is True if GUI is active in the session
65 /*! \brief Interface of the session
67 The %session Server launches and stops GUI (Graphical User Interface).
68 The %session can be active without GUI (It can contain one or more running studies)
74 This exception is raised when trying to stop the %session with active GUI
76 exception GUIActive {} ;
78 This exception is raised when trying to stop the %session with a number of running studies.
80 exception RunningStudies {} ;
83 Launches GUI in the session
86 Engines::Component GetVisuGen();
89 Stops the %Session (It must be idle)
91 void StopSession() raises(GUIActive, RunningStudies) ;
96 StatSession GetStatSession() ;
98 Determines whether the server has already been loaded or not.