0031456: Visualization - move out Dimensions and Relations from package AIS to PrsDims
[occt.git] / samples / mfc / standard / Common / ParamsFacesPage.h
CommitLineData
60bf98ae 1#pragma once
2
3#include "res\OCC_Resource.h"
4// CParamsFacesPage dialog
5
6class CParamsFacesPage : public CDialog
7{
8 DECLARE_DYNAMIC(CParamsFacesPage)
9private:
10 Handle(AIS_InteractiveContext) myAISContext;
11 bool myIsAngleDimension;
12 TopoDS_Face myFirstFace;
13 TopoDS_Face mySecondFace;
14public:
15 CParamsFacesPage (Handle(AIS_InteractiveContext) theAISContext,
16 bool isAngleDimension = false,
17 CWnd* pParent = NULL); // standard constructor
18
19 virtual ~CParamsFacesPage();
20
21 // Dialog Data
22 enum { IDD = IDD_ParamsFacesPage };
23
24protected:
25 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
26
27 DECLARE_MESSAGE_MAP()
28public:
29 afx_msg void OnBnClickedFacesbtn1();
30 afx_msg void OnBnClickedFacesbtn2();
31};