0027478: Configuration - avoid inclusion of Xlib.h within Graphic3d_GraphicDriver.hxx
[occt.git] / src / Graphic3d / Graphic3d_GraphicDriver.hxx
CommitLineData
42cf5bc1 1// Created on: 1997-01-28
2// Created by: CAL
3// Copyright (c) 1997-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _Graphic3d_GraphicDriver_HeaderFile
18#define _Graphic3d_GraphicDriver_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_Integer.hxx>
42cf5bc1 24#include <Standard_Boolean.hxx>
25#include <MMgt_TShared.hxx>
26#include <Graphic3d_CView.hxx>
27#include <Graphic3d_CStructure.hxx>
28#include <Aspect_GradientFillMethod.hxx>
29#include <Standard_CString.hxx>
30#include <Aspect_FillMethod.hxx>
42cf5bc1 31#include <Standard_Size.hxx>
32#include <Quantity_NameOfColor.hxx>
33#include <Standard_Real.hxx>
34#include <Aspect_TypeOfTriedronPosition.hxx>
35#include <Aspect_TypeOfTriedronEcho.hxx>
36#include <Graphic3d_GraduatedTrihedron.hxx>
37#include <Graphic3d_Vec3.hxx>
38#include <Standard_ShortReal.hxx>
39#include <Standard_Address.hxx>
42cf5bc1 40#include <Image_PixMap.hxx>
41#include <Graphic3d_BufferType.hxx>
016e5959 42#include <Aspect_GenId.hxx>
42cf5bc1 43#include <Aspect_Handle.hxx>
44#include <Aspect_PrintAlgo.hxx>
45#include <Graphic3d_ExportFormat.hxx>
46#include <Graphic3d_SortType.hxx>
47#include <Graphic3d_ZLayerId.hxx>
48#include <Graphic3d_ZLayerSettings.hxx>
49#include <Graphic3d_CLight.hxx>
50#include <TColStd_Array2OfReal.hxx>
c357e426 51#include <TColStd_SequenceOfInteger.hxx>
52
5950d781 53class Aspect_DisplayConnection;
c357e426 54class Graphic3d_CView;
55class Graphic3d_GraphicDriver;
42cf5bc1 56class Graphic3d_TransformError;
57class Graphic3d_Structure;
58class Graphic3d_StructureManager;
c357e426 59class Graphic3d_ViewManager;
42cf5bc1 60class Quantity_Color;
61class TCollection_AsciiString;
62
42cf5bc1 63DEFINE_STANDARD_HANDLE(Graphic3d_GraphicDriver, MMgt_TShared)
64
65//! This class allows the definition of a graphic driver
66//! for 3d interface (currently only OpenGl driver is used).
67class Graphic3d_GraphicDriver : public MMgt_TShared
68{
69
70public:
71
72
73 //! call_togl_inquirelight
c357e426 74 virtual Standard_Integer InquireLightLimit() = 0;
42cf5bc1 75
76 //! call_togl_inquireplane
c357e426 77 virtual Standard_Integer InquirePlaneLimit() = 0;
42cf5bc1 78
79 //! call_togl_inquireview
c357e426 80 virtual Standard_Integer InquireViewLimit() = 0;
42cf5bc1 81
82 //! Creates new empty graphic structure
c357e426 83 virtual Handle(Graphic3d_CStructure) CreateStructure (const Handle(Graphic3d_StructureManager)& theManager) = 0;
42cf5bc1 84
c357e426 85 //! Removes structure from graphic driver and releases its resources.
86 virtual void RemoveStructure (Handle(Graphic3d_CStructure)& theCStructure) = 0;
42cf5bc1 87
c357e426 88 //! Creates new view for this graphic driver.
89 virtual Handle(Graphic3d_CView) CreateView (const Handle(Graphic3d_StructureManager)& theMgr) = 0;
42cf5bc1 90
c357e426 91 //! Removes view from graphic driver and releases its resources.
92 virtual void RemoveView (const Handle(Graphic3d_CView)& theView) = 0;
62e1beed 93
42cf5bc1 94 //! enables/disables usage of OpenGL vertex buffer arrays while drawing primitiev arrays
c357e426 95 virtual void EnableVBO (const Standard_Boolean status) = 0;
42cf5bc1 96
97 //! Returns information about GPU memory usage.
c357e426 98 virtual Standard_Boolean MemoryInfo (Standard_Size& theFreeBytes, TCollection_AsciiString& theInfo) const = 0;
42cf5bc1 99
c357e426 100 virtual Standard_ShortReal DefaultTextHeight() const = 0;
42cf5bc1 101
4b1c8733 102 //! Computes text width.
103 virtual void TextSize (const Handle(Graphic3d_CView)& theView,
104 const Standard_CString theText,
105 const Standard_ShortReal theHeight,
106 Standard_ShortReal& theWidth,
107 Standard_ShortReal& theAscent,
108 Standard_ShortReal& theDescent) const = 0;
42cf5bc1 109
42cf5bc1 110 //! Add a new top-level z layer with ID <theLayerId> for
111 //! the view. Z layers allow drawing structures in higher layers
112 //! in foreground of structures in lower layers. To add a structure
113 //! to desired layer on display it is necessary to set the layer
114 //! ID for the structure.
c357e426 115 virtual void AddZLayer (const Graphic3d_ZLayerId theLayerId) = 0;
42cf5bc1 116
c357e426 117 //! Removes Z layer. All structures displayed at the moment in layer will be displayed in
118 //! default layer (the bottom-level z layer). By default, there are always default
119 //! bottom-level layer that can't be removed. The passed theLayerId should be not less than 0
120 //! (reserved for default layers that can not be removed).
121 virtual void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) = 0;
122
123 //! Returns list of Z layers defined for the graphical driver.
124 virtual void ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const = 0;
125
126 //! Sets the settings for a single Z layer.
127 virtual void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) = 0;
128
129 //! Returns the settings of a single Z layer.
130 virtual Graphic3d_ZLayerSettings ZLayerSettings (const Graphic3d_ZLayerId theLayerId) = 0;
131
132 //! Returns view associated with the window if it is exists and is activated.
133 //! Returns Standard_True if the view associated to the window exists.
134 virtual Standard_Boolean ViewExists (const Handle(Aspect_Window)& theWindow, Handle(Graphic3d_CView)& theView) = 0;
42cf5bc1 135
42cf5bc1 136 //! returns Handle to display connection
137 Standard_EXPORT const Handle(Aspect_DisplayConnection)& GetDisplayConnection() const;
138
139 Standard_EXPORT Standard_Boolean IsDeviceLost() const;
140
141 Standard_EXPORT void ResetDeviceLostFlag();
142
016e5959 143 //! Returns a new identification number for a new structure.
144 Standard_EXPORT Standard_Integer NewIdentification();
145
146 //! Frees the identifier of a structure.
147 Standard_EXPORT void RemoveIdentification(const Standard_Integer theId);
148
92efcf78 149 DEFINE_STANDARD_RTTIEXT(Graphic3d_GraphicDriver,MMgt_TShared)
42cf5bc1 150
151protected:
152
153
c357e426 154 //! Initializes the Driver
42cf5bc1 155 Standard_EXPORT Graphic3d_GraphicDriver(const Handle(Aspect_DisplayConnection)& theDisp);
156
42cf5bc1 157 Handle(Aspect_DisplayConnection) myDisplayConnection;
158 Standard_Boolean myDeviceLostFlag;
159
016e5959 160 Aspect_GenId myStructGenId;
161
42cf5bc1 162
163private:
164
165
166
167
168};
169
170
171
172
173
174
175
176#endif // _Graphic3d_GraphicDriver_HeaderFile