1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/mfc/standard/Common/AngleParamsVerticesPage.h
aba a6eb515f9d 0024133: Development of improvement of dimensions implementation; new length, radius,diameter and angle dimensions.
Some corrections; test cases were added; coding standards in MFC samples & presentations
Request stencil buffer for Linux.
correct test cases; correct compilation errors
compilation warnings (gcc/Linux)
2013-10-31 18:02:17 +04:00

32 lines
833 B
C++

#pragma once
#include "res\OCC_Resource.h"
// CAngleParamsVerticesPage dialog
class CAngleParamsVerticesPage : public CDialog
{
DECLARE_DYNAMIC(CAngleParamsVerticesPage)
private:
Handle(AIS_InteractiveContext) myAISContext;
TopoDS_Vertex myFirstVertex;
TopoDS_Vertex mySecondVertex;
TopoDS_Vertex myThirdVertex;
public:
CAngleParamsVerticesPage(Handle (AIS_InteractiveContext) theAISContext,
CWnd* pParent = NULL); // standard constructor
virtual ~CAngleParamsVerticesPage();
// Dialog Data
enum { IDD = IDD_AngleParamsVerticesPage };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedVertex1Btn();
afx_msg void OnBnClickedVertex2Btn();
afx_msg void OnBnClickedVertex3Btn();
};