BtnST.h
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:10k
源码类别:

CA认证

开发平台:

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: 25/November/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 5$ (FIVE U.S. DOLLARS) 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. // Uncomment the following line to enable support for sound effects
  44. //#define BTNST_USE_SOUND
  45. #if _MSC_VER >= 1000
  46. #pragma once
  47. #endif // _MSC_VER >= 1000
  48. // Return values
  49. #ifndef BTNST_OK
  50. #define BTNST_OK 0
  51. #endif
  52. #ifndef BTNST_INVALIDRESOURCE
  53. #define BTNST_INVALIDRESOURCE 1
  54. #endif
  55. #ifndef BTNST_FAILEDMASK
  56. #define BTNST_FAILEDMASK 2
  57. #endif
  58. #ifndef BTNST_INVALIDINDEX
  59. #define BTNST_INVALIDINDEX 3
  60. #endif
  61. #ifndef BTNST_INVALIDALIGN
  62. #define BTNST_INVALIDALIGN 4
  63. #endif
  64. #ifndef BTNST_BADPARAM
  65. #define BTNST_BADPARAM 5
  66. #endif
  67. #ifndef BTNST_INVALIDPRESSEDSTYLE
  68. #define BTNST_INVALIDPRESSEDSTYLE 6
  69. #endif
  70. // Dummy identifier for grayscale icon
  71. #ifndef BTNST_AUTO_GRAY
  72. #define BTNST_AUTO_GRAY (HICON)(0xffffffff - 1L)
  73. #endif
  74. class CButtonST : public CButton
  75. {
  76. public:
  77.     CButtonST();
  78. ~CButtonST();
  79. DECLARE_DYNCREATE(CButtonST)
  80.     enum { ST_ALIGN_HORIZ = 0, // Icon/bitmap on the left, text on the right
  81. ST_ALIGN_VERT, // Icon/bitmap on the top, text on the bottom
  82. ST_ALIGN_HORIZ_RIGHT, // Icon/bitmap on the right, text on the left
  83. ST_ALIGN_OVERLAP // Icon/bitmap on the same space as text
  84. };
  85. enum { BTNST_COLOR_BK_IN = 0, // Background color when mouse is INside
  86. BTNST_COLOR_FG_IN, // Text color when mouse is INside
  87. BTNST_COLOR_BK_OUT, // Background color when mouse is OUTside
  88. BTNST_COLOR_FG_OUT, // Text color when mouse is OUTside
  89. BTNST_COLOR_BK_FOCUS, // Background color when the button is focused
  90. BTNST_COLOR_FG_FOCUS, // Text color when the button is focused
  91. BTNST_MAX_COLORS
  92. };
  93.     enum { BTNST_PRESSED_LEFTRIGHT = 0, // Pressed style from left to right (as usual)
  94. BTNST_PRESSED_TOPBOTTOM // Pressed style from top to bottom
  95. };
  96. // ClassWizard generated virtual function overrides
  97.     //{{AFX_VIRTUAL(CButtonST)
  98. public:
  99. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  100. virtual BOOL PreTranslateMessage(MSG* pMsg);
  101. protected:
  102. virtual void PreSubclassWindow();
  103. //}}AFX_VIRTUAL
  104. public:
  105. DWORD SetDefaultColors(BOOL bRepaint = TRUE);
  106. DWORD SetColor(BYTE byColorIndex, COLORREF crColor, BOOL bRepaint = TRUE);
  107. DWORD GetColor(BYTE byColorIndex, COLORREF* crpColor);
  108. DWORD OffsetColor(BYTE byColorIndex, short shOffset, BOOL bRepaint = TRUE);
  109. DWORD SetCheck(int nCheck, BOOL bRepaint = TRUE);
  110. int GetCheck();
  111. DWORD SetURL(LPCTSTR lpszURL = NULL);
  112. void DrawTransparent(BOOL bRepaint = FALSE);
  113. DWORD SetBk(CDC* pDC);
  114. BOOL GetDefault();
  115. DWORD SetAlwaysTrack(BOOL bAlwaysTrack = TRUE);
  116. void SetTooltipText(int nText, BOOL bActivate = TRUE);
  117. void SetTooltipText(LPCTSTR lpszText, BOOL bActivate = TRUE);
  118. void ActivateTooltip(BOOL bEnable = TRUE);
  119. DWORD EnableBalloonTooltip();
  120. DWORD SetBtnCursor(int nCursorId = NULL, BOOL bRepaint = TRUE);
  121. DWORD SetFlat(BOOL bFlat = TRUE, BOOL bRepaint = TRUE);
  122. DWORD SetAlign(BYTE byAlign, BOOL bRepaint = TRUE);
  123. DWORD SetPressedStyle(BYTE byStyle, BOOL bRepaint = TRUE);
  124. DWORD DrawBorder(BOOL bDrawBorder = TRUE, BOOL bRepaint = TRUE);
  125. DWORD DrawFlatFocus(BOOL bDrawFlatFocus, BOOL bRepaint = TRUE);
  126. DWORD SetIcon(int nIconIn, int nIconOut = NULL);
  127. DWORD SetIcon(HICON hIconIn, HICON hIconOut = NULL);
  128. DWORD SetBitmaps(int nBitmapIn, COLORREF crTransColorIn, int nBitmapOut = NULL, COLORREF crTransColorOut = 0);
  129. DWORD SetBitmaps(HBITMAP hBitmapIn, COLORREF crTransColorIn, HBITMAP hBitmapOut = NULL, COLORREF crTransColorOut = 0);
  130. void SizeToContent();
  131. #ifdef BTNST_USE_BCMENU
  132. 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);
  133. #else
  134. DWORD SetMenu(UINT nMenu, HWND hParentWnd, BOOL bRepaint = TRUE);
  135. #endif
  136. DWORD SetMenuCallback(HWND hWnd, UINT nMessage, LPARAM lParam = 0);
  137. #ifdef BTNST_USE_SOUND
  138. DWORD SetSound(LPCTSTR lpszSound, HMODULE hMod = NULL, BOOL bPlayOnClick = FALSE, BOOL bPlayAsync = TRUE);
  139. #endif
  140. static short GetVersionI() {return 38;}
  141. static LPCTSTR GetVersionC() {return (LPCTSTR)_T("3.8");}
  142. BOOL m_bShowDisabledBitmap;
  143. POINT m_ptImageOrg;
  144. POINT m_ptPressedOffset;
  145. protected:
  146.     //{{AFX_MSG(CButtonST)
  147. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  148. afx_msg void OnKillFocus(CWnd* pNewWnd);
  149. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  150. afx_msg void OnSysColorChange();
  151. afx_msg BOOL OnClicked();
  152. afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  153. afx_msg void OnEnable(BOOL bEnable);
  154. afx_msg void OnCancelMode();
  155. afx_msg UINT OnGetDlgCode();
  156. //}}AFX_MSG
  157. #ifdef BTNST_USE_BCMENU
  158. afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  159. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  160. #endif
  161. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  162. HICON CreateGrayscaleIcon(HICON hIcon);
  163. virtual DWORD OnDrawBackground(CDC* pDC, CRect* pRect);
  164. virtual DWORD OnDrawBorder(CDC* pDC, CRect* pRect);
  165. BOOL m_bIsFlat; // Is a flat button?
  166. BOOL m_bMouseOnButton; // Is mouse over the button?
  167. BOOL m_bDrawTransparent; // Draw transparent?
  168. BOOL m_bIsPressed; // Is button pressed?
  169. BOOL m_bIsFocused; // Is button focused?
  170. BOOL m_bIsDisabled; // Is button disabled?
  171. BOOL m_bIsDefault; // Is default button?
  172. BOOL m_bIsCheckBox; // Is the button a checkbox?
  173. BYTE m_byAlign; // Align mode
  174. BOOL m_bDrawBorder; // Draw border?
  175. BOOL m_bDrawFlatFocus; // Draw focus rectangle for flat button?
  176. COLORREF m_crColors[BTNST_MAX_COLORS]; // Colors to be used
  177. HWND m_hParentWndMenu; // Handle to window for menu selection
  178. BOOL m_bMenuDisplayed; // Is menu displayed ?
  179. #ifdef BTNST_USE_BCMENU
  180. BCMenu m_menuPopup; // BCMenu class instance
  181. #else
  182. HMENU m_hMenu; // Handle to associated menu
  183. #endif
  184. private:
  185. LRESULT OnSetCheck(WPARAM wParam, LPARAM lParam);
  186. LRESULT OnGetCheck(WPARAM wParam, LPARAM lParam);
  187. LRESULT OnSetStyle(WPARAM wParam, LPARAM lParam);
  188. LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam);
  189. void CancelHover();
  190. void FreeResources(BOOL bCheckForNULL = TRUE);
  191. void PrepareImageRect(BOOL bHasTitle, RECT* rpItem, CRect* rpTitle, BOOL bIsPressed, DWORD dwWidth, DWORD dwHeight, CRect* rpImage);
  192. HBITMAP CreateBitmapMask(HBITMAP hSourceBitmap, DWORD dwWidth, DWORD dwHeight, COLORREF crTransColor);
  193. virtual void DrawTheIcon(CDC* pDC, BOOL bHasTitle, RECT* rpItem, CRect* rpCaption, BOOL bIsPressed, BOOL bIsDisabled);
  194. virtual void DrawTheBitmap(CDC* pDC, BOOL bHasTitle, RECT* rpItem, CRect* rpCaption, BOOL bIsPressed, BOOL bIsDisabled);
  195. virtual void DrawTheText(CDC* pDC, LPCTSTR lpszText, RECT* rpItem, CRect* rpCaption, BOOL bIsPressed, BOOL bIsDisabled);
  196. void PaintBk(CDC* pDC);
  197. void InitToolTip();
  198. HCURSOR m_hCursor; // Handle to cursor
  199. CToolTipCtrl m_ToolTip; // Tooltip
  200. CDC m_dcBk;
  201. CBitmap m_bmpBk;
  202. CBitmap* m_pbmpOldBk;
  203. BOOL m_bAlwaysTrack; // Always hilight button?
  204. int m_nCheck; // Current value for checkbox
  205. UINT m_nTypeStyle; // Button style
  206. DWORD m_dwToolTipStyle; // Style of tooltip control
  207. TCHAR m_szURL[_MAX_PATH]; // URL to open when clicked
  208. #pragma pack(1)
  209. typedef struct _STRUCT_ICONS
  210. {
  211. HICON hIcon; // Handle to icon
  212. DWORD dwWidth; // Width of icon
  213. DWORD dwHeight; // Height of icon
  214. } STRUCT_ICONS;
  215. #pragma pack()
  216. #pragma pack(1)
  217. typedef struct _STRUCT_BITMAPS
  218. {
  219. HBITMAP hBitmap; // Handle to bitmap
  220. DWORD dwWidth; // Width of bitmap
  221. DWORD dwHeight; // Height of bitmap
  222. HBITMAP hMask; // Handle to mask bitmap
  223. COLORREF crTransparent; // Transparent color
  224. } STRUCT_BITMAPS;
  225. #pragma pack()
  226. #pragma pack(1)
  227. typedef struct _STRUCT_CALLBACK
  228. {
  229. HWND hWnd; // Handle to window
  230. UINT nMessage; // Message identifier
  231. WPARAM wParam;
  232. LPARAM lParam;
  233. } STRUCT_CALLBACK;
  234. #pragma pack()
  235. STRUCT_ICONS m_csIcons[2];
  236. STRUCT_BITMAPS m_csBitmaps[2];
  237. STRUCT_CALLBACK m_csCallbacks;
  238. #ifdef BTNST_USE_SOUND
  239. #pragma pack(1)
  240. typedef struct _STRUCT_SOUND
  241. {
  242. TCHAR szSound[_MAX_PATH];
  243. LPCTSTR lpszSound;
  244. HMODULE hMod;
  245. DWORD dwFlags;
  246. } STRUCT_SOUND;
  247. #pragma pack()
  248. STRUCT_SOUND m_csSounds[2]; // Index 0 = Over 1 = Clicked
  249. #endif
  250. DECLARE_MESSAGE_MAP()
  251. };
  252. //{{AFX_INSERT_LOCATION}}
  253. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  254. #endif