12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef __UIBUTTON_H__
- #define __UIBUTTON_H__
- #pragma once
- namespace DuiLib
- {
- class UILIB_API CButtonUI : public CLabelUI
- {
- public:
- CButtonUI();
- LPCTSTR GetClass() const;
- LPVOID GetInterface(LPCTSTR pstrName);
- UINT GetControlFlags() const;
- bool Activate();
- void SetEnabled(bool bEnable = true);
- void DoEvent(TEventUI& event);
- LPCTSTR GetNormalImage();
- void SetNormalImage(LPCTSTR pStrImage);
- LPCTSTR GetHotImage();
- void SetHotImage(LPCTSTR pStrImage);
- LPCTSTR GetPushedImage();
- void SetPushedImage(LPCTSTR pStrImage);
- LPCTSTR GetFocusedImage();
- void SetFocusedImage(LPCTSTR pStrImage);
- LPCTSTR GetDisabledImage();
- void SetDisabledImage(LPCTSTR pStrImage);
- LPCTSTR GetForeImage();
- void SetForeImage(LPCTSTR pStrImage);
- LPCTSTR GetHotForeImage();
- void SetHotForeImage(LPCTSTR pStrImage);
- // śÔÓŚ°´ĹĽľÄ5¸ö×´ĚŹÍź
- void SetFiveStatusImage(LPCTSTR pStrImage);
- void SetFadeAlphaDelta(BYTE uDelta);
- byte GetFadeAlphaDelta();
- void SetHotBkColor(DWORD dwColor);
- DWORD GetHotBkColor() const;
- void SetHotTextColor(DWORD dwColor);
- DWORD GetHotTextColor() const;
- void SetPushedTextColor(DWORD dwColor);
- DWORD GetPushedTextColor() const;
- void SetFocusedTextColor(DWORD dwColor);
- DWORD GetFocusedTextColor() const;
- SIZE EstimateSize(SIZE szAvailable);
- void SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue);
- void PaintText(HDC hDC);
- void PaintStatusImage(HDC hDC);
- protected:
- enum
- {
- FADE_TIMERID = 11,
- FADE_ELLAPSE = 30,
- };
- UINT m_uButtonState;
- DWORD m_dwHotBkColor;
- DWORD m_dwHotTextColor;
- DWORD m_dwPushedTextColor;
- DWORD m_dwFocusedTextColor;
- BYTE m_uFadeAlpha;
- BYTE m_uFadeAlphaDelta;
- TDrawInfo m_diNormal;
- TDrawInfo m_diHot;
- TDrawInfo m_diHotFore;
- TDrawInfo m_diPushed;
- TDrawInfo m_diPushedFore;
- TDrawInfo m_diFocused;
- TDrawInfo m_diDisabled;
- };
- } // namespace DuiLib
- #endif // __UIBUTTON_H__
|