Version: 9.16.0
CurveCreator_Displayer.hxx
Go to the documentation of this file.
1// Copyright (C) 2013-2026 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#ifndef CURVECREATOR_DISPLAYER_H
21#define CURVECREATOR_DISPLAYER_H
22
24
25#include <AIS_InteractiveObject.hxx>
26#include <AIS_InteractiveContext.hxx>
27
28#include <vector>
29
31{
32typedef std::vector<Handle_AIS_InteractiveObject> AISObjectsList;
33
34public:
35 CurveCreator_Displayer( Handle(AIS_InteractiveContext) theContext,
36 const int theZLayer = -1 );
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
51protected:
52 Quantity_Color getActiveColor( bool isHL );
53
54private:
55 Handle(AIS_InteractiveContext) myContext;
58};
59
60#endif
Handle(TColStd_HSequenceOfTransient) AdvancedEngine_IOperations
Create a T-shape object with specified caracteristics for the main and the incident pipes (radius,...
Definition: AdvancedEngine_IOperations.cxx:1907
#define CURVECREATOR_EXPORT
Definition: CurveCreator_Macro.hxx:41
Definition: CurveCreator_Displayer.hxx:31
int myZLayer
Definition: CurveCreator_Displayer.hxx:57
std::vector< Handle_AIS_InteractiveObject > AISObjectsList
Definition: CurveCreator_Displayer.hxx:32
Handle(AIS_InteractiveContext) getContext()
Definition: CurveCreator_Displayer.hxx:44
Handle(AIS_InteractiveContext) myContext
AISObjectsList myObjects
Definition: CurveCreator_Displayer.hxx:56