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

图形图象

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__E0DA1D88_E308_11D2_9481_000021003EA5__INCLUDED_)
  5. #define AFX_MAINFRM_H__E0DA1D88_E308_11D2_9481_000021003EA5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // Define a new message to handle palette
  10. #define WM_REALIZEPAL     (WM_USER + 0x100)
  11. class CMainFrame : public CMDIFrameWnd
  12. {
  13. DECLARE_DYNAMIC(CMainFrame)
  14. public:
  15. CMainFrame();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:  // control bar embedded members
  33. CStatusBar  m_wndStatusBar;
  34. CToolBar    m_wndToolBar;
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CMainFrame)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  40. afx_msg BOOL OnQueryNewPalette();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_MAINFRM_H__E0DA1D88_E308_11D2_9481_000021003EA5__INCLUDED_)