mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Create a general draw command 'VRelation' and drop the old 'relation' commands. Add test cases for new draw command "vrelation". Add two new methods: Activate and Deactivate which activate/deactivate the given selection mode for all displayed objects. Eliminate deprecated local context methods in ObjectCommands, QABugs. Eliminate deprecated local context methods in mfc standard sample and qt samples.
146 lines
4.5 KiB
C++
146 lines
4.5 KiB
C++
// LengthParamsVerticesPage.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "LengthParamsVerticesPage.h"
|
|
#include "DimensionDlg.h"
|
|
#include <Standard_Macro.hxx>
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <AIS_LocalContext.hxx>
|
|
#include <AIS_LengthDimension.hxx>
|
|
#include <GC_MakePlane.hxx>
|
|
|
|
|
|
// CLengthParamsVerticesPage dialog
|
|
|
|
IMPLEMENT_DYNAMIC(CLengthParamsVerticesPage, CDialog)
|
|
|
|
//=======================================================================
|
|
//function : CLengthParamsVerticesPage
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
CLengthParamsVerticesPage::CLengthParamsVerticesPage (Handle(AIS_InteractiveContext) theAISContext, CWnd* pParent /*=NULL*/)
|
|
: CDialog (CLengthParamsVerticesPage::IDD, pParent)
|
|
{
|
|
myAISContext = theAISContext;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ~CLengthParamsVerticesPage
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
CLengthParamsVerticesPage::~CLengthParamsVerticesPage()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DoDataExchange
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CLengthParamsVerticesPage::DoDataExchange (CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange (pDX);
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CLengthParamsVerticesPage, CDialog)
|
|
ON_BN_CLICKED(IDC_BUTTON1, &CLengthParamsVerticesPage::OnBnClickedVertex1Btn)
|
|
ON_BN_CLICKED(IDC_BUTTON2, &CLengthParamsVerticesPage::OnBnClickedVertex2Btn)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
//=======================================================================
|
|
//function : OnBnClickedVertex1Btn
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CLengthParamsVerticesPage::OnBnClickedVertex1Btn()
|
|
{
|
|
myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_VERTEX));
|
|
|
|
// Now it's ok, edge selection mode is activated
|
|
// Check if some edge is selected
|
|
myAISContext->InitSelected();
|
|
if (!myAISContext->MoreSelected() ||
|
|
myAISContext->SelectedShape().ShapeType() != TopAbs_VERTEX)
|
|
{
|
|
AfxMessageBox (_T ("Choose the vertex and press the button again"), MB_ICONINFORMATION | MB_OK);
|
|
return;
|
|
}
|
|
|
|
myFirstVertex = TopoDS::Vertex (myAISContext->SelectedShape());
|
|
|
|
myAISContext->ClearSelected();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : OnBnClickedVertex2Btn
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void CLengthParamsVerticesPage::OnBnClickedVertex2Btn()
|
|
{
|
|
myAISContext->InitSelected();
|
|
if (!myAISContext->MoreSelected() ||
|
|
myAISContext->SelectedShape().ShapeType() != TopAbs_VERTEX)
|
|
{
|
|
AfxMessageBox (_T ("Choose the vertex and press the button again"), MB_ICONINFORMATION | MB_OK);
|
|
return;
|
|
}
|
|
|
|
mySecondVertex = TopoDS::Vertex (myAISContext->SelectedShape());
|
|
myAISContext->ClearSelected();
|
|
|
|
//Build dimension here
|
|
gp_Pnt aP1=BRep_Tool::Pnt (myFirstVertex);
|
|
gp_Pnt aP2=BRep_Tool::Pnt (mySecondVertex);
|
|
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*)(this->GetParentOwner());
|
|
|
|
Handle(AIS_LengthDimension) aLenDim = new AIS_LengthDimension (aP1, aP2, 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->MakeUnitsDisplayed (aDimDlg->IsUnitsDisplayed());
|
|
if (aDimDlg->IsUnitsDisplayed())
|
|
{
|
|
aLenDim->SetDisplayUnits (aDimDlg->GetUnits ());
|
|
}
|
|
|
|
aLenDim->SetDimensionAspect (anAspect);
|
|
aLenDim->SetFlyout (aDimDlg->GetFlyout());
|
|
|
|
myAISContext->Display (aLenDim);
|
|
myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_VERTEX));
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : getFirstVertex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopoDS_Vertex& CLengthParamsVerticesPage::getFirstVertex() const
|
|
{
|
|
return myFirstVertex;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : getSecondVertex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopoDS_Vertex& CLengthParamsVerticesPage::getSecondVertex() const
|
|
{
|
|
return mySecondVertex;
|
|
}
|