SkinButton.h
上传用户:vipseo
上传日期:2010-02-15
资源大小:137k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #if !defined(AFX_SKINBUTTON_H__F3A4A4C8_725E_4184_8A4D_A7A848F839FE__INCLUDED_)
  2. #define AFX_SKINBUTTON_H__F3A4A4C8_725E_4184_8A4D_A7A848F839FE__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SkinButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSkinButton window
  10. #include "MyBitmap.h"
  11. class CSkinButtonResource
  12. {
  13. CMyBitmap m_bmpButton;
  14. int m_TopHeight, m_LeftWidth, m_RightWidth, m_BottomHeight;
  15. BOOL m_bTile;
  16. BOOL m_bTrans;
  17. BOOL m_bInited;
  18. public:
  19. CSkinButtonResource()
  20. {
  21. m_bInited = FALSE;
  22. }
  23. BOOL DrawAImage( CDC *pDC, CRect r, CRect sr );
  24. BOOL LoadSkin( const char * skinfile );
  25. BOOL DrawImage(CDC *pDC, CRect r, int state);
  26. friend class CSkinButton;
  27. };
  28. class CSkinButton : public CButton
  29. {
  30. DECLARE_DYNAMIC(CSkinButton)
  31. // Construction
  32. CSkinButtonResource * m_res;
  33. BOOL m_bMouseIn;
  34. BOOL m_bDown;
  35. BOOL m_bFocus;
  36. BOOL m_bEnable;
  37. COLORREF m_backcolor;
  38. COLORREF m_textcolor;
  39. public:
  40. CSkinButton();
  41. // Attributes
  42. public:
  43. // Operations
  44. public:
  45. // Overrides
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CSkinButton)
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. public:
  51. BOOL EnableWindow( BOOL bEnable = TRUE );
  52. BOOL GetRegion();
  53. BOOL DrawImage( CMyBitmap& bmp );
  54. BOOL DrawText( CDC * pDC );
  55. BOOL SetResource( CSkinButtonResource * res )
  56. {
  57. m_res = res;
  58. //GetRegion();
  59. return res != NULL;
  60. }
  61. virtual ~CSkinButton();
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CSkinButton)
  65. afx_msg void OnPaint();
  66. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  67. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  68. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  69. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  70. afx_msg void OnSetFocus(CWnd* pOldWnd);
  71. afx_msg void OnKillFocus(CWnd* pNewWnd);
  72. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  73. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  74. afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  75. afx_msg void OnEnable(BOOL bEnable);
  76. //}}AFX_MSG
  77. DECLARE_MESSAGE_MAP()
  78. };
  79. /////////////////////////////////////////////////////////////////////////////
  80. //{{AFX_INSERT_LOCATION}}
  81. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  82. #endif // !defined(AFX_SKINBUTTON_H__F3A4A4C8_725E_4184_8A4D_A7A848F839FE__INCLUDED_)