HMXShapedFormView.h
上传用户:yinguanfa
上传日期:2022-02-19
资源大小:400k
文件大小:3k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXSHAPEDFORMVIEW_H__D338EEA0_BD98_11D5_9628_00B0D015B123__INCLUDED_)
  2. #define AFX_HMXSHAPEDFORMVIEW_H__D338EEA0_BD98_11D5_9628_00B0D015B123__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // HMXShapedFormView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHMXShapedFormView form view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. class CHMXShapedFormView : public CFormView
  14. {
  15. protected:
  16. CHMXShapedFormView();           // protected constructor used by dynamic creation
  17. CHMXShapedFormView(UINT nIDD, const CString& sFileRgn = "", COLORREF clr = RGB(0,0,0));
  18. // Form Data
  19. public:
  20. //{{AFX_DATA(CHMXShapedFormView)
  21. // NOTE: the ClassWizard will add data members here
  22. //}}AFX_DATA
  23. // Attributes
  24. public:
  25. // Operations
  26. public:
  27. bool Dismiss();
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CHMXShapedFormView)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33. virtual void OnDraw(CDC* pDC);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HRGN BitmapRegion(HBITMAP hBitmap,COLORREF clsTransp=RGB(0,0,0),bool bTransp=true);
  38. CString m_sFileRgn; // this string will keep the BMP filename;
  39. HBITMAP m_hBmp; // This is the handle to the bitmap which stores the picture
  40. HBITMAP m_hPrevBmp; // This handle is to store the previous bitmap selected on
  41. // the memory context. It should normally be NULL, but it
  42. // doesn't harm anyone to take care of such little precautions!
  43. HDC m_hMemDC; // This is the handle to the memory context where we copy first
  44. // the bitmap. When its time to paint the background, we copy
  45. // the bitmap from the memory context to the device context!
  46. HRGN m_hRegion; // The clipping region that makes this cool effect!
  47. BITMAP m_bmInfo; // This bitmap hepls us to know the size of the loaded bitmap!
  48. COLORREF m_clrTransp; // This is the trasparent color for Region
  49. virtual ~CHMXShapedFormView();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. // Generated message map functions
  55. //{{AFX_MSG(CHMXShapedFormView)
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnDestroy();
  58. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. private:
  62. void CommonConstructor();
  63. };
  64. /////////////////////////////////////////////////////////////////////////////
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67. #endif // !defined(AFX_HMXSHAPEDFORMVIEW_H__D338EEA0_BD98_11D5_9628_00B0D015B123__INCLUDED_)