mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-09-22 11:47:55 +00:00
copied Revit 2024 SDK
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
#pragma once
|
||||
#include "afxdialogex.h"
|
||||
#include "astprofilecontrol.h"
|
||||
#include "boltstandards.h"
|
||||
|
||||
// NativeClipAnglePage dialog
|
||||
|
||||
class NativeClipAnglePage : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(NativeClipAnglePage)
|
||||
private:
|
||||
SampleClipAngle* m_pCurRule;
|
||||
static CWnd* m_pWnd;
|
||||
CAstProfileControl m_Profile;
|
||||
CBoltStandards m_Bolts;
|
||||
bool m_bIsInitialising;
|
||||
|
||||
public:
|
||||
NativeClipAnglePage(CWnd* pParent = nullptr); // standard constructor
|
||||
virtual ~NativeClipAnglePage();
|
||||
|
||||
void setJoint(SampleClipAngle* pVal);
|
||||
|
||||
static CWnd* GetParentWindow();
|
||||
|
||||
// Dialog Data
|
||||
//#ifdef AFX_DESIGN_TIME
|
||||
enum { IDD = IDD_CLIPANGLEDIALOG};
|
||||
//#endif
|
||||
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||||
|
||||
afx_msg void OnProfileChanged();
|
||||
afx_msg void OnBoltsChanged();
|
||||
DECLARE_EVENTSINK_MAP()
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
Reference in New Issue
Block a user