Salome HOME
8fc43b0e2df5738dc3d7dcbf120e996607e70f56
[samples/light.git] / src / LIGHTGUI / LIGHTGUI_TextPrs.hxx
1 //  LIGHT : sample (no-corba-engine) SALOME module
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 //  Author : Julia DOROVSKIKH
23 //  Date   : 01/01/2005
24 //  $Header$
25
26 #ifndef LIGHTGUI_TEXTPRS_H
27 #define LIGHTGUI_TEXTPRS_H
28
29 #include <AIS_InteractiveObject.hxx>
30 #include <gp_Pnt.hxx>
31 #include <PrsMgr_PresentationManager3d.hxx>
32 #include <Prs3d_Presentation.hxx>
33
34 #include <SelectMgr_Selection.hxx>
35
36 #include <Standard_DefineHandle.hxx>
37
38 class LIGHTGUI_TextPrs: public AIS_InteractiveObject
39 {
40 public:
41   Standard_EXPORT LIGHTGUI_TextPrs(  const char*, const gp_Pnt& );
42   Standard_EXPORT ~LIGHTGUI_TextPrs();
43
44 private:
45   Standard_EXPORT void         Compute( const Handle(PrsMgr_PresentationManager3d)&,
46                                         const Handle(Prs3d_Presentation)&,
47                                         const Standard_Integer = 0 );
48
49   Standard_EXPORT virtual void ComputeSelection( const Handle(SelectMgr_Selection)&,
50                                                  const Standard_Integer );
51
52 private:
53   char*               myString;
54   gp_Pnt             myPos;
55
56 public:
57   DEFINE_STANDARD_RTTI(LIGHTGUI_TextPrs)
58 };
59
60 DEFINE_STANDARD_HANDLE(LIGHTGUI_TextPrs, AIS_InteractiveObject)
61
62 #endif // LIGHTGUI_TEXTPRS_H