/wcwp/bin/VC6CMD/Include/GIZMOBAR.H

http://wcwp.googlecode.com/ · C Header · 242 lines · 162 code · 50 blank · 30 comment · 0 complexity · be5caf0708ef268830d57df992b1aa05 MD5 · raw file

  1. /*
  2. * GIZMOBAR.H
  3. * GizmoBar Version 1.01
  4. *
  5. * Public definitions for application that use the GizmoBar such as
  6. * messages, prototypes for API functions, notification codes, and
  7. * control styles.
  8. *
  9. * Copyright (c)1993-1996 Microsoft Corporation, All Rights Reserved
  10. *
  11. * Kraig Brockschmidt, Software Design Engineer
  12. * Microsoft Systems Developer Relations
  13. *
  14. * Internet : kraigb@microsoft.com
  15. * Compuserve: >INTERNET:kraigb@microsoft.com
  16. */
  17. #ifndef _GIZMOBAR_H_
  18. #define _GIZMOBAR_H_
  19. #include <bttncur.h>
  20. #ifdef __cplusplus
  21. extern "C"
  22. {
  23. #endif
  24. //Classname
  25. #define CLASS_GIZMOBAR TEXT("gizmobar")
  26. //Message API Functions
  27. HWND WINAPI GBHwndAssociateSet(HWND, HWND);
  28. HWND WINAPI GBHwndAssociateGet(HWND);
  29. BOOL WINAPI GBGizmoAddW(HWND, UINT, UINT, UINT, UINT, UINT, LPWSTR , HBITMAP, UINT, UINT);
  30. BOOL WINAPI GBGizmoAddA(HWND, UINT, UINT, UINT, UINT, UINT, LPSTR , HBITMAP, UINT, UINT);
  31. int WINAPI GBGizmoTextGetW(HWND, UINT, LPWSTR, UINT);
  32. int WINAPI GBGizmoTextGetA(HWND, UINT, LPSTR, UINT);
  33. void WINAPI GBGizmoTextSetW(HWND, UINT, LPWSTR);
  34. void WINAPI GBGizmoTextSetA(HWND, UINT, LPSTR);
  35. #ifdef UNICODE
  36. #define GBGizmoAdd GBGizmoAddW
  37. #define GBGizmoTextGet GBGizmoTextGetW
  38. #define GBGizmoTextSet GBGizmoTextSetW
  39. #else
  40. #define GBGizmoAdd GBGizmoAddA
  41. #define GBGizmoTextGet GBGizmoTextGetA
  42. #define GBGizmoTextSet GBGizmoTextSetA
  43. #endif
  44. BOOL WINAPI GBGizmoRemove(HWND, UINT);
  45. LRESULT WINAPI GBGizmoSendMessage(HWND, UINT, UINT, WPARAM, LPARAM);
  46. BOOL WINAPI GBGizmoShow(HWND, UINT, BOOL);
  47. BOOL WINAPI GBGizmoEnable(HWND, UINT, BOOL);
  48. BOOL WINAPI GBGizmoCheck(HWND, UINT, BOOL);
  49. UINT WINAPI GBGizmoFocusSet(HWND, UINT);
  50. BOOL WINAPI GBGizmoExist(HWND, UINT);
  51. int WINAPI GBGizmoTypeGet(HWND, UINT);
  52. DWORD WINAPI GBGizmoDataSet(HWND, UINT, DWORD);
  53. DWORD WINAPI GBGizmoDataGet(HWND, UINT);
  54. BOOL WINAPI GBGizmoNotifySet(HWND, UINT, BOOL);
  55. BOOL WINAPI GBGizmoNotifyGet(HWND, UINT);
  56. UINT WINAPI GBGizmoIntGet(HWND, UINT, BOOL FAR *, BOOL);
  57. void WINAPI GBGizmoIntSet(HWND, UINT, UINT, BOOL);
  58. //Notification codes sent via WM_COMMAND from GBHwndAssociateSet
  59. #define GBN_ASSOCIATEGAIN 1
  60. #define GBN_ASSOCIATELOSS 2
  61. #define GBN_GIZMOADDED 3
  62. #define GBN_GIZMOREMOVED 4
  63. //Message equivalents for functions.
  64. #define GBM_HWNDASSOCIATESET (WM_USER+0)
  65. #define GBM_HWNDASSOCIATEGET (WM_USER+1)
  66. #define GBM_GIZMOADDW (WM_USER+2)
  67. #define GBM_GIZMOADDA (WM_USER+3)
  68. #define GBM_GIZMOREMOVE (WM_USER+4)
  69. #define GBM_GIZMOSENDMESSAGE (WM_USER+5)
  70. #define GBM_GIZMOSHOW (WM_USER+6)
  71. #define GBM_GIZMOENABLE (WM_USER+7)
  72. #define GBM_GIZMOCHECK (WM_USER+8)
  73. #define GBM_GIZMOFOCUSSET (WM_USER+9)
  74. #define GBM_GIZMOEXIST (WM_USER+10)
  75. #define GBM_GIZMOTYPEGET (WM_USER+11)
  76. #define GBM_GIZMODATASET (WM_USER+12)
  77. #define GBM_GIZMODATAGET (WM_USER+13)
  78. #define GBM_GIZMONOTIFYSET (WM_USER+14)
  79. #define GBM_GIZMONOTIFYGET (WM_USER+15)
  80. #define GBM_GIZMOTEXTGETA (WM_USER+16)
  81. #define GBM_GIZMOTEXTGETW (WM_USER+17)
  82. #define GBM_GIZMOTEXTSETA (WM_USER+18)
  83. #define GBM_GIZMOTEXTSETW (WM_USER+19)
  84. #define GBM_GIZMOINTGET (WM_USER+20)
  85. #define GBM_GIZMOINTSET (WM_USER+21)
  86. #ifdef UNICODE
  87. #define GBM_GIZMOTEXTGET GBM_GIZMOTEXTGETW
  88. #define GBM_GIZMOTEXTSET GBM_GIZMOTEXTSETW
  89. #define GBM_GIZMOADD GBM_GIZMOADDW
  90. #else
  91. #define GBM_GIZMOTEXTGET GBM_GIZMOTEXTGETA
  92. #define GBM_GIZMOTEXTSET GBM_GIZMOTEXTSETA
  93. #define GBM_GIZMOADD GBM_GIZMOADDA
  94. #endif
  95. /*
  96. * Structure passed in lParam of GBM_GIZMOADD that mirrors the
  97. * parameters to GBGizmoAdd.
  98. */
  99. typedef struct
  100. {
  101. HWND hWndParent; //Parent window
  102. UINT iType; //Type of gizmo
  103. UINT iGizmo; //Position to create gizmo
  104. UINT uID; //Identifier of gizmo
  105. UINT dx; //Dimensions of gizmo
  106. UINT dy;
  107. LPSTR pszText; //Gizmo text
  108. HBITMAP hBmp; //Source of gizmo button image.
  109. UINT iImage; //Index of image from hBmp
  110. UINT uState; //Initial state of the gizmo.
  111. } CREATEGIZMOA, FAR *LPCREATEGIZMOA;
  112. typedef struct
  113. {
  114. HWND hWndParent; //Parent window
  115. UINT iType; //Type of gizmo
  116. UINT iGizmo; //Position to create gizmo
  117. UINT uID; //Identifier of gizmo
  118. UINT dx; //Dimensions of gizmo
  119. UINT dy;
  120. LPWSTR pszText; //Gizmo text
  121. HBITMAP hBmp; //Source of gizmo button image.
  122. UINT iImage; //Index of image from hBmp
  123. UINT uState; //Initial state of the gizmo.
  124. } CREATEGIZMOW, FAR *LPCREATEGIZMOW;
  125. #ifdef UNICODE
  126. typedef CREATEGIZMOW CREATEGIZMO;
  127. typedef LPCREATEGIZMOW LPCREATEGIZMO;
  128. #define CBCREATEGIZMO sizeof(CREATEGIZMOW)
  129. #else
  130. typedef CREATEGIZMOA CREATEGIZMO;
  131. typedef LPCREATEGIZMOA LPCREATEGIZMO;
  132. #define CBCREATEGIZMO sizeof(CREATEGIZMOA)
  133. #endif
  134. //For GBM_GIZMOSENDMESSAGE
  135. typedef struct
  136. {
  137. UINT iMsg;
  138. WPARAM wParam;
  139. LPARAM lParam;
  140. } GBMSG, FAR * LPGBMSG;
  141. #define CBGBMSG sizeof(GBMSG);
  142. //For GBM_GIZMOGETTEXT
  143. typedef struct
  144. {
  145. LPSTR psz;
  146. UINT cch;
  147. } GBGETTEXTA, FAR * LPGBGETTEXTA;
  148. typedef struct
  149. {
  150. LPWSTR psz;
  151. UINT cch;
  152. } GBGETTEXTW, FAR * LPGBGETTEXTW;
  153. #ifdef UNICODE
  154. typedef GBGETTEXTW GBGETTEXT;
  155. typedef LPGBGETTEXTW LPGBGETTEXT;
  156. #define CBGBGETTEXT sizeof(GBGETTEXTW);
  157. #else
  158. typedef GBGETTEXTA GBGETTEXT;
  159. typedef LPGBGETTEXTA LPGBGETTEXT;
  160. #define CBGBGETTEXT sizeof(GBGETTEXTA);
  161. #endif
  162. //For GBM_GIZMOGETINT
  163. typedef struct
  164. {
  165. BOOL fSigned;
  166. BOOL fSuccess;
  167. } GBGETINT, FAR * LPGBGETINT;
  168. #define CBGBGETINT sizeof(GBGETINT);
  169. //For GBM_GIZMOSETINT
  170. typedef struct
  171. {
  172. UINT uValue;
  173. BOOL fSigned;
  174. } GBSETINT, FAR * LPGBSETINT;
  175. #define CBGBSETINT sizeof(GBSETINT);
  176. //Gizmo control types. DO NOT CHANGE THESE!
  177. #define GIZMOTYPE_EDIT 0x0001
  178. #define GIZMOTYPE_LISTBOX 0x0002
  179. #define GIZMOTYPE_COMBOBOX 0x0004
  180. #define GIZMOTYPE_BUTTONNORMAL 0x0008
  181. #define GIZMOTYPE_TEXT 0x0010
  182. #define GIZMOTYPE_SEPARATOR 0x0020
  183. #define GIZMOTYPE_BUTTONATTRIBUTEIN 0x0040
  184. #define GIZMOTYPE_BUTTONATTRIBUTEEX 0x0080
  185. #define GIZMOTYPE_BUTTONCOMMAND 0x0100
  186. //Generic state flags for non-buttons based on BTTNCUR.H's groups.
  187. #define GIZMO_NORMAL (BUTTONGROUP_ACTIVE)
  188. #define GIZMO_DISABLED (BUTTONGROUP_DISABLED)
  189. #ifdef __cplusplus
  190. } //Match with extern "C" above.
  191. #endif
  192. #endif //_GIZMOBAR_H_