/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2007.01.11 * ³» ¿ë : ÁöÇü ÀÓÆ÷Æ® ´ÙÀ̾ó·Î±× * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once /// ÁöÇü ÀÓÆ÷Æ® ´ÙÀ̾ó·Î±× class cTerrainImportDialog : public CDialog { DECLARE_DYNAMIC(cTerrainImportDialog) public: cTerrainImportDialog( CWnd* parent = 0 ); virtual ~cTerrainImportDialog(); float GetScale() const; protected: void DoDataExchange( CDataExchange* dx ); BOOL OnInitDialog(); virtual void OnOK() {} virtual void OnCancel() {} protected: DECLARE_MESSAGE_MAP() afx_msg void OnHScroll( UINT code, UINT pos, CScrollBar* bar ); private: /// ¹èÀ² [1, 100] float mScale; }; inline float cTerrainImportDialog::GetScale() const { return mScale; }