/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2006.12.03 * ³» ¿ë : Ž»ö±â À©µµ¿ì¿¡ µé¾î°¡´Â ÆÄÀÏ Æ®¸® ÄÁÆ®·Ñ * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "UI/FileTreeCtrl.h" /// Ž»ö±â ÆÄÀÏ Æ®¸® ÄÁÆ®·Ñ class cExplorerFileTreeCtrl : public cFileTreeCtrl { public: cExplorerFileTreeCtrl(); virtual ~cExplorerFileTreeCtrl(); protected: /// ÆË¾÷ ¸Þ´º¸¦ ¶ç¿ò virtual void PopMenu( CPoint point ); protected: DECLARE_MESSAGE_MAP() afx_msg void OnLoadProject(); afx_msg void OnCreateObject(); afx_msg void OnSelectObject(); afx_msg void OnCreateSound(); afx_msg void OnOpenTerrain(); afx_msg void OnOpenScene(); afx_msg void OnAddScene(); afx_msg void OnOpenSound(); afx_msg void OnOpenNaviMesh(); afx_msg void OnOpenNaviField(); afx_msg void OnLoadAreaGroup(); afx_msg void OnLoadOscr(); afx_msg void OnLoadTerrainTexture(); afx_msg void OnImportHeightMap(); afx_msg void OnImportAlphaMap(); afx_msg void OnImportColorMap(); };