mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
- AIS_InteractiveContext - create new dummy class field to have an empty TopoDS_Shape object. - AIS_Point, PrsMgr_PresentableObject - rename static variables to local function variables. - AIS_Shape, SelectMgr_SelectableObject - remove unused static variables. - Graphic3d_MaterialAspect, V3d_Viewer - make global static variables as constant. - V3d_View - move global variable zRotation to class field. - Move a variable theCurrentSelection as a field of AIS_InteractiveContext and AIS_LocalContext classes. Multiple selection is not used now, so each Context have an own selection. - Move myStructGenId from Graphic3d_StructureManager to Graphic3d_GraphicDriver for identifying the structures in the driver. - Move default variable (no shading light) from static value to the class field of OpenGL_View. Porting note: - Static methods of AIS_Selection is not used now. Methods of AIS_InteractiveContext::InitSelected(),::MoreSelected(),::NextSelected() should be used instead of static methods of AIS_Selection.
115 lines
3.6 KiB
C++
115 lines
3.6 KiB
C++
// LengthParamsEdgePage.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "LengthParamsEdgePage.h"
|
|
#include "DimensionDlg.h"
|
|
|
|
#include <Standard_Macro.hxx>
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <AIS_LocalContext.hxx>
|
|
#include <AIS_LengthDimension.hxx>
|
|
#include <GC_MakePlane.hxx>
|
|
#include <TopExp.hxx>
|
|
|
|
// CLengthParamsEdgePage dialog
|
|
|
|
IMPLEMENT_DYNAMIC(CLengthParamsEdgePage, CDialog)
|
|
|
|
//=======================================================================
|
|
//function : CLengthParamsEdgePage
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
CLengthParamsEdgePage::CLengthParamsEdgePage (Handle(AIS_InteractiveContext) theContext,CWnd* pParent /*=NULL*/)
|
|
: CDialog (CLengthParamsEdgePage::IDD, pParent)
|
|
{
|
|
myAISContext = theContext;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ~CLengthParamsEdgePage
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
CLengthParamsEdgePage::~CLengthParamsEdgePage()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DoDataExchange
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CLengthParamsEdgePage::DoDataExchange (CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP (CLengthParamsEdgePage, CDialog)
|
|
ON_BN_CLICKED (IDC_ChooseEdgeBtn, &CLengthParamsEdgePage::OnBnClickedChooseEdgeBtn)
|
|
END_MESSAGE_MAP()
|
|
|
|
//=======================================================================
|
|
//function : GetButton
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
CButton* CLengthParamsEdgePage::GetButton()
|
|
{
|
|
return (CButton*)GetDlgItem (IDC_ChooseEdgeBtn);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : OnBnClickedChooseEdgeBtn
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CLengthParamsEdgePage::OnBnClickedChooseEdgeBtn()
|
|
{
|
|
myAISContext->LocalContext()->InitSelected();
|
|
|
|
if (!myAISContext->LocalContext()->MoreSelected())
|
|
{
|
|
AfxMessageBox ( _T("Choose the vertex and press the button again"), MB_ICONINFORMATION | MB_OK);
|
|
return;
|
|
}
|
|
|
|
TopoDS_Shape aSelShape = myAISContext->SelectedShape();
|
|
const TopoDS_Edge& anEdge = TopoDS::Edge (aSelShape);
|
|
|
|
myAISContext->LocalContext()->ClearSelected();
|
|
TopoDS_Vertex aFirstVertex, aSecondVertex;
|
|
TopExp::Vertices (TopoDS::Edge (anEdge), aFirstVertex, aSecondVertex);
|
|
|
|
gp_Pnt aP1 = BRep_Tool::Pnt (aFirstVertex);
|
|
gp_Pnt aP2 = BRep_Tool::Pnt (aSecondVertex);
|
|
gp_Pnt aP3 (aP2.X() + 10, aP2.Y() + 10, aP2.Z() + 10);
|
|
|
|
GC_MakePlane aMkPlane (aP1,aP2,aP3);
|
|
Handle(Geom_Plane) aPlane = aMkPlane.Value();
|
|
|
|
CDimensionDlg *aDimDlg = (CDimensionDlg*)(GetParentOwner());
|
|
|
|
Handle(AIS_LengthDimension) aLenDim = new AIS_LengthDimension (TopoDS::Edge (anEdge), aPlane->Pln());
|
|
Handle(Prs3d_DimensionAspect) anAspect = new Prs3d_DimensionAspect();
|
|
anAspect->MakeArrows3d (Standard_False);
|
|
anAspect->MakeText3d (aDimDlg->GetTextType());
|
|
anAspect->TextAspect()->SetHeight (aDimDlg->GetFontHeight());
|
|
anAspect->MakeTextShaded (aDimDlg->IsText3dShaded());
|
|
anAspect->SetCommonColor (aDimDlg->GetDimensionColor());
|
|
anAspect->MakeUnitsDisplayed (aDimDlg->IsUnitsDisplayed());
|
|
if (aDimDlg->IsUnitsDisplayed())
|
|
{
|
|
aLenDim->SetDisplayUnits (aDimDlg->GetUnits());
|
|
}
|
|
|
|
aLenDim->SetDimensionAspect (anAspect);
|
|
aLenDim->SetFlyout (aDimDlg->GetFlyout());
|
|
|
|
myAISContext->CloseAllContexts();
|
|
myAISContext->Display (aLenDim);
|
|
myAISContext->OpenLocalContext();
|
|
myAISContext->ActivateStandardMode(TopAbs_EDGE);
|
|
}
|