/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2006.12.02 * ³» ¿ë : Ž»ö±â À©µµ¿ì * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "ExplorerFileTreeCtrl.h" /// Ž»ö±â À©µµ¿ì class cExplorerWindow : public CView { protected: cExplorerWindow(); DECLARE_DYNCREATE(cExplorerWindow) public: virtual void OnDraw(CDC* dc); virtual BOOL PreCreateWindow(CREATESTRUCT& cs); virtual void OnInitialUpdate(); public: virtual ~cExplorerWindow(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: afx_msg int OnCreate(LPCREATESTRUCT cs); afx_msg void OnSize(UINT type, int cx, int cy); afx_msg void OnSetFocus(CWnd* poldWnd); DECLARE_MESSAGE_MAP() private: /// ÆÄÀÏ Æ®¸® cExplorerFileTreeCtrl mFileTree; };