copied Revit 2024 SDK

This commit is contained in:
Jeremy Tammik
2023-04-26 14:47:47 +02:00
parent 2ca39e38fd
commit 4d69f3eea5
425 changed files with 344414 additions and 2296 deletions
@@ -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()
};