frame.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:1k
源码类别:

DNA

开发平台:

Visual C++

  1. // frame.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CMainFrame : public CMDIFrameWnd
  13. {
  14. DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16. CMainFrame();
  17. // Attributes
  18. public:
  19. CPalette m_palette;
  20. // Operations
  21. public:
  22. BOOL SelectPalette(BOOL bBackground);
  23. // Implementation
  24. public:
  25. virtual ~CMainFrame();
  26. #ifdef _DEBUG
  27. virtual void AssertValid() const;
  28. virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30. // Control bar embedded members
  31. protected:
  32. CStatusBar  m_wndStatusBar;
  33. CToolBar    m_wndToolBar;
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CMainFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. afx_msg void OnWindowTileHorz();
  39. afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  40. afx_msg BOOL OnQueryNewPalette();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////