mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Expose interface of OpenGl_View (OpenGL graphics rendering methods) to client code and collecting all high-level API methods of application views in V3d_View class. 1) Exposing interface of OpenGl_View: The OpenGl_View inherits from new class Graphic3d_CView. Graphic3d_CView is an interface class that declares abstract methods for managing displayed structures, display properties and a base layer code that implements computation and management of HLR (or more broadly speaking view-depended) structures. In new implementation it takes place of eliminated Visual3d_View. As before the instance of Graphic3d_CView is still completely managed by V3d_View classes. It can be accessed through V3d_View interface but normally this should not be required as all its methods are completely wrapped. In more details, a concrete specialization of Graphic3d_CView is created and returned by graphical driver on request. Right after creation the views is directly used for setting rendering properties and adding graphical structures to be displayed. The rendering of graphics is possible after mapping a window and activating the view. The direct setting of properties makes obsolete usage of intermediate structures with display parameter like Visual3d_ContextView and etc (the whole package of Visual3d become redundant). 2) Collecting all high-level API methods of application views in V3d package: The patch includes elimination of Visual3d layer. All of its methods that could be previously used by application are now exposed and should be accessed on the level of V3d entities. - Introduced new class Graphic3d_CView. This is a base class for render views. Made possible to specialize concrete instances of the class by graphical driver. - Moved all methods managing rendering views into interface of Graphic3d_CView. The corresponding methods were removed from interface of graphical driver. 3) Eliminated Visual3d package: - Logic of managing display of structures was put from Visual3d_ViewManager into Graphic3d_StructureManager. - Removed Visual3d_View class. Logic of managing computed structures was put into base layer of Graphi3d_CView. - Removed all intermediate structures for storing view parameters e.g. Visual3d_ContextView. All settings are kept by instances of Graphic3d_CView - Removed Visual3d_Light intermediate class. All light properties are still stored in Graphic3d_CLight structure. The structure is directly access by instance of V3d_Light classes. - Moved all needed enumerations into Graphic3d package. 4) Update package D3DHost to new changes. 5) Update code of OCCT samples to new changes.
225 lines
9.6 KiB
C++
225 lines
9.6 KiB
C++
// Created on: 2011-03-06
|
|
// Created by: Sergey ZERCHANINOV
|
|
// Copyright (c) 2011-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _Graphic3d_GraduatedTrihedron_HeaderFile
|
|
#define _Graphic3d_GraduatedTrihedron_HeaderFile
|
|
|
|
#include <Font_FontAspect.hxx>
|
|
#include <NCollection_Array1.hxx>
|
|
#include <Quantity_Color.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TCollection_ExtendedString.hxx>
|
|
|
|
class Graphic3d_CView;
|
|
|
|
//! Class that stores style for one graduated trihedron axis such as colors, lengths and customization flags.
|
|
//! It is used in Graphic3d_GraduatedTrihedron.
|
|
class Graphic3d_AxisAspect
|
|
{
|
|
public:
|
|
|
|
Graphic3d_AxisAspect (const TCollection_ExtendedString theName = "", const Quantity_Color theNameColor = Quantity_NOC_BLACK,
|
|
const Quantity_Color theColor = Quantity_NOC_BLACK,
|
|
const Standard_Integer theValuesOffset = 10, const Standard_Integer theNameOffset = 30,
|
|
const Standard_Integer theTickmarksNumber = 5, const Standard_Integer theTickmarksLength = 10,
|
|
const Standard_Boolean theToDrawName = Standard_True,
|
|
const Standard_Boolean theToDrawValues = Standard_True,
|
|
const Standard_Boolean theToDrawTickmarks = Standard_True)
|
|
: myName (theName),
|
|
myToDrawName (theToDrawName),
|
|
myToDrawTickmarks (theToDrawTickmarks),
|
|
myToDrawValues (theToDrawValues),
|
|
myNameColor (theNameColor),
|
|
myTickmarksNumber (theTickmarksNumber),
|
|
myTickmarksLength (theTickmarksLength),
|
|
myColor (theColor),
|
|
myValuesOffset (theValuesOffset),
|
|
myNameOffset (theNameOffset)
|
|
{ }
|
|
|
|
public:
|
|
|
|
void SetName (const TCollection_ExtendedString& theName) { myName = theName; }
|
|
const TCollection_ExtendedString& Name() const { return myName; }
|
|
|
|
const Standard_Boolean ToDrawName() const { return myToDrawName; }
|
|
void SetDrawName (const Standard_Boolean theToDraw) { myToDrawName = theToDraw; }
|
|
|
|
const Standard_Boolean ToDrawTickmarks() const { return myToDrawTickmarks; }
|
|
void SetDrawTickmarks (const Standard_Boolean theToDraw) { myToDrawTickmarks = theToDraw; }
|
|
|
|
const Standard_Boolean ToDrawValues() const { return myToDrawValues; }
|
|
void SetDrawValues (const Standard_Boolean theToDraw) { myToDrawValues = theToDraw; }
|
|
|
|
const Quantity_Color& NameColor() const { return myNameColor; }
|
|
void SetNameColor (const Quantity_Color& theColor) { myNameColor = theColor; }
|
|
|
|
//! Color of axis and values
|
|
const Quantity_Color& Color() const { return myColor; }
|
|
|
|
//! Sets color of axis and values
|
|
void SetColor (const Quantity_Color& theColor) { myColor = theColor; }
|
|
|
|
const Standard_Integer TickmarksNumber() const { return myTickmarksNumber; }
|
|
void SetTickmarksNumber (const Standard_Integer theValue) { myTickmarksNumber = theValue; }
|
|
|
|
const Standard_Integer TickmarksLength() const { return myTickmarksLength; }
|
|
void SetTickmarksLength (const Standard_Integer theValue) { myTickmarksLength = theValue; }
|
|
|
|
const Standard_Integer ValuesOffset() const { return myValuesOffset; }
|
|
void SetValuesOffset (const Standard_Integer theValue) { myValuesOffset = theValue; }
|
|
|
|
const Standard_Integer NameOffset() const { return myNameOffset; }
|
|
void SetNameOffset (const Standard_Integer theValue) { myNameOffset = theValue; }
|
|
|
|
protected:
|
|
|
|
TCollection_ExtendedString myName;
|
|
|
|
Standard_Boolean myToDrawName;
|
|
Standard_Boolean myToDrawTickmarks;
|
|
Standard_Boolean myToDrawValues;
|
|
|
|
Quantity_Color myNameColor;
|
|
|
|
Standard_Integer myTickmarksNumber; //!< Number of splits along axes
|
|
Standard_Integer myTickmarksLength; //!< Length of tickmarks
|
|
Quantity_Color myColor; //!< Color of axis and values
|
|
|
|
Standard_Integer myValuesOffset; //!< Offset for drawing values
|
|
Standard_Integer myNameOffset; //!< Offset for drawing name of axis
|
|
};
|
|
|
|
//! Defines the class of a graduated trihedron.
|
|
//! It contains main style parameters for implementation of graduated trihedron
|
|
//! @sa OpenGl_GraduatedTrihedron
|
|
class Graphic3d_GraduatedTrihedron
|
|
{
|
|
public:
|
|
|
|
typedef void (*MinMaxValuesCallback) (Graphic3d_CView*);
|
|
|
|
public:
|
|
|
|
//! Default constructor
|
|
//! Constructs the default graduated trihedron with grid, X, Y, Z axes, and tickmarks
|
|
Graphic3d_GraduatedTrihedron (const TCollection_AsciiString& theNamesFont = "Arial",
|
|
const Font_FontAspect& theNamesStyle = Font_FA_Bold, const Standard_Integer theNamesSize = 12,
|
|
const TCollection_AsciiString& theValuesFont = "Arial",
|
|
const Font_FontAspect& theValuesStyle = Font_FA_Regular, const Standard_Integer theValuesSize = 12,
|
|
const Standard_ShortReal theArrowsLength = 30.0f, const Quantity_Color theGridColor = Quantity_NOC_WHITE,
|
|
const Standard_Boolean theToDrawGrid = Standard_True, const Standard_Boolean theToDrawAxes = Standard_True)
|
|
: myNamesFont (theNamesFont),
|
|
myNamesStyle (theNamesStyle),
|
|
myNamesSize (theNamesSize),
|
|
myValuesFont (theValuesFont),
|
|
myValuesStyle (theValuesStyle),
|
|
myValuesSize (theValuesSize),
|
|
myArrowsLength (theArrowsLength),
|
|
myGridColor (theGridColor),
|
|
myToDrawGrid (theToDrawGrid),
|
|
myToDrawAxes (theToDrawAxes),
|
|
myAxes(0, 2)
|
|
{
|
|
myAxes (0) = Graphic3d_AxisAspect ("X", Quantity_NOC_RED, Quantity_NOC_RED);
|
|
myAxes (1) = Graphic3d_AxisAspect ("Y", Quantity_NOC_GREEN, Quantity_NOC_GREEN);
|
|
myAxes (2) = Graphic3d_AxisAspect ("Z", Quantity_NOC_BLUE1, Quantity_NOC_BLUE1);
|
|
PtrView = NULL;
|
|
}
|
|
|
|
public:
|
|
|
|
Graphic3d_AxisAspect& ChangeXAxisAspect() { return myAxes(0); }
|
|
Graphic3d_AxisAspect& ChangeYAxisAspect() { return myAxes(1); }
|
|
Graphic3d_AxisAspect& ChangeZAxisAspect() { return myAxes(2); }
|
|
|
|
Graphic3d_AxisAspect& ChangeAxisAspect (const Standard_Integer theIndex)
|
|
{
|
|
Standard_OutOfRange_Raise_if (theIndex < 0 || theIndex > 2, "Graphic3d_GraduatedTrihedron::ChangeAxisAspect: theIndex is out of bounds [0,2].");
|
|
return myAxes (theIndex);
|
|
}
|
|
|
|
const Graphic3d_AxisAspect& XAxisAspect() const { return myAxes(0); }
|
|
const Graphic3d_AxisAspect& YAxisAspect() const { return myAxes(1); }
|
|
const Graphic3d_AxisAspect& ZAxisAspect() const { return myAxes(2); }
|
|
|
|
const Graphic3d_AxisAspect& AxisAspect (const Standard_Integer theIndex) const
|
|
{
|
|
Standard_OutOfRange_Raise_if (theIndex < 0 || theIndex > 2, "Graphic3d_GraduatedTrihedron::AxisAspect: theIndex is out of bounds [0,2].");
|
|
return myAxes (theIndex);
|
|
}
|
|
|
|
const Standard_ShortReal ArrowsLength() const { return myArrowsLength; }
|
|
void SetArrowsLength (const Standard_ShortReal theValue) { myArrowsLength = theValue; }
|
|
|
|
const Quantity_Color& GridColor() const { return myGridColor; }
|
|
void SetGridColor (const Quantity_Color& theColor) {myGridColor = theColor; }
|
|
|
|
const Standard_Boolean ToDrawGrid() const { return myToDrawGrid; }
|
|
void SetDrawGrid (const Standard_Boolean theToDraw) { myToDrawGrid = theToDraw; }
|
|
|
|
const Standard_Boolean ToDrawAxes() const { return myToDrawAxes; }
|
|
void SetDrawAxes (const Standard_Boolean theToDraw) { myToDrawAxes = theToDraw; }
|
|
|
|
const TCollection_AsciiString& NamesFont() const { return myNamesFont; }
|
|
void SetNamesFont (const TCollection_AsciiString& theFont) { myNamesFont = theFont; }
|
|
|
|
Font_FontAspect NamesFontAspect() const { return myNamesStyle; }
|
|
void SetNamesFontAspect (Font_FontAspect theAspect) { myNamesStyle = theAspect; }
|
|
|
|
const Standard_Integer NamesSize() const { return myNamesSize; }
|
|
void SetNamesSize (const Standard_Integer theValue) { myNamesSize = theValue; }
|
|
|
|
const TCollection_AsciiString& ValuesFont () const { return myValuesFont; }
|
|
void SetValuesFont (const TCollection_AsciiString& theFont) { myValuesFont = theFont; }
|
|
|
|
Font_FontAspect ValuesFontAspect() const { return myValuesStyle; }
|
|
void SetValuesFontAspect (Font_FontAspect theAspect) { myValuesStyle = theAspect; }
|
|
|
|
const Standard_Integer ValuesSize() const { return myValuesSize; }
|
|
void SetValuesSize (const Standard_Integer theValue) { myValuesSize = theValue; }
|
|
|
|
public:
|
|
|
|
MinMaxValuesCallback CubicAxesCallback; //!< Callback function to define boundary box of displayed objects
|
|
Graphic3d_CView* PtrView;
|
|
|
|
protected:
|
|
|
|
TCollection_AsciiString myNamesFont; //!< Font name of names of axes: Courier, Arial, ...
|
|
Font_FontAspect myNamesStyle; //!< Style of names of axes: OSD_FA_Regular, OSD_FA_Bold,..
|
|
Standard_Integer myNamesSize; //!< Size of names of axes: 8, 10,..
|
|
|
|
protected:
|
|
|
|
TCollection_AsciiString myValuesFont; //!< Font name of values: Courier, Arial, ...
|
|
Font_FontAspect myValuesStyle; //!< Style of values: OSD_FA_Regular, OSD_FA_Bold, ...
|
|
Standard_Integer myValuesSize; //!< Size of values: 8, 10, 12, 14, ...
|
|
|
|
protected:
|
|
|
|
Standard_ShortReal myArrowsLength;
|
|
Quantity_Color myGridColor;
|
|
|
|
Standard_Boolean myToDrawGrid;
|
|
Standard_Boolean myToDrawAxes;
|
|
|
|
NCollection_Array1<Graphic3d_AxisAspect> myAxes; //!< X, Y and Z axes parameters
|
|
|
|
};
|
|
#endif // Graphic3d_GraduatedTrihedron_HeaderFile
|