ChildFrm.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_)
  5. #define AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ChildView.h"
  10. class CChildFrame : public CExtNCW < CMDIChildWnd >
  11. {
  12. DECLARE_DYNCREATE(CChildFrame)
  13. public:
  14. CChildFrame();
  15. // Attributes
  16. public:
  17. private:
  18. HICON m_hChildFrameIcon;
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CChildFrame)
  24. public:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  27. virtual BOOL PreTranslateMessage(MSG* pMsg);
  28. virtual BOOL DestroyWindow();
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. // view for the client area of the frame.
  33. CChildView m_wndView;
  34. virtual ~CChildFrame();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. CExtToolControlBar m_wndToolbar0;
  40. CExtToolControlBar m_wndToolbar1;
  41. CExtControlBar    m_wndResizableBar0;
  42. CExtControlBar    m_wndResizableBar1;
  43. CExtControlBar    m_wndResizableBar2;
  44. CExtWFF < CListBox > m_wndListBox0;
  45. CExtWFF < CListBox > m_wndListBox1;
  46. CExtWFF < CListBox > m_wndListBox2;
  47. private:
  48. CString m_sProfileName;
  49. // Generated message map functions
  50. protected:
  51. //{{AFX_MSG(CChildFrame)
  52. // NOTE - the ClassWizard will add and remove member functions here.
  53. //    DO NOT EDIT what you see in these blocks of generated code!
  54. afx_msg void OnFileClose();
  55. afx_msg void OnSetFocus(CWnd* pOldWnd);
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. //}}AFX_MSG
  58. afx_msg void OnUpdateControlBarMenu(CCmdUI* pCmdUI);
  59. afx_msg BOOL OnBarCheck(UINT nID);
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_)