diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /hammer/archdlg.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'hammer/archdlg.h')
| -rw-r--r-- | hammer/archdlg.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/hammer/archdlg.h b/hammer/archdlg.h new file mode 100644 index 0000000..9b17e28 --- /dev/null +++ b/hammer/archdlg.h @@ -0,0 +1,75 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= +#if !defined(AFX_ARCHDLG_H__C146AA5D_38FE_11D1_AFC9_0060979D2F4E__INCLUDED_) +#define AFX_ARCHDLG_H__C146AA5D_38FE_11D1_AFC9_0060979D2F4E__INCLUDED_ + +#if _MSC_VER >= 1000 +#pragma once +#endif // _MSC_VER >= 1000 + +#define ARC_MAX_POINTS 4096 + +class CArchDlg : public CDialog +{ +// Construction +public: + CArchDlg(Vector& bmins, Vector& bmaxs, CWnd* pParent = NULL); // standard constructor + ~CArchDlg(); // standard constructor + + void DrawArch(CDC *pDC); + + Vector bmins, bmaxs; + +// Dialog Data + //{{AFX_DATA(CArchDlg) + enum { IDD = IDD_ARCH }; + CSpinButtonCtrl m_cStartAngleSpin; + CSpinButtonCtrl m_cWallWidthSpin; + CEdit m_cWallWidth; + CSpinButtonCtrl m_cSidesSpin; + CEdit m_cSides; + CSpinButtonCtrl m_cArcSpin; + CEdit m_cArc; + CStatic m_cPreview; + int m_iSides; + int m_iWallWidth; + int m_iAddHeight; + float m_fArc; + float m_fAngle; + //}}AFX_DATA + + void SetMaxWallWidth(int iMaxWallWidth) { m_iMaxWallWidth = iMaxWallWidth; } + void SaveValues(); + +// Overrides + // ClassWizard generated virtual function overrides + //{{AFX_VIRTUAL(CArchDlg) + protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support + //}}AFX_VIRTUAL + +// Implementation +protected: + + int m_iMaxWallWidth; + + // Generated message map functions + //{{AFX_MSG(CArchDlg) + afx_msg void OnChangeArc(); + afx_msg void OnCircle(); + afx_msg void OnUpdateSides(); + afx_msg void OnUpdateWallwidth(); + virtual BOOL OnInitDialog(); + afx_msg void OnPaint(); + afx_msg void OnArchPreview(); + //}}AFX_MSG + DECLARE_MESSAGE_MAP() +}; + +//{{AFX_INSERT_LOCATION}} +// Microsoft Developer Studio will insert additional declarations immediately before the previous line. + +#endif // !defined(AFX_ARCHDLG_H__C146AA5D_38FE_11D1_AFC9_0060979D2F4E__INCLUDED_) |