BtnST.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:10k
源码类别:

IP电话/视频会议

开发平台:

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