Version: 9.15.0
SALOME_GuiServices.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2025 CEA, EDF, OPEN CASCADE
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, or (at your option) any later version.
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 
20 // Author: Guillaume Boulant (EDF/R&D)
21 
22 #ifndef __GUI_SERVICES_H__
23 #define __GUI_SERVICES_H__
24 
25 #include <SalomeApp_Application.h>
26 #include <SalomeApp_Study.h>
27 #include <LightApp_SelectionMgr.h>
28 #include <SUIT_ResourceMgr.h>
29 
30 #include "SALOMEconfig.h"
31 #include CORBA_SERVER_HEADER(SALOMEDS)
33 #include <SALOME_KernelServices.hxx>
34 #include "SalomeGuiHelpers.hxx"
35 namespace GUI {
36 
37  // SALOME GUI main services
41 
42  // Helper functions to deal with the study in a GUI context.
43  //
44  // First of all, in a GUI context, there is one of the opened
45  // studies that is considered as active. Please note that the active
46  // study is a GUI concept and it can be obtained only in the
47  // SALOME_SessionServer process, i.e. the process that embeds the
48  // SalomeApp_Application. The concept of active study doesn't make
49  // sense outside of the GUI context.
50  //
51  // The active study is associated with an GUI Objects Browser that
52  // displays a graphical representation of the study. The items that
53  // can be selected in the Objects Browser are name Interactive
54  // Objects (instance of class SALOME_InteractiveObject). To work
55  // with data, we have to retrieve from this Interactive Object (IO)
56  // the underlying Study Object (instance of class SALOMEDS::SObject)
57  // and from this last the data object that can be anything (that
58  // depends of the SALOME module technical choices). In general, on
59  // of the attribute of a SObject is a CORBA servant that handles the
60  // data to work with
61  SALOMEGUIHELPERS_EXPORT SALOMEDS::Study_ptr getStudyServant();
62 
63  // Another way to get the active study (to be converted in
64  // SALOMEDS::Study):
66 
67  SALOMEGUIHELPERS_EXPORT SALOMEDS::SObject_ptr IObjectToSObject(const Handle(SALOME_InteractiveObject)& iobject);
68 
69  template<class TInterface> typename TInterface::_var_type
71  SALOMEDS::SObject_ptr sobject = IObjectToSObject(iobject);
72  return KERNEL::SObjectToInterface<TInterface>(sobject);
73  }
74  // _MEM_: note that template functions have to be declared AND
75  // implemented in the header because they are not compiled in this
76  // library but in every client library that includes this header
77  // file. The effective compilation depends on the particular class
78  // used for TInterface.
79 
80 
81 }
82 
83 #endif // GUI_SERVICES
Handle(TDocStd_Application) CAF_Application
Get OCAF application.
Definition: CAF_Application.cxx:97
#define SALOMEGUIHELPERS_EXPORT
Definition: SalomeGuiHelpers.hxx:33
Definition: LightApp_SelectionMgr.h:53
Definition: SUIT_ResourceMgr.h:31
Application containing SalomeApp module or LightApp module.
Definition: SalomeApp_Application.h:68
Definition: SalomeApp_Study.h:37
Definition: SALOME_GuiServices.cxx:25
LightApp_SelectionMgr * getSelectionManager()
Definition: SALOME_GuiServices.cxx:57
SALOMEDS::Study_ptr getStudyServant()
This returns the current active study if an active study is defined in the SALOME session,...
Definition: SALOME_GuiServices.cxx:75
SalomeApp_Application * getSalomeApplication()
Definition: SALOME_GuiServices.cxx:42
SUIT_ResourceMgr * getResourcesManager()
Definition: SALOME_GuiServices.cxx:64
SALOMEDS::SObject_ptr IObjectToSObject(const Handle(SALOME_InteractiveObject)&iobject)
Definition: SALOME_GuiServices.cxx:90
SalomeApp_Study * getSalomeAppActiveStudy()
Definition: SALOME_GuiServices.cxx:81
TInterface::_var_type IObjectToInterface(const Handle(SALOME_InteractiveObject)&iobject)
Definition: SALOME_GuiServices.hxx:70