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/pastespecialdlg.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'hammer/pastespecialdlg.h')
| -rw-r--r-- | hammer/pastespecialdlg.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/hammer/pastespecialdlg.h b/hammer/pastespecialdlg.h new file mode 100644 index 0000000..cda8e8c --- /dev/null +++ b/hammer/pastespecialdlg.h @@ -0,0 +1,55 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#include "BoundBox.h" + +class CPasteSpecialDlg : public CDialog +{ +// Construction +public: + CPasteSpecialDlg(CWnd* pParent, BoundBox*); + void SaveToIni(); + +// Dialog Data + //{{AFX_DATA(CPasteSpecialDlg) + enum { IDD = IDD_WC_PASTESPECIAL }; + int m_iCopies; + BOOL m_bGroup; + int m_iOffsetX; + int m_iOffsetY; + int m_iOffsetZ; + float m_fRotateX; + float m_fRotateZ; + float m_fRotateY; + BOOL m_bCenterOriginal; + BOOL m_bMakeEntityNamesUnique; + BOOL m_bAddPrefix; + CString m_strPrefix; + //}}AFX_DATA + + BoundBox ObjectsBox; + +// Overrides + // ClassWizard generated virtual function overrides + //{{AFX_VIRTUAL(CPasteSpecialDlg) + protected: + virtual BOOL OnInitDialog(); + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support + //}}AFX_VIRTUAL + +// Implementation +protected: + void GetOffset(int iAxis, int iEditCtrl); + + // Generated message map functions + //{{AFX_MSG(CPasteSpecialDlg) + afx_msg void OnGetoffsetx(); + afx_msg void OnGetoffsety(); + afx_msg void OnGetoffsetz(); + afx_msg void OnCheckUncheckAddPrefix(); + //}}AFX_MSG + DECLARE_MESSAGE_MAP() +}; |