Salome HOME
b9ab2058af997167a0267aaca05e82fe21b98e81
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_SalomeTools.hxx
1 // Copyright (C) 2009-2023  CEA, EDF
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 #ifndef _HEXABLOCKGUI_SALOMETOOLS_HXX_
21 #define _HEXABLOCKGUI_SALOMETOOLS_HXX_
22
23 #include "HEXABLOCKGUI_Export.hxx"
24
25 #include <SalomeApp_Application.h>
26 #include <SALOME_Actor.h>
27 #include <SALOME_ListIO.hxx>
28 #include <AIS_InteractiveObject.hxx>
29 #include <AIS_InteractiveContext.hxx>
30 #include <SelectMgr_IndexedMapOfOwner.hxx>
31 #include <SALOME_Actor.h>
32 #include <SVTK_ViewWindow.h>
33
34 #include <gp_Pnt.hxx>
35 #include <TopoDS_Shape.hxx>
36 #include <TopoDS_Vertex.hxx>
37
38 namespace HEXABLOCK
39 {
40   namespace GUI
41   {
42
43 HEXABLOCK_EXPORT  SALOME_Actor* findActorByEntry( SVTK_ViewWindow *theVtkViewWindow, const char* theEntry );
44   _PTR(Study)   getStudy();
45
46 HEXABLOCK_EXPORT int GetNameOfSelectedElements( SVTK_ViewWindow *theWindow,/* SVTK_Selector* theSelector,*/
47                                  const Handle(SALOME_InteractiveObject)& theIO,
48                                  QString& theName );
49
50 HEXABLOCK_EXPORT std::string shape2string( const TopoDS_Shape& aShape );
51
52 HEXABLOCK_EXPORT void getEntityOwners( const Handle(AIS_InteractiveObject)& theObj,
53                                const Handle(AIS_InteractiveContext)& theIC,
54                                SelectMgr_IndexedMapOfOwner& theMap );
55
56 HEXABLOCK_EXPORT void indicesToOwners( const TColStd_IndexedMapOfInteger& aIndexMap,
57                                const TopoDS_Shape& aMainShape,
58                                const SelectMgr_IndexedMapOfOwner& anAllMap,
59                                SelectMgr_IndexedMapOfOwner& aToHiliteMap );
60
61 HEXABLOCK_EXPORT TopoDS_Shape getSubShape(const TopoDS_Shape& theShape, const int theIndex);
62 HEXABLOCK_EXPORT int getSubId(const TopoDS_Shape& theShape, const TopoDS_Shape& theSubShape);
63
64 HEXABLOCK_EXPORT Standard_Boolean getExtremaSolution(const gp_Pnt& theInitPnt,
65                                                                           const TopoDS_Shape& theRefShape,
66                                                                           gp_Pnt& thePnt);
67
68 HEXABLOCK_EXPORT TopoDS_Vertex makePoint(const double x, const double y, const double z);
69
70 HEXABLOCK_EXPORT TopoDS_Vertex makePointWithReference(const TopoDS_Shape& point, const double dx,
71                                                            const double dy,
72                                                            const double dz);
73
74 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurve(const TopoDS_Shape& edge, const double param);
75
76 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurveByLength(const TopoDS_Shape& edge, const TopoDS_Shape& point, const double length);
77
78 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnCurveByCoord(const TopoDS_Shape& edge, const double x, const double y, const double z);
79
80   TopoDS_Vertex makePointOnLinesIntersection(const TopoDS_Shape& line1, const TopoDS_Shape& line2);
81
82 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnSurface(const TopoDS_Shape& face, const double param_u, const double param_v);
83
84 HEXABLOCK_EXPORT TopoDS_Vertex makePointOnSurfaceByCoord(const TopoDS_Shape& face, const double x, const double y, const double z);
85
86   }
87 }
88
89 #endif