/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2008.01.10 * ³» ¿ë : ¸Ê ´ÙÀ̾ó·Î±× * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "Button.h" #include "NumericEdit.h" struct sMapInfo; /// ¸Ê ´ÙÀ̾ó·Î±× class cMapDialog : public CDialog { DECLARE_DYNAMIC(cMapDialog) public: cMapDialog(); ~cMapDialog(); bool IsNaviFieldChecked() const; void SetMapInfo( tMap* mapIdxSet ); protected: virtual void DoDataExchange( CDataExchange* dx ); protected: afx_msg void OnClickedLoad(); afx_msg void OnCheckedButton(); afx_msg void OnSelchangeMapIdx(); afx_msg void OnSelchangeMapDegee(); DECLARE_MESSAGE_MAP() private: cButton mLoadButton; };