Salome HOME
36b2b5d59b1b2f69f22ad9e31524e80e4fd4ad61
[modules/geom.git] / src / CurveCreator / CurveCreator_Displayer.hxx
1 // Copyright (C) 2013-2023  CEA/DEN, EDF R&D, 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 #ifndef CURVECREATOR_DISPLAYER_H
21 #define CURVECREATOR_DISPLAYER_H
22
23 #include "CurveCreator_Macro.hxx"
24
25 #include <AIS_InteractiveObject.hxx>
26 #include <AIS_InteractiveContext.hxx>
27
28 #include <vector>
29
30 class CURVECREATOR_EXPORT CurveCreator_Displayer
31 {
32 typedef std::vector<Handle_AIS_InteractiveObject> AISObjectsList;
33
34 public:
35   CurveCreator_Displayer( Handle(AIS_InteractiveContext) theContext,
36                           const int theZLayer = -1 );
37   ~CurveCreator_Displayer(void);
38
39   void display( const Handle(AIS_InteractiveObject)& theObject, bool isUpdate );
40   void eraseAll( bool isUpdate );
41   void erase( const Handle(AIS_InteractiveObject)& theObject, bool isUpdate );
42   void Update();
43
44   Handle(AIS_InteractiveContext) getContext()
45   {
46     return myContext;
47   }
48
49   //void highlight( const AISObjectsList& theObjects, bool isHL );
50
51 protected:
52   Quantity_Color getActiveColor( bool isHL );
53
54 private:
55   Handle(AIS_InteractiveContext) myContext;
56   AISObjectsList                myObjects;
57   int                           myZLayer;
58 };
59
60 #endif