mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
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)
This commit is contained in:
27
samples/mfc/standard/Common/RadiusParamsPage.h
Normal file
27
samples/mfc/standard/Common/RadiusParamsPage.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
|
||||
#include "res\OCC_Resource.h"
|
||||
// CRadiusParamsPage dialog
|
||||
|
||||
class CRadiusParamsPage : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(CRadiusParamsPage)
|
||||
private:
|
||||
Handle(AIS_InteractiveContext) myAISContext;
|
||||
Standard_Boolean myIsDiameterDimension;
|
||||
public:
|
||||
CRadiusParamsPage(const Handle(AIS_InteractiveContext)& theAISContext,
|
||||
const Standard_Boolean isDiameterDimension = Standard_False,
|
||||
CWnd* pParent = NULL); // standard constructor
|
||||
virtual ~CRadiusParamsPage();
|
||||
|
||||
// Dialog Data
|
||||
enum { IDD = IDD_RadiusParamsPage };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
afx_msg void OnBnClickedObjectBtn();
|
||||
};
|
||||
Reference in New Issue
Block a user