BtnST.h
上传用户:sdgangtie
上传日期:2020-03-07
资源大小:7324k
文件大小:8k
开发平台:

Visual C++

  1. //
  2. // Class: CButtonST
  3. //
  4. // Compiler: Visual C++
  5. // Tested on: Visual C++ 5.0
  6. // Visual C++ 6.0
  7. //
  8. // Version: See GetVersionC() or GetVersionI()
  9. //
  10. // Created: xx/xxxx/1998
  11. // Updated: 18/April/2002
  12. //
  13. // Author: Davide Calabro' davide_calabro@yahoo.com
  14. // http://www.softechsoftware.it
  15. //
  16. // Note: Code for the PreSubclassWindow and OnSetStyle functions
  17. // has been taken from the COddButton class
  18. // published by Paolo Messina and Jerzy Kaczorowski
  19. //
  20. // Disclaimer
  21. // ----------
  22. // THIS SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED "AS IS" AND WITHOUT
  23. // ANY WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO REPONSIBILITIES FOR POSSIBLE
  24. // DAMAGES OR EVEN FUNCTIONALITY CAN BE TAKEN. THE USER MUST ASSUME THE ENTIRE
  25. // RISK OF USING THIS SOFTWARE.
  26. //
  27. // Terms of use
  28. // ------------
  29. // THIS SOFTWARE IS FREE FOR PERSONAL USE OR FREEWARE APPLICATIONS.
  30. // IF YOU USE THIS SOFTWARE IN COMMERCIAL OR SHAREWARE APPLICATIONS YOU
  31. // ARE GENTLY ASKED TO DONATE 1$ (ONE U.S. DOLLAR) TO THE AUTHOR:
  32. //
  33. // Davide Calabro'
  34. // P.O. Box 65
  35. // 21019 Somma Lombardo (VA)
  36. // Italy
  37. //
  38. #ifndef _BTNST_H
  39. #define _BTNST_H
  40. // Uncomment the following 2 lines to enable support for BCMenu class
  41. #define BTNST_USE_BCMENU
  42. #include "BCMenu.h"
  43. #if _MSC_VER >= 1000
  44. #pragma once
  45. #endif // _MSC_VER >= 1000
  46. // Return values
  47. #ifndef BTNST_OK
  48. #define BTNST_OK 0
  49. #endif
  50. #ifndef BTNST_INVALIDRESOURCE
  51. #define BTNST_INVALIDRESOURCE 1
  52. #endif
  53. #ifndef BTNST_FAILEDMASK
  54. #define BTNST_FAILEDMASK 2
  55. #endif
  56. #ifndef BTNST_INVALIDINDEX
  57. #define BTNST_INVALIDINDEX 3
  58. #endif
  59. #ifndef BTNST_INVALIDALIGN
  60. #define BTNST_INVALIDALIGN 4
  61. #endif
  62. #ifndef BTNST_BADPARAM
  63. #define BTNST_BADPARAM 5
  64. #endif
  65. // Dummy identifier for grayscale icon
  66. #ifndef BTNST_AUTO_GRAY
  67. #define BTNST_AUTO_GRAY (HICON)(0xffffffff - 1L)
  68. #endif
  69. class CButtonST : public CButton
  70. {
  71. public:
  72.     CButtonST();
  73. ~CButtonST();
  74.     enum { ST_ALIGN_HORIZ = 0, // Icon/bitmap on the left, text on the right
  75. ST_ALIGN_VERT, // Icon/bitmap on the top, text on the bottom
  76. ST_ALIGN_HORIZ_RIGHT // Icon/bitmap on the right, text on the left
  77. };
  78. enum { BTNST_COLOR_BK_IN = 0, // Background color when mouse is INside
  79. BTNST_COLOR_FG_IN, // Text color when mouse is INside
  80. BTNST_COLOR_BK_OUT, // Background color when mouse is OUTside
  81. BTNST_COLOR_FG_OUT, // Text color when mouse is OUTside
  82. BTNST_COLOR_BK_FOCUS, // Background color when the button is focused
  83. BTNST_COLOR_FG_FOCUS, // Text color when the button is focused
  84. BTNST_MAX_COLORS
  85. };
  86. // ClassWizard generated virtual function overrides
  87.     //{{AFX_VIRTUAL(CButtonST)
  88. public:
  89. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  90. virtual BOOL PreTranslateMessage(MSG* pMsg);
  91. protected:
  92. virtual void PreSubclassWindow();
  93. virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  94. //}}AFX_VIRTUAL
  95. public:
  96. DWORD SetDefaultColors(BOOL bRepaint = TRUE);
  97. DWORD SetColor(BYTE byColorIndex, COLORREF crColor, BOOL bRepaint = TRUE);
  98. DWORD GetColor(BYTE byColorIndex, COLORREF* crpColor);
  99. DWORD OffsetColor(BYTE byColorIndex, short shOffset, BOOL bRepaint = TRUE);
  100. DWORD SetCheck(int nCheck, BOOL bRepaint = TRUE);
  101. int GetCheck();
  102. DWORD SetURL(LPCTSTR lpszURL = NULL);
  103. void DrawTransparent(BOOL bRepaint = FALSE);
  104. BOOL GetDefault();
  105. DWORD SetAlwaysTrack(BOOL bAlwaysTrack = TRUE);
  106. void SetTooltipText(int nText, BOOL bActivate = TRUE);
  107. void SetTooltipText(LPCTSTR lpszText, BOOL bActivate = TRUE);
  108. void ActivateTooltip(BOOL bEnable = TRUE);
  109. DWORD SetBtnCursor(int nCursorId = NULL, BOOL bRepaint = TRUE);
  110. DWORD SetFlat(BOOL bFlat = TRUE, BOOL bRepaint = TRUE);
  111. DWORD SetAlign(BYTE byAlign, BOOL bRepaint = TRUE);
  112. DWORD DrawBorder(BOOL bDrawBorder = TRUE, BOOL bRepaint = TRUE);
  113. DWORD DrawFlatFocus(BOOL bDrawFlatFocus, BOOL bRepaint = TRUE);
  114. DWORD SetIcon(int nIconIn, int nIconOut = NULL);
  115. DWORD SetIcon(HICON hIconIn, HICON hIconOut = NULL);
  116. DWORD SetBitmaps(int nBitmapIn, COLORREF crTransColorIn, int nBitmapOut = NULL, COLORREF crTransColorOut = 0);
  117. DWORD SetBitmaps(HBITMAP hBitmapIn, COLORREF crTransColorIn, HBITMAP hBitmapOut = NULL, COLORREF crTransColorOut = 0);
  118. #ifdef BTNST_USE_BCMENU
  119. DWORD SetMenu(UINT nMenu, HWND hParentWnd, BOOL bWinXPStyle = TRUE, UINT nToolbarID = NULL, CSize sizeToolbarIcon = CSize(16, 16), COLORREF crToolbarBk = RGB(255, 0, 255), BOOL bRepaint = TRUE);
  120. #else
  121. DWORD SetMenu(UINT nMenu, HWND hParentWnd, BOOL bRepaint = TRUE);
  122. #endif
  123. static short GetVersionI() {return 2001;}
  124. static LPCTSTR GetVersionC() {return (LPCTSTR)_T("2.0.0.1");}
  125. BOOL m_bShowDisabledBitmap;
  126. protected:
  127.     //{{AFX_MSG(CButtonST)
  128. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  129. afx_msg void OnKillFocus(CWnd* pNewWnd);
  130. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  131. afx_msg void OnSysColorChange();
  132. afx_msg BOOL OnClicked();
  133. afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  134. afx_msg void OnEnable(BOOL bEnable);
  135. afx_msg void OnCancelMode();
  136. afx_msg UINT OnGetDlgCode();
  137. //}}AFX_MSG
  138. #ifdef BTNST_USE_BCMENU
  139. afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  140. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  141. #endif
  142. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  143. HICON CreateGrayscaleIcon(HICON hIcon);
  144. virtual DWORD OnDrawBackground(CDC* pDC, LPCRECT pRect);
  145. virtual DWORD OnDrawBorder(CDC* pDC, LPCRECT pRect);
  146. BOOL m_bIsFlat; // Is a flat button?
  147. BOOL m_bMouseOnButton; // Is mouse over the button?
  148. BOOL m_bDrawTransparent; // Draw transparent?
  149. BOOL m_bIsPressed; // Is button pressed?
  150. BOOL m_bIsFocused; // Is button focused?
  151. BOOL m_bIsDisabled; // Is button disabled?
  152. BOOL m_bIsDefault; // Is default button?
  153. BOOL m_bIsCheckBox; // Is the button a checkbox?
  154. BYTE m_byAlign; // Align mode
  155. BOOL m_bDrawBorder; // Draw border?
  156. BOOL m_bDrawFlatFocus; // Draw focus rectangle for flat button?
  157. COLORREF m_crColors[BTNST_MAX_COLORS]; // Colors to be used
  158. HWND m_hParentWndMenu; // Handle to window for menu selection
  159. BOOL m_bMenuDisplayed; // Is menu displayed ?
  160. public:
  161. #ifdef BTNST_USE_BCMENU
  162. BCMenu m_menuPopup; // BCMenu class instance
  163. #else
  164. HMENU m_hMenu; // Handle to associated menu
  165. #endif
  166. private:
  167. LRESULT OnSetCheck(WPARAM wParam, LPARAM lParam);
  168. LRESULT OnGetCheck(WPARAM wParam, LPARAM lParam);
  169. LRESULT OnSetStyle(WPARAM wParam, LPARAM lParam);
  170. LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam);
  171. void CancelHover();
  172. void FreeResources(BOOL bCheckForNULL = TRUE);
  173. void PrepareImageRect(BOOL bHasTitle, RECT* rpItem, CRect* rpTitle, BOOL bIsPressed, DWORD dwWidth, DWORD dwHeight, CRect* rpImage);
  174. HBITMAP CreateBitmapMask(HBITMAP hSourceBitmap, DWORD dwWidth, DWORD dwHeight, COLORREF crTransColor);
  175. void DrawTheIcon(CDC* pDC, BOOL bHasTitle, RECT* rpItem, CRect* rpTitle, BOOL bIsPressed, BOOL bIsDisabled);
  176. void DrawTheBitmap(CDC* pDC, BOOL bHasTitle, RECT *rItem, CRect *rCaption, BOOL bIsPressed, BOOL bIsDisabled);
  177. void PaintBk(CDC* pDC);
  178. void InitToolTip();
  179. HCURSOR m_hCursor; // Handle to cursor
  180. CToolTipCtrl m_ToolTip; // Tooltip
  181. CDC m_dcBk;
  182. CBitmap m_bmpBk;
  183. CBitmap* m_pbmpOldBk;
  184. BOOL m_bAlwaysTrack; // Always hilight button?
  185. int m_nCheck; // Current value for checkbox
  186. UINT m_nTypeStyle; // Button style
  187. TCHAR m_szURL[_MAX_PATH]; // URL to open when clicked
  188. #pragma pack(1)
  189. typedef struct _STRUCT_ICONS
  190. {
  191. HICON hIcon; // Handle to icon
  192. DWORD dwWidth; // Width of icon
  193. DWORD dwHeight; // Height of icon
  194. } STRUCT_ICONS;
  195. #pragma pack()
  196. #pragma pack(1)
  197. typedef struct _STRUCT_BITMAPS
  198. {
  199. HBITMAP hBitmap; // Handle to bitmap
  200. DWORD dwWidth; // Width of bitmap
  201. DWORD dwHeight; // Height of bitmap
  202. HBITMAP hMask; // Handle to mask bitmap
  203. COLORREF crTransparent; // Transparent color
  204. } STRUCT_BITMAPS;
  205. #pragma pack()
  206. STRUCT_ICONS m_csIcons[2];
  207. STRUCT_BITMAPS m_csBitmaps[2];
  208. DECLARE_MESSAGE_MAP()
  209. };
  210. //{{AFX_INSERT_LOCATION}}
  211. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  212. #endif