MainFrm.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

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