Salome HOME
Correction of the path to XML file.
[modules/gui.git] / src / SALOME_SWIG / SALOMEGUI_Swig.hxx
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
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. 
10 // 
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. 
15 // 
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 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOMEGUI_Swig.hxx
25 //  Author : Vadim SANDLER
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef SALOMEGUI_SWIG_HXX
30 #define SALOMEGUI_SWIG_HXX
31
32 class SALOMEGUI_Swig
33 {
34 public:
35   /* construction/destruction */
36   SALOMEGUI_Swig();
37   ~SALOMEGUI_Swig();
38
39   /* check GUI */
40   bool             hasDesktop();
41
42   /* update object browser*/
43   void             updateObjBrowser( bool updateSelection );
44
45   /* get active study */
46   int              getActiveStudyId();
47   const char*      getActiveStudyName();
48
49   /* selection processing */
50   int              SelectedCount();
51   const char*      getSelected(int i);
52   void             AddIObject( const char *Entry );
53   void             RemoveIObject( const char *Entry );
54   void             ClearIObjects();
55
56   /* display/erase */           
57   void             Display( const char *Entry );
58   void             DisplayOnly( const char *Entry );
59   void             Erase( const char *Entry );
60   void             DisplayAll();
61   void             EraseAll();
62   bool             IsInCurrentView( const char *Entry );
63
64   /* get component name/username */
65   const char*      getComponentName( const char* ComponentUserName );
66   const char*      getComponentUserName( const char* ComponentName );
67 };
68
69 #endif // SALOMEGUI_SWIG_HXX