mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +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:
29
samples/mfc/standard/Common/LengthParamsEdgePage.h
Normal file
29
samples/mfc/standard/Common/LengthParamsEdgePage.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "res\OCC_Resource.h"
|
||||
#include <Standard_Macro.hxx>
|
||||
#include <AIS_InteractiveContext.hxx>
|
||||
|
||||
// CLengthParamsEdgePage dialog
|
||||
|
||||
class CLengthParamsEdgePage : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(CLengthParamsEdgePage)
|
||||
|
||||
public:
|
||||
CLengthParamsEdgePage(Handle(AIS_InteractiveContext) theAISContext,CWnd* pParent = NULL); // standard constructor
|
||||
virtual ~CLengthParamsEdgePage();
|
||||
CButton* GetButton();
|
||||
|
||||
// Dialog Data
|
||||
enum { IDD = IDD_LengthParamsEdgePage };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
private:
|
||||
Handle(AIS_InteractiveContext) myAISContext;
|
||||
public:
|
||||
afx_msg void OnBnClickedChooseEdgeBtn();
|
||||
};
|
Reference in New Issue
Block a user