AdvButton.h
上传用户:shcaka8
上传日期:2013-04-06
资源大小:103k
文件大小:2k
- #if !defined(AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_)
- #define AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // AdvButton.h : header file
- //
- #define WHITE RGB(255,255,255) //白色
- #define SYSCOLOR GetSysColor(COLOR_BTNFACE) //系统色
- /////////////////////////////////////////////////////////////////////////////
- // CAdvButton window
- class CAdvButton : public CButton
- {
- // Construction
- public:
- CAdvButton();
- // Attributes
- public:
- CRect m_ClientRect;
- CRgn m_ClientRgn ;
- UINT m_State;
- CPoint m_Point;
- BOOL m_IsTimerOn;
- UINT m_BtnType;
- BOOL m_IsPushed;
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAdvButton)
- public:
- virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
- protected:
- virtual void PreSubclassWindow();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void SetType(UINT piType);
- BOOL Create(LPCTSTR lpszCaption,DWORD dwStyle,const RECT& rect,CWnd *pParentWnd,UINT nID);
- virtual ~CAdvButton();
- // Generated message map functions
- protected:
- //{{AFX_MSG(CAdvButton)
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_ADVBUTTON_H__B17E0AEE_7CA7_4783_B840_936876C7FACA__INCLUDED_)