mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Graphic3d_Camera::TransformMatrices redundant NCollection_Handle usage has been replaced with validity flags. Graphic3d_TransModeFlags now defined as enumeration, not integer bit flags. Graphic3d_TMF_PanPers and Graphic3d_TMF_FullPers have been removed. Graphic3d_TMF_ZoomRotatePers has been introduced. Graphic3d_TransformPers is now inherits Standard_Transient. Graphic3d_TransformPers now defines dedicated constructors for 3D persistence (zoom / rotate) and 2D persistence (2d / trihedron). 2D persistence now supports dedicated values for X and Y offsets. The corner is now specified by enumeration Aspect_TypeOfTriedronPosition instead of indirect interpretation of anchor point values. Fixed handling of Graphic3d_TMF_ZoomRotatePers (combination of Graphic3d_TMF_RotatePers + Graphic3d_TMF_ZoomPers). PrsMgr_PresentableObject, Graphic3d_CStructure now hold Handle(Graphic3d_TransformPers) instead of a value. Method ::SetTransformPersistence(), ::TransformPersistence() now works with Handle(Graphic3d_TransformPers). Old methods have been marked deprecated.
80 lines
2.3 KiB
C++
Executable File
80 lines
2.3 KiB
C++
Executable File
// OCC_BaseView.cpp: implementation of the OCC_BaseView class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include <stdafx.h>
|
|
#include "OCC_BaseView.h"
|
|
|
|
//=======================================================================
|
|
//function : Constructor
|
|
//purpose :
|
|
//=======================================================================
|
|
OCC_BaseView::OCC_BaseView()
|
|
: myXmin (0),
|
|
myYmin (0),
|
|
myXmax (0),
|
|
myYmax (0),
|
|
myCurZoom (0.0),
|
|
myRect (new AIS_RubberBand (Quantity_Color(Quantity_NOC_WHITE), Aspect_TOL_SOLID, 1.0) )
|
|
{
|
|
myRect->SetTransformPersistence (new Graphic3d_TransformPers (Graphic3d_TMF_2d, Aspect_TOTP_LEFT_LOWER));
|
|
if (myRect->ZLayer() != Graphic3d_ZLayerId_TopOSD)
|
|
{
|
|
myRect->SetZLayer (Graphic3d_ZLayerId_TopOSD);
|
|
}
|
|
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Destructor
|
|
//purpose :
|
|
//=======================================================================
|
|
OCC_BaseView::~OCC_BaseView()
|
|
{
|
|
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : GetDocument
|
|
//purpose :
|
|
//=======================================================================
|
|
OCC_BaseDoc* OCC_BaseView::GetDocument() // non-debug version is inline
|
|
{
|
|
return (OCC_BaseDoc*)m_pDocument;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : drawRectangle
|
|
//purpose :
|
|
//=======================================================================
|
|
void OCC_BaseView::drawRectangle (const Standard_Integer theMinX,
|
|
const Standard_Integer theMinY,
|
|
const Standard_Integer theMaxX,
|
|
const Standard_Integer theMaxY,
|
|
const Handle(AIS_InteractiveContext)& theContext,
|
|
const Standard_Boolean toDraw)
|
|
{
|
|
if (toDraw)
|
|
{
|
|
CRect aRect;
|
|
GetWindowRect(aRect);
|
|
myRect->SetRectangle (theMinX, aRect.Height() - theMinY, theMaxX, aRect.Height() - theMaxY);
|
|
|
|
if (!theContext->IsDisplayed (myRect))
|
|
{
|
|
theContext->Display (myRect, Standard_False);
|
|
}
|
|
else
|
|
{
|
|
theContext->Redisplay (myRect, Standard_False);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
theContext->Remove (myRect, Standard_False);
|
|
}
|
|
|
|
theContext->CurrentViewer()->RedrawImmediate();
|
|
}
|
|
|