0026734: Visualization, TKOpenGl - drop outdated UserDraw interfaces
[occt.git] / src / OpenGl / OpenGl_Group.hxx
CommitLineData
b311480e 1// Created on: 2011-08-01
2// Created by: Sergey ZERCHANINOV
973c2be1 3// Copyright (c) 2011-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
2166f0fa
SK
16#ifndef _OpenGl_Group_Header
17#define _OpenGl_Group_Header
18
19#include <InterfaceGraphic_Graphic3d.hxx>
b64d84be 20#include <Graphic3d_Group.hxx>
21#include <Graphic3d_Structure.hxx>
2166f0fa 22
b64d84be 23#include <NCollection_List.hxx>
2166f0fa
SK
24#include <OpenGl_AspectLine.hxx>
25#include <OpenGl_AspectFace.hxx>
26#include <OpenGl_AspectMarker.hxx>
27#include <OpenGl_AspectText.hxx>
b64d84be 28#include <OpenGl_Element.hxx>
2166f0fa 29
4269bd1b 30class OpenGl_Group;
e276548b 31class OpenGl_Structure;
4269bd1b 32
2166f0fa
SK
33struct OpenGl_ElementNode
34{
5322131b 35 OpenGl_Element* elem;
36 OpenGl_ElementNode* next;
1c35b92f 37 DEFINE_STANDARD_ALLOC
2166f0fa
SK
38};
39
b64d84be 40//! Implementation of low-level graphic group.
41class OpenGl_Group : public Graphic3d_Group
2166f0fa 42{
5e27df78 43public:
44
b64d84be 45 //! Create empty group.
46 //! Will throw exception if not created by OpenGl_Structure.
47 Standard_EXPORT OpenGl_Group (const Handle(Graphic3d_Structure)& theStruct);
48
49 Standard_EXPORT virtual void Clear (const Standard_Boolean theToUpdateStructureMgr);
50
51 //! Update line aspect
52 Standard_EXPORT virtual void UpdateAspectLine (const Standard_Boolean theIsGlobal);
53
54 //! Update fill aspect
55 Standard_EXPORT virtual void UpdateAspectFace (const Standard_Boolean theIsGlobal);
56
57 //! Update marker aspect
58 Standard_EXPORT virtual void UpdateAspectMarker (const Standard_Boolean theIsGlobal);
59
60 //! Update text aspect
61 Standard_EXPORT virtual void UpdateAspectText (const Standard_Boolean theIsGlobal);
2166f0fa 62
b64d84be 63 //! Add primitive array element
871fa103 64 Standard_EXPORT virtual void AddPrimitiveArray (const Graphic3d_TypeOfPrimitiveArray theType,
65 const Handle(Graphic3d_IndexBuffer)& theIndices,
66 const Handle(Graphic3d_Buffer)& theAttribs,
67 const Handle(Graphic3d_BoundBuffer)& theBounds,
68 const Standard_Boolean theToEvalMinMax);
2166f0fa 69
b64d84be 70 //! Add text element
71 Standard_EXPORT virtual void Text (const Standard_CString theTextUtf,
72 const Graphic3d_Vertex& thePoint,
73 const Standard_Real theHeight,
74 const Quantity_PlaneAngle theAngle,
75 const Graphic3d_TextPath theTp,
76 const Graphic3d_HorizontalTextAlignment theHta,
77 const Graphic3d_VerticalTextAlignment theVta,
78 const Standard_Boolean theToEvalMinMax);
2166f0fa 79
ce01ec26 80 //! Add text element in 3D space.
81 Standard_EXPORT virtual void Text (const Standard_CString theTextUtf,
82 const gp_Ax2& theOrientation,
83 const Standard_Real theHeight,
84 const Quantity_PlaneAngle theAngle,
85 const Graphic3d_TextPath theTp,
86 const Graphic3d_HorizontalTextAlignment theHTA,
87 const Graphic3d_VerticalTextAlignment theVTA,
88 const Standard_Boolean theToEvalMinMax) Standard_OVERRIDE;
89
b64d84be 90 //! Add flipping element
91 Standard_EXPORT virtual void SetFlippingOptions (const Standard_Boolean theIsEnabled,
92 const gp_Ax2& theRefPlane);
93
94 //! Add stencil test element
95 Standard_EXPORT virtual void SetStencilTestOptions (const Standard_Boolean theIsEnabled);
96
97public:
98
99 OpenGl_Structure* GlStruct() const { return (OpenGl_Structure* )(myStructure->CStructure().operator->()); }
100
101 Standard_EXPORT void AddElement (OpenGl_Element* theElem);
102
103 Standard_EXPORT virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const;
104 Standard_EXPORT virtual void Release (const Handle(OpenGl_Context)& theGlCtx);
2166f0fa 105
e276548b 106 //! Returns first OpenGL element node of the group.
107 const OpenGl_ElementNode* FirstNode() const { return myFirst; }
108
109 //! Returns OpenGL face aspect.
110 const OpenGl_AspectFace* AspectFace() const { return myAspectFace; }
111
e276548b 112 //! Is the group ray-tracable (contains ray-tracable elements)?
113 Standard_Boolean IsRaytracable() const { return myIsRaytracable; }
114
b64d84be 115 //! Accessor to line aspect (to be removed)
116 CALL_DEF_CONTEXTLINE& ChangeContextLine() { return ContextLine; }
e276548b 117
5e27df78 118protected:
2166f0fa 119
b64d84be 120 Standard_EXPORT virtual ~OpenGl_Group();
5e27df78 121
122protected:
2166f0fa 123
e276548b 124 OpenGl_AspectLine* myAspectLine;
125 OpenGl_AspectFace* myAspectFace;
126 OpenGl_AspectMarker* myAspectMarker;
127 OpenGl_AspectText* myAspectText;
128
129 OpenGl_ElementNode* myFirst;
130 OpenGl_ElementNode* myLast;
5322131b 131
b64d84be 132 Standard_Boolean myIsRaytracable;
5e27df78 133
134public:
2166f0fa 135
ec357c5c 136 DEFINE_STANDARD_RTTI(OpenGl_Group, Graphic3d_Group) // Type definition
5e27df78 137
2166f0fa
SK
138};
139
b64d84be 140DEFINE_STANDARD_HANDLE(OpenGl_Group, Graphic3d_Group)
141
142#endif // _OpenGl_Group_Header