MainFrm.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:2k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__F66466DD_C4B7_11D2_BF7C_0080C8E05391__INCLUDED_)
  5. #define AFX_MAINFRM_H__F66466DD_C4B7_11D2_BF7C_0080C8E05391__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "SystemImageList.h"
  10. #include "SplitterBar.h"
  11. #include "FileList.h"
  12. class CMainFrame : public CFrameWnd
  13. {
  14. public:
  15. CMainFrame();
  16. protected: 
  17. DECLARE_DYNAMIC(CMainFrame)
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. CSystemImageList* GetImageList();
  23. CFileList* GetLeftPan()
  24. {
  25. return m_pListLeft;
  26. };
  27. CFileList* GetRightPan()
  28. {
  29. return m_pListRight;
  30. };
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CMainFrame)
  34. public:
  35. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CMainFrame();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:  // control bar embedded members
  45. CStatusBar  m_wndStatusBar;
  46. CToolBar    m_wndToolBar;
  47. CReBar      m_wndReBar;
  48. CDialogBar      m_wndDlgBar;
  49. CSystemImageList* m_pImageList;
  50. CSplitterBar* m_pSplit;
  51. CFileList* m_pListLeft;
  52. CFileList* m_pListRight;
  53. // Generated message map functions
  54. protected:
  55. //{{AFX_MSG(CMainFrame)
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnSetFocus(CWnd *pOldWnd);
  58. afx_msg void OnSize(UINT nType, int cx, int cy);
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. inline CSystemImageList* CMainFrame::GetImageList()
  66. {
  67. return m_pImageList;
  68. }
  69. #endif // !defined(AFX_MAINFRM_H__F66466DD_C4B7_11D2_BF7C_0080C8E05391__INCLUDED_)