MainFrm.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__F51D87F2_7144_425D_9E7E_71E084FE67EB__INCLUDED_)
  5. #define AFX_MAINFRM_H__F51D87F2_7144_425D_9E7E_71E084FE67EB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GuiMDIFrame.h"
  10. #include "GuiContainer.h"
  11. #include "GuiPanelAccess.h"
  12. class CMainFrame : public CGuiMDIFrame
  13. {
  14. DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16. CMainFrame();
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMainFrame)
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CMainFrame();
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:  // control bar embedded members
  34. CGuiContainer m_ctSolution;
  35. CTreeCtrl   m_tree;
  36. CGuiPanelAccess m_panAcc;
  37. CGuiToolButton  m_btn1;
  38. CGuiToolButton  m_btn2;
  39. CGuiToolButton  m_btn3;
  40. CGuiToolButton  m_btn4;
  41. CGuiToolButton  m_btn5;
  42. CGuiToolButton  m_btn6;
  43. CGuiToolButton  m_btn7;
  44. CGuiToolButton  m_btn8;
  45. CGuiToolButton  m_btn9;
  46. CGuiToolButton  m_btn10;
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CMainFrame)
  50. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  51. afx_msg void OnDrop();
  52. afx_msg void OnPanels();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. void OnTest();
  56. };
  57. /////////////////////////////////////////////////////////////////////////////
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_MAINFRM_H__F51D87F2_7144_425D_9E7E_71E084FE67EB__INCLUDED_)