GnomeFrame.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // GnomeFrame.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_GNOMEFRAME_H__5651AED2_19C1_469E_B327_FF7D5B10DFFC__INCLUDED_)
  21. #define AFX_GNOMEFRAME_H__5651AED2_19C1_469E_B327_FF7D5B10DFFC__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #define GNOME_HTMINIMIZE 1
  26. #define GNOME_HTMAXIMIZE 2
  27. #define GNOME_HTCLOSE 3
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CGnomeFrame frame
  30. class CGnomeFrame : public CXTPFrameWnd
  31. {
  32. DECLARE_DYNCREATE(CGnomeFrame)
  33. protected:
  34. CGnomeFrame();           // protected constructor used by dynamic creation
  35. // Attributes
  36. public:
  37. CRect m_rcBorders;
  38. CBitmap m_bmpBottomLeft;
  39. CBitmap m_bmpBottomRight;
  40. CBitmap m_bmpMenuNormal;
  41. CBitmap m_bmpCaption;
  42. CBitmap m_bmpCloseNormal;
  43. CBitmap m_bmpMaximizeNormal;
  44. CBitmap m_bmpMinimizeNormal;
  45. CBitmap m_bmpClosePushed;
  46. CBitmap m_bmpMaximizePushed;
  47. CBitmap m_bmpMinimizePushed;
  48. CFont m_fntTitle;
  49. int m_nButtonDown;
  50. // Operations
  51. public:
  52. int GetSysButtonsHitTest(CPoint point);
  53. // Overrides
  54. // ClassWizard generated virtual function overrides
  55. //{{AFX_VIRTUAL(CGnomeFrame)
  56. //}}AFX_VIRTUAL
  57. // Implementation
  58. protected:
  59. virtual ~CGnomeFrame();
  60. // Generated message map functions
  61. //{{AFX_MSG(CGnomeFrame)
  62. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  63. afx_msg void OnNcPaint();
  64. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  65. afx_msg LRESULT OnNcHitTest(CPoint point);
  66. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  67. afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);
  68. afx_msg void OnSize(UINT nType, int cx, int cy);
  69. afx_msg void OnWindowPosChanging(WINDOWPOS* lpwndpos);
  70. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  71. afx_msg void OnCaptureChanged(CWnd *pWnd);
  72. afx_msg BOOL OnNcActivate(BOOL /*bActive*/);
  73. //}}AFX_MSG
  74. DECLARE_MESSAGE_MAP()
  75. };
  76. /////////////////////////////////////////////////////////////////////////////
  77. //{{AFX_INSERT_LOCATION}}
  78. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  79. #endif // !defined(AFX_GNOMEFRAME_H__5651AED2_19C1_469E_B327_FF7D5B10DFFC__INCLUDED_)