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

钩子与API截获

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__F4BEBDBE_CCC8_11D3_A836_00104BA829E5__INCLUDED_)
  5. #define AFX_MAINFRM_H__F4BEBDBE_CCC8_11D3_A836_00104BA829E5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. ///////////////
  10. // Forward declaration of caption class
  11. //
  12. class CMultiLineCaption;
  13. class CMainFrame : public CMDIFrameWnd
  14. {
  15. DECLARE_DYNAMIC(CMainFrame)
  16. public:
  17. CMainFrame();
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:  // control bar embedded members
  35. CStatusBar  m_wndStatusBar;
  36. CToolBar    m_wndToolBar;
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMainFrame)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnEditSetTitle();
  42. afx_msg void OnEditSetActiveFont();
  43. afx_msg void OnEditSetBmpCaption();
  44. afx_msg void OnEditSetGradientCaption();
  45. afx_msg void OnEditSetDefaultBackground();
  46. afx_msg void OnEditSetDefaultActiveColors();
  47. afx_msg void OnEditSetActiveColors();
  48. afx_msg void OnEditSetDefaultInactiveColors();
  49. afx_msg void OnEditSetInactiveColors();
  50. afx_msg void OnEditSetDefaultFonts();
  51. afx_msg void OnEditCaptionMultiline();
  52. afx_msg void OnEditCaptionSingleline();
  53. afx_msg void OnEditSetInactiveFont();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. ////////////////
  57. // Convenient helper that returns the caption object of the
  58. // active MDI child frame
  59. //
  60. CMultiLineCaption& GetActiveMDICaption();
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_MAINFRM_H__F4BEBDBE_CCC8_11D3_A836_00104BA829E5__INCLUDED_)