/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2008.01.10 * ³» ¿ë : Ä«¸Þ¶ó ´ÙÀ̾ó·Î±× * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "Button.h" #include "NumericEdit.h" /// Ä«¸Þ¶ó ´ÙÀ̾ó·Î±× class cCameraDialog : public CDialog { DECLARE_DYNAMIC(cCameraDialog) public: cCameraDialog(); ~cCameraDialog(); protected: virtual void DoDataExchange( CDataExchange* dx ); BOOL OnInitDialog(); protected: afx_msg void OnClickedZoomPersp(); afx_msg void OnClickedZoomOrtho(); afx_msg LRESULT OnChangedFarDist( WPARAM id, LPARAM ); DECLARE_MESSAGE_MAP() private: cButton mZoomPerspButton; cButton mZoomOrthoButton; cNumericEdit mFarDist; };