Salome HOME
Merge from V6_main 01/04/2013
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_SalomeTools.hxx
1 // Copyright (C) 2009-2013  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
20 #ifndef _HEXABLOCKGUI_SALOMETOOLS_HXX_
21 #define _HEXABLOCKGUI_SALOMETOOLS_HXX_
22
23
24 #include <SalomeApp_Application.h>
25 #include <SALOME_Actor.h>
26 #include <SALOME_ListIO.hxx>
27 #include <SALOME_ListIteratorOfListIO.hxx>
28
29
30 #include "GEOM_Client.hxx"
31 // #include "GEOMBase_Helper.h"
32 #include "GEOM_Displayer.h"
33
34
35
36 #include <TopoDS_Shape.hxx>
37 #include <SALOME_Actor.h>
38 #include <SVTK_ViewWindow.h>
39
40
41
42 namespace HEXABLOCK
43 {
44   namespace GUI
45   {
46
47   SALOME_Actor* findActorByEntry( SVTK_ViewWindow *theVtkViewWindow, const char* theEntry );
48   _PTR(Study)   GetActiveStudyDocument();
49
50   CORBA::Object_var corbaObj( _PTR(SObject) theSO );
51
52   CORBA::Object_var corbaObj( const Handle(SALOME_InteractiveObject)& theIO );
53
54   int GetNameOfSelectedElements( SVTK_ViewWindow *theWindow,/* SVTK_Selector* theSelector,*/
55                                  const Handle(SALOME_InteractiveObject)& theIO,
56                                  QString& theName );
57
58   std::string shape2string( const TopoDS_Shape& aShape );
59
60
61   
62   class MyGEOM_Displayer : public GEOM_Displayer
63   {
64     public:
65       MyGEOM_Displayer( SalomeApp_Study* app );
66       virtual ~MyGEOM_Displayer();
67
68
69     SALOME_Prs* BuildPrs( GEOM::GEOM_Object_ptr theObj );
70
71 //   int aPrevDispMode = getDisplayer()->SetDisplayMode( displayMode );
72 //   getDisplayer()->SetToActivate( activate );
73 //   getDisplayer()->SetName( objStr.in() );
74 //   SALOME_Prs* aPrs = getDisplayer()->BuildPrs( object );
75
76
77
78
79   };
80
81
82
83
84
85
86   }
87 }
88
89 #endif