Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * ComboBoxEx control |
| 3 | * |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 4 | * Copyright 1998, 1999 Eric Kohl |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 5 | * |
| 6 | * NOTES |
| 7 | * This is just a dummy control. An author is needed! Any volunteers? |
| 8 | * I will only improve this control once in a while. |
| 9 | * Eric <ekohl@abo.rhein-zeitung.de> |
| 10 | * |
| 11 | * TODO: |
| 12 | * - All messages. |
| 13 | * - All notifications. |
| 14 | * |
| 15 | * FIXME: |
| 16 | * - should include "combo.h" |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 17 | |
| 18 | * Changes Guy Albertelli <galberte@neo.lrun.com> |
| 19 | * 1. Implemented message CB_SETITEMHEIGHT |
| 20 | * 2. Implemented message WM_WINDOWPOSCHANGING |
| 21 | * 3. Implemented message WM_MEASUREITEM |
| 22 | * 4. Add code to WM_CREATE processing to set font of COMBOBOX and |
| 23 | * issue the CB_SETITEMHEIGHT to start the correct sizing process. |
| 24 | * The above 4 changes allow the window rect for the comboboxex |
| 25 | * to be set properly, which in turn allows the height of the |
| 26 | * rebar control it *may* be imbeded in to be correct. |
| 27 | * 5. Rewrite CBEM_INSERTITEMA to save the information. |
| 28 | * 6. Implemented message WM_DRAWITEM. The code will handle images |
| 29 | * but not "overlays" yet. |
| 30 | * 7. Fixed code in CBEM_SETIMAGELIST to resize control. |
| 31 | * 8. Add debugging code. |
| 32 | * |
| 33 | * Test vehicals were the ControlSpy modules (rebar.exe and comboboxex.exe) |
| 34 | * |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 35 | */ |
| 36 | |
Marcus Meissner | 3480e4a | 1999-03-16 10:53:11 +0000 | [diff] [blame] | 37 | #include "winbase.h" |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 38 | #include "wine/winestring.h" |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 39 | #include "commctrl.h" |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 40 | #include "debugtools.h" |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 41 | #include "wine/unicode.h" |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 42 | |
Alexandre Julliard | 70c9e09 | 2000-08-09 00:41:17 +0000 | [diff] [blame] | 43 | DEFAULT_DEBUG_CHANNEL(comboex); |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 44 | DECLARE_DEBUG_CHANNEL(message); |
Alexandre Julliard | 70c9e09 | 2000-08-09 00:41:17 +0000 | [diff] [blame] | 45 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 46 | /* Item structure */ |
Alexandre Julliard | 70c9e09 | 2000-08-09 00:41:17 +0000 | [diff] [blame] | 47 | typedef struct |
| 48 | { |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 49 | VOID *next; |
| 50 | UINT mask; |
| 51 | LPWSTR pszText; |
| 52 | int cchTextMax; |
| 53 | int iImage; |
| 54 | int iSelectedImage; |
| 55 | int iOverlay; |
| 56 | int iIndent; |
| 57 | LPARAM lParam; |
| 58 | } CBE_ITEMDATA; |
| 59 | |
| 60 | /* ComboBoxEx structure */ |
| 61 | typedef struct |
| 62 | { |
| 63 | HIMAGELIST himl; |
| 64 | HWND hwndCombo; |
| 65 | DWORD dwExtStyle; |
| 66 | HFONT font; |
| 67 | INT nb_items; /* Number of items */ |
| 68 | CBE_ITEMDATA *items; /* Array of items */ |
Alexandre Julliard | 70c9e09 | 2000-08-09 00:41:17 +0000 | [diff] [blame] | 69 | } COMBOEX_INFO; |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 70 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 71 | #define ID_CB_EDIT 1001 |
| 72 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 73 | /* Height in pixels of control over the amount of the selected font */ |
| 74 | #define CBE_EXTRA 3 |
| 75 | |
| 76 | /* Indent amount per MS documentation */ |
| 77 | #define CBE_INDENT 10 |
| 78 | |
| 79 | /* Offset in pixels from left side for start of image or text */ |
| 80 | #define CBE_STARTOFFSET 6 |
| 81 | |
| 82 | /* Offset between image and text */ |
| 83 | #define CBE_SEP 4 |
| 84 | |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 85 | #define COMBOEX_GetInfoPtr(wndPtr) ((COMBOEX_INFO *)GetWindowLongA (hwnd, 0)) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 86 | |
| 87 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 88 | static void |
| 89 | COMBOEX_DumpItem (CBE_ITEMDATA *item) |
| 90 | { |
| 91 | if (TRACE_ON(comboex)){ |
| 92 | TRACE("item %p - mask=%08x, pszText=%p, cchTM=%d, iImage=%d\n", |
| 93 | item, item->mask, item->pszText, item->cchTextMax, |
| 94 | item->iImage); |
| 95 | TRACE("item %p - iSelectedImage=%d, iOverlay=%d, iIndent=%d, lParam=%08lx\n", |
| 96 | item, item->iSelectedImage, item->iOverlay, item->iIndent, item->lParam); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | |
| 101 | inline static LRESULT |
| 102 | COMBOEX_Forward (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
| 103 | { |
| 104 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
| 105 | |
| 106 | FIXME("(0x%x 0x%x 0x%lx): stub\n", uMsg, wParam, lParam); |
| 107 | |
| 108 | if (infoPtr->hwndCombo) |
| 109 | return SendMessageA (infoPtr->hwndCombo, uMsg, wParam, lParam); |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | |
| 115 | static void |
| 116 | COMBOEX_ReSize (HWND hwnd, COMBOEX_INFO *infoPtr) |
| 117 | { |
| 118 | HFONT nfont, ofont; |
| 119 | HDC mydc; |
| 120 | SIZE mysize; |
| 121 | UINT cy; |
| 122 | IMAGEINFO iinfo; |
| 123 | |
| 124 | mydc = GetDC (0); /* why the entire screen???? */ |
| 125 | nfont = SendMessageA (infoPtr->hwndCombo, WM_GETFONT, 0, 0); |
| 126 | ofont = (HFONT) SelectObject (mydc, nfont); |
| 127 | GetTextExtentPointA (mydc, "A", 1, &mysize); |
| 128 | SelectObject (mydc, ofont); |
| 129 | ReleaseDC (0, mydc); |
| 130 | cy = mysize.cy + CBE_EXTRA; |
| 131 | if (infoPtr->himl) { |
| 132 | ImageList_GetImageInfo(infoPtr->himl, 0, &iinfo); |
| 133 | cy = max (iinfo.rcImage.bottom - iinfo.rcImage.top, cy); |
| 134 | } |
| 135 | TRACE("selected font hwnd=%08x, height=%d\n", nfont, cy); |
| 136 | SendMessageA (hwnd, CB_SETITEMHEIGHT, (WPARAM) -1, (LPARAM) cy); |
| 137 | if (infoPtr->hwndCombo) |
| 138 | SendMessageA (infoPtr->hwndCombo, CB_SETITEMHEIGHT, |
| 139 | (WPARAM) 0, (LPARAM) cy); |
| 140 | } |
| 141 | |
| 142 | |
| 143 | /* *** CBEM_xxx message support *** */ |
| 144 | |
| 145 | |
Andreas Mohr | 7a6228d | 1998-12-11 09:16:48 +0000 | [diff] [blame] | 146 | /* << COMBOEX_DeleteItem >> */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 147 | |
| 148 | |
Patrik Stridvall | 896889f | 1999-05-08 12:50:36 +0000 | [diff] [blame] | 149 | inline static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 150 | COMBOEX_GetComboControl (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 151 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 152 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 153 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 154 | TRACE("\n"); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 155 | |
| 156 | return (LRESULT)infoPtr->hwndCombo; |
| 157 | } |
| 158 | |
| 159 | |
Patrik Stridvall | 896889f | 1999-05-08 12:50:36 +0000 | [diff] [blame] | 160 | inline static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 161 | COMBOEX_GetEditControl (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 162 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 163 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 164 | |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 165 | if ((GetWindowLongA (hwnd, GWL_STYLE) & CBS_DROPDOWNLIST) != CBS_DROPDOWN) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 166 | return 0; |
| 167 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 168 | TRACE("-- 0x%x\n", GetDlgItem (infoPtr->hwndCombo, ID_CB_EDIT)); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 169 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 170 | return (LRESULT)GetDlgItem (infoPtr->hwndCombo, ID_CB_EDIT); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | |
Patrik Stridvall | 896889f | 1999-05-08 12:50:36 +0000 | [diff] [blame] | 174 | inline static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 175 | COMBOEX_GetExtendedStyle (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 176 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 177 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 178 | |
| 179 | return (LRESULT)infoPtr->dwExtStyle; |
| 180 | } |
| 181 | |
| 182 | |
Patrik Stridvall | 896889f | 1999-05-08 12:50:36 +0000 | [diff] [blame] | 183 | inline static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 184 | COMBOEX_GetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 185 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 186 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 187 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 188 | TRACE("(0x%08x 0x%08lx)\n", wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 189 | |
| 190 | return (LRESULT)infoPtr->himl; |
| 191 | } |
| 192 | |
| 193 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 194 | /* << COMBOEX_GetItemA >> */ |
| 195 | |
| 196 | /* << COMBOEX_GetItemW >> */ |
| 197 | |
| 198 | /* << COMBOEX_GetUniCodeFormat >> */ |
| 199 | |
| 200 | /* << COMBOEX_HasEditChanged >> */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 201 | |
| 202 | |
| 203 | static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 204 | COMBOEX_InsertItemA (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 205 | { |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 206 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
| 207 | COMBOBOXEXITEMA *cit = (COMBOBOXEXITEMA *) lParam; |
| 208 | INT index; |
| 209 | CBE_ITEMDATA *item; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 210 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 211 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 212 | /* get real index of item to insert */ |
| 213 | index = cit->iItem; |
| 214 | if (index == -1) index = infoPtr->nb_items; |
| 215 | if (index > infoPtr->nb_items) index = infoPtr->nb_items; |
| 216 | |
| 217 | /* get space and chain it in */ |
| 218 | item = (CBE_ITEMDATA *)COMCTL32_Alloc (sizeof (CBE_ITEMDATA)); |
| 219 | item->next = NULL; |
| 220 | item->pszText = NULL; |
| 221 | |
| 222 | /* locate position to insert new item in */ |
| 223 | if (index == infoPtr->nb_items) { |
| 224 | /* fast path for iItem = -1 */ |
| 225 | item->next = infoPtr->items; |
| 226 | infoPtr->items = item; |
| 227 | } |
| 228 | else { |
| 229 | int i = infoPtr->nb_items-1; |
| 230 | CBE_ITEMDATA *moving = infoPtr->items; |
| 231 | |
| 232 | while (i > index && moving) { |
| 233 | moving = (CBE_ITEMDATA *)moving->next; |
| 234 | } |
| 235 | if (!moving) { |
| 236 | FIXME("COMBOBOXEX item structures broken. Please report!\n"); |
| 237 | COMCTL32_Free(item); |
| 238 | return -1; |
| 239 | } |
| 240 | item->next = moving->next; |
| 241 | moving->next = item; |
| 242 | } |
| 243 | |
| 244 | /* fill in our hidden item structure */ |
| 245 | item->mask = cit->mask; |
| 246 | if (item->mask & CBEIF_TEXT) { |
| 247 | LPSTR str; |
| 248 | INT len; |
| 249 | |
| 250 | str = cit->pszText; |
| 251 | if (!str) str=""; |
| 252 | len = MultiByteToWideChar (CP_ACP, 0, str, -1, NULL, 0); |
| 253 | if (len > 0) { |
| 254 | item->pszText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR)); |
| 255 | MultiByteToWideChar (CP_ACP, 0, str, -1, item->pszText, len); |
| 256 | } |
| 257 | item->cchTextMax = cit->cchTextMax; |
| 258 | } |
| 259 | if (item->mask & CBEIF_IMAGE) |
| 260 | item->iImage = cit->iImage; |
| 261 | if (item->mask & CBEIF_SELECTEDIMAGE) |
| 262 | item->iSelectedImage = cit->iSelectedImage; |
| 263 | if (item->mask & CBEIF_OVERLAY) |
| 264 | item->iOverlay = cit->iOverlay; |
| 265 | if (item->mask & CBEIF_INDENT) |
| 266 | item->iIndent = cit->iIndent; |
| 267 | if (item->mask & CBEIF_LPARAM) |
| 268 | item->lParam = cit->lParam; |
| 269 | infoPtr->nb_items++; |
| 270 | |
| 271 | COMBOEX_DumpItem (item); |
| 272 | |
| 273 | SendMessageA (infoPtr->hwndCombo, CB_INSERTSTRING, |
| 274 | (WPARAM)cit->iItem, (LPARAM)item); |
| 275 | |
| 276 | return index; |
| 277 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 281 | static LRESULT |
| 282 | COMBOEX_InsertItemW (HWND hwnd, WPARAM wParam, LPARAM lParam) |
| 283 | { |
| 284 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
| 285 | COMBOBOXEXITEMW *cit = (COMBOBOXEXITEMW *) lParam; |
| 286 | INT index; |
| 287 | CBE_ITEMDATA *item; |
| 288 | |
| 289 | /* get real index of item to insert */ |
| 290 | index = cit->iItem; |
| 291 | if (index == -1) index = infoPtr->nb_items; |
| 292 | if (index > infoPtr->nb_items) index = infoPtr->nb_items; |
| 293 | |
| 294 | /* get space and chain it in */ |
| 295 | item = (CBE_ITEMDATA *)COMCTL32_Alloc (sizeof (CBE_ITEMDATA)); |
| 296 | item->next = NULL; |
| 297 | item->pszText = NULL; |
| 298 | |
| 299 | /* locate position to insert new item in */ |
| 300 | if (index == infoPtr->nb_items) { |
| 301 | /* fast path for iItem = -1 */ |
| 302 | item->next = infoPtr->items; |
| 303 | infoPtr->items = item; |
| 304 | } |
| 305 | else { |
| 306 | INT i = infoPtr->nb_items-1; |
| 307 | CBE_ITEMDATA *moving = infoPtr->items; |
| 308 | |
| 309 | while ((i > index) && moving) { |
| 310 | moving = (CBE_ITEMDATA *)moving->next; |
| 311 | i--; |
| 312 | } |
| 313 | if (!moving) { |
| 314 | FIXME("COMBOBOXEX item structures broken. Please report!\n"); |
| 315 | COMCTL32_Free(item); |
| 316 | return -1; |
| 317 | } |
| 318 | item->next = moving->next; |
| 319 | moving->next = item; |
| 320 | } |
| 321 | |
| 322 | /* fill in our hidden item structure */ |
| 323 | item->mask = cit->mask; |
| 324 | if (item->mask & CBEIF_TEXT) { |
| 325 | LPWSTR str; |
| 326 | INT len; |
| 327 | |
| 328 | str = cit->pszText; |
| 329 | if (!str) str = (LPWSTR) L""; |
| 330 | len = strlenW (str); |
| 331 | if (len > 0) { |
| 332 | item->pszText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR)); |
| 333 | strcpyW (item->pszText, str); |
| 334 | } |
| 335 | item->cchTextMax = cit->cchTextMax; |
| 336 | } |
| 337 | if (item->mask & CBEIF_IMAGE) |
| 338 | item->iImage = cit->iImage; |
| 339 | if (item->mask & CBEIF_SELECTEDIMAGE) |
| 340 | item->iSelectedImage = cit->iSelectedImage; |
| 341 | if (item->mask & CBEIF_OVERLAY) |
| 342 | item->iOverlay = cit->iOverlay; |
| 343 | if (item->mask & CBEIF_INDENT) |
| 344 | item->iIndent = cit->iIndent; |
| 345 | if (item->mask & CBEIF_LPARAM) |
| 346 | item->lParam = cit->lParam; |
| 347 | infoPtr->nb_items++; |
| 348 | |
| 349 | COMBOEX_DumpItem (item); |
| 350 | |
| 351 | SendMessageA (infoPtr->hwndCombo, CB_INSERTSTRING, |
| 352 | (WPARAM)cit->iItem, (LPARAM)item); |
| 353 | |
| 354 | return index; |
| 355 | |
| 356 | } |
| 357 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 358 | |
| 359 | static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 360 | COMBOEX_SetExtendedStyle (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 361 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 362 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 363 | DWORD dwTemp; |
| 364 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 365 | TRACE("(0x%08x 0x%08lx)\n", wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 366 | |
| 367 | dwTemp = infoPtr->dwExtStyle; |
| 368 | |
| 369 | if ((DWORD)wParam) { |
| 370 | infoPtr->dwExtStyle = (infoPtr->dwExtStyle & ~(DWORD)wParam) | (DWORD)lParam; |
| 371 | } |
| 372 | else |
| 373 | infoPtr->dwExtStyle = (DWORD)lParam; |
| 374 | |
| 375 | /* FIXME: repaint?? */ |
| 376 | |
| 377 | return (LRESULT)dwTemp; |
| 378 | } |
| 379 | |
| 380 | |
Patrik Stridvall | 896889f | 1999-05-08 12:50:36 +0000 | [diff] [blame] | 381 | inline static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 382 | COMBOEX_SetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 383 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 384 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 385 | HIMAGELIST himlTemp; |
| 386 | |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 387 | TRACE("(0x%08x 0x%08lx)\n", wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 388 | |
| 389 | himlTemp = infoPtr->himl; |
| 390 | infoPtr->himl = (HIMAGELIST)lParam; |
| 391 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 392 | COMBOEX_ReSize (hwnd, infoPtr); |
| 393 | InvalidateRect (hwnd, NULL, TRUE); |
| 394 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 395 | return (LRESULT)himlTemp; |
| 396 | } |
| 397 | |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 398 | static LRESULT |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 399 | COMBOEX_SetItemW (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 400 | { |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 401 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 402 | COMBOBOXEXITEMW *cit = (COMBOBOXEXITEMW *) lParam; |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 403 | INT index; |
| 404 | INT i; |
| 405 | CBE_ITEMDATA *item; |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 406 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 407 | /* get real index of item to insert */ |
| 408 | index = cit->iItem; |
| 409 | if (index == -1) { |
| 410 | FIXME("NYI setting data for item in edit control\n"); |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | /* if item number requested does not exist then return failure */ |
| 415 | if ((index > infoPtr->nb_items) || (index < 0)) return 0; |
| 416 | |
| 417 | /* find the item in the list */ |
| 418 | item = infoPtr->items; |
| 419 | i = infoPtr->nb_items - 1; |
| 420 | while (item && (i > index)) { |
| 421 | item = (CBE_ITEMDATA *)item->next; |
| 422 | i--; |
| 423 | } |
| 424 | if (!item || (i != index)) { |
| 425 | FIXME("COMBOBOXEX item structures broken. Please report!\n"); |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | /* add/change stuff to the internal item structure */ |
| 430 | item->mask |= cit->mask; |
| 431 | if (cit->mask & CBEIF_TEXT) { |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 432 | LPWSTR str; |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 433 | INT len; |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 434 | WCHAR emptystr[1] = {0}; |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 435 | |
| 436 | str = cit->pszText; |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 437 | if (!str) str=emptystr; |
| 438 | len = strlenW(str); |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 439 | if (len > 0) { |
| 440 | item->pszText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR)); |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 441 | strcpyW(item->pszText,str); |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 442 | } |
| 443 | item->cchTextMax = cit->cchTextMax; |
| 444 | } |
| 445 | if (cit->mask & CBEIF_IMAGE) |
| 446 | item->iImage = cit->iImage; |
| 447 | if (cit->mask & CBEIF_SELECTEDIMAGE) |
| 448 | item->iSelectedImage = cit->iSelectedImage; |
| 449 | if (cit->mask & CBEIF_OVERLAY) |
| 450 | item->iOverlay = cit->iOverlay; |
| 451 | if (cit->mask & CBEIF_INDENT) |
| 452 | item->iIndent = cit->iIndent; |
| 453 | if (cit->mask & CBEIF_LPARAM) |
| 454 | cit->lParam = cit->lParam; |
| 455 | |
| 456 | COMBOEX_DumpItem (item); |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 457 | |
| 458 | return TRUE; |
| 459 | } |
| 460 | |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 461 | static LRESULT |
| 462 | COMBOEX_SetItemA (HWND hwnd, WPARAM wParam, LPARAM lParam) |
| 463 | { |
| 464 | COMBOBOXEXITEMA *cit = (COMBOBOXEXITEMA *) lParam; |
| 465 | COMBOBOXEXITEMW citW; |
| 466 | LRESULT ret; |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 467 | |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 468 | memcpy(&citW,cit,sizeof(COMBOBOXEXITEMA)); |
| 469 | if (cit->mask & CBEIF_TEXT) { |
| 470 | LPSTR str; |
| 471 | INT len; |
| 472 | |
| 473 | str = cit->pszText; |
| 474 | if (!str) str=""; |
| 475 | len = MultiByteToWideChar (CP_ACP, 0, str, -1, NULL, 0); |
| 476 | if (len > 0) { |
| 477 | citW.pszText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR)); |
| 478 | MultiByteToWideChar (CP_ACP, 0, str, -1, citW.pszText, len); |
| 479 | } |
| 480 | } |
| 481 | ret = COMBOEX_SetItemW(hwnd,wParam,(LPARAM)&citW);; |
| 482 | |
| 483 | if (cit->mask & CBEIF_TEXT) |
| 484 | COMCTL32_Free(citW.pszText); |
| 485 | return ret; |
| 486 | } |
| 487 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 488 | |
| 489 | /* << COMBOEX_SetUniCodeFormat >> */ |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 490 | |
| 491 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 492 | /* *** CB_xxx message support *** */ |
| 493 | |
| 494 | |
| 495 | static LRESULT |
| 496 | COMBOEX_SetItemHeight (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 497 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 498 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 499 | RECT cb_wrect, cbx_wrect, cbx_crect; |
| 500 | LRESULT ret = 0; |
| 501 | UINT height; |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 502 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 503 | /* First, lets forward the message to the normal combo control |
| 504 | just like Windows. */ |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 505 | if (infoPtr->hwndCombo) |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 506 | SendMessageA (infoPtr->hwndCombo, CB_SETITEMHEIGHT, wParam, lParam); |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 507 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 508 | /* *** new *** */ |
| 509 | GetWindowRect (infoPtr->hwndCombo, &cb_wrect); |
| 510 | GetWindowRect (hwnd, &cbx_wrect); |
| 511 | GetClientRect (hwnd, &cbx_crect); |
| 512 | /* the height of comboex as height of the combo + comboex border */ |
| 513 | height = cb_wrect.bottom-cb_wrect.top |
| 514 | + cbx_wrect.bottom-cbx_wrect.top |
| 515 | - (cbx_crect.bottom-cbx_crect.top); |
| 516 | TRACE("EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)\n", |
| 517 | cbx_wrect.left, cbx_wrect.top, cbx_wrect.right, cbx_wrect.bottom, |
| 518 | cbx_crect.left, cbx_crect.top, cbx_crect.right, cbx_crect.bottom); |
| 519 | TRACE("CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)\n", |
| 520 | cb_wrect.left, cb_wrect.top, cb_wrect.right, cb_wrect.bottom, |
| 521 | cbx_wrect.right-cbx_wrect.left, height); |
| 522 | SetWindowPos (hwnd, HWND_TOP, 0, 0, |
| 523 | cbx_wrect.right-cbx_wrect.left, |
| 524 | height, |
| 525 | SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOMOVE); |
| 526 | /* *** end new *** */ |
| 527 | |
| 528 | return ret; |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 529 | } |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 530 | |
| 531 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 532 | /* *** WM_xxx message support *** */ |
| 533 | |
| 534 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 535 | static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 536 | COMBOEX_Create (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 537 | { |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 538 | LPCREATESTRUCTA cs = (LPCREATESTRUCTA) lParam; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 539 | COMBOEX_INFO *infoPtr; |
| 540 | DWORD dwComboStyle; |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 541 | LOGFONTA mylogfont; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 542 | |
| 543 | /* allocate memory for info structure */ |
| 544 | infoPtr = (COMBOEX_INFO *)COMCTL32_Alloc (sizeof(COMBOEX_INFO)); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 545 | if (infoPtr == NULL) { |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 546 | ERR("could not allocate info memory!\n"); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 547 | return 0; |
| 548 | } |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 549 | infoPtr->items = NULL; |
| 550 | infoPtr->nb_items = 0; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 551 | |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 552 | SetWindowLongA (hwnd, 0, (DWORD)infoPtr); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 553 | |
| 554 | |
| 555 | /* initialize info structure */ |
| 556 | |
| 557 | |
| 558 | /* create combo box */ |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 559 | dwComboStyle = GetWindowLongA (hwnd, GWL_STYLE) & |
| 560 | (CBS_SIMPLE|CBS_DROPDOWN|CBS_DROPDOWNLIST|WS_CHILD); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 561 | |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 562 | infoPtr->hwndCombo = CreateWindowA ("ComboBox", "", |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 563 | /* following line added to match native */ |
| 564 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VSCROLL | CBS_NOINTEGRALHEIGHT | |
| 565 | /* was base and is necessary */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 566 | WS_CHILD | WS_VISIBLE | CBS_OWNERDRAWFIXED | dwComboStyle, |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 567 | cs->y, cs->x, cs->cx, cs->cy, hwnd, (HMENU)0, |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 568 | GetWindowLongA (hwnd, GWL_HINSTANCE), NULL); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 569 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 570 | /* *** new *** */ |
| 571 | SystemParametersInfoA (SPI_GETICONTITLELOGFONT, sizeof(mylogfont), &mylogfont, 0); |
| 572 | infoPtr->font = CreateFontIndirectA (&mylogfont); |
| 573 | SendMessageA (infoPtr->hwndCombo, WM_SETFONT, (WPARAM)infoPtr->font, 0); |
| 574 | COMBOEX_ReSize (hwnd, infoPtr); |
| 575 | /* *** end new *** */ |
| 576 | |
| 577 | return 0; |
| 578 | } |
| 579 | |
| 580 | |
| 581 | inline static LRESULT |
| 582 | COMBOEX_DrawItem (HWND hwnd, WPARAM wParam, LPARAM lParam) |
| 583 | { |
| 584 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
| 585 | DRAWITEMSTRUCT *dis = (DRAWITEMSTRUCT *)lParam; |
| 586 | CBE_ITEMDATA *item; |
| 587 | SIZE txtsize; |
| 588 | COLORREF nbkc, ntxc; |
| 589 | RECT rect; |
| 590 | int drawimage; |
| 591 | UINT x, xbase, y; |
| 592 | UINT xioff = 0; /* size and spacer of image if any */ |
| 593 | IMAGEINFO iinfo; |
| 594 | INT len; |
| 595 | |
| 596 | if (!IsWindowEnabled(infoPtr->hwndCombo)) return 0; |
| 597 | |
Guy L. Albertelli | 312beec | 2000-10-31 01:00:39 +0000 | [diff] [blame] | 598 | /* MSDN says: */ |
| 599 | /* "itemID - Specifies the menu item identifier for a menu */ |
| 600 | /* item or the index of the item in a list box or combo box. */ |
| 601 | /* For an empty list box or combo box, this member can be -1. */ |
| 602 | /* This allows the application to draw only the focus */ |
| 603 | /* rectangle at the coordinates specified by the rcItem */ |
| 604 | /* member even though there are no items in the control. */ |
| 605 | /* This indicates to the user whether the list box or combo */ |
| 606 | /* box has the focus. How the bits are set in the itemAction */ |
| 607 | /* member determines whether the rectangle is to be drawn as */ |
| 608 | /* though the list box or combo box has the focus. */ |
| 609 | if (dis->itemID == 0xffffffff) { |
| 610 | if ( ( (dis->itemAction & ODA_FOCUS) && (dis->itemState & ODS_SELECTED)) || |
| 611 | ( (dis->itemAction & (ODA_SELECT | ODA_DRAWENTIRE)) && (dis->itemState & ODS_FOCUS) ) ) { |
| 612 | TRACE("drawing item -1 special focus, rect=(%d,%d)-(%d,%d)\n", |
| 613 | dis->rcItem.left, dis->rcItem.top, |
| 614 | dis->rcItem.right, dis->rcItem.bottom); |
| 615 | DrawFocusRect(dis->hDC, &dis->rcItem); |
| 616 | return 0; |
| 617 | } |
| 618 | else { |
| 619 | TRACE("NOT drawing item -1 special focus, rect=(%d,%d)-(%d,%d), action=%08x, state=%08x\n", |
| 620 | dis->rcItem.left, dis->rcItem.top, |
| 621 | dis->rcItem.right, dis->rcItem.bottom, |
| 622 | dis->itemAction, dis->itemState); |
| 623 | return 0; |
| 624 | } |
| 625 | } |
| 626 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 627 | item = (CBE_ITEMDATA *)SendMessageA (infoPtr->hwndCombo, CB_GETITEMDATA, |
| 628 | (WPARAM)dis->itemID, 0); |
Uwe Bonnes | a07258d | 2000-10-29 18:04:45 +0000 | [diff] [blame] | 629 | if (item == (CBE_ITEMDATA *)CB_ERR) |
| 630 | { |
Guy L. Albertelli | 312beec | 2000-10-31 01:00:39 +0000 | [diff] [blame] | 631 | FIXME("invalid item for id %d \n",dis->itemID); |
Uwe Bonnes | a07258d | 2000-10-29 18:04:45 +0000 | [diff] [blame] | 632 | return 0; |
| 633 | } |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 634 | if (!TRACE_ON(message)) { |
| 635 | TRACE("DRAWITEMSTRUCT: CtlType=0x%08x CtlID=0x%08x\n", |
| 636 | dis->CtlType, dis->CtlID); |
| 637 | TRACE("itemID=0x%08x itemAction=0x%08x itemState=0x%08x\n", |
| 638 | dis->itemID, dis->itemAction, dis->itemState); |
| 639 | TRACE("hWnd=0x%04x hDC=0x%04x (%d,%d)-(%d,%d) itemData=0x%08lx\n", |
| 640 | dis->hwndItem, dis->hDC, dis->rcItem.left, |
| 641 | dis->rcItem.top, dis->rcItem.right, dis->rcItem.bottom, |
| 642 | dis->itemData); |
| 643 | } |
| 644 | COMBOEX_DumpItem (item); |
| 645 | |
| 646 | xbase = CBE_STARTOFFSET; |
| 647 | if (item->mask & CBEIF_INDENT) |
| 648 | xbase += (item->iIndent * CBE_INDENT); |
| 649 | if (item->mask & CBEIF_IMAGE) { |
| 650 | ImageList_GetImageInfo(infoPtr->himl, item->iImage, &iinfo); |
| 651 | xioff = (iinfo.rcImage.right - iinfo.rcImage.left + CBE_SEP); |
| 652 | } |
| 653 | |
| 654 | switch (dis->itemAction) { |
| 655 | case ODA_FOCUS: |
| 656 | if (dis->itemState & ODS_SELECTED /*1*/) { |
| 657 | if ((item->mask & CBEIF_TEXT) && item->pszText) { |
| 658 | len = strlenW (item->pszText); |
| 659 | GetTextExtentPointW (dis->hDC, item->pszText, len, &txtsize); |
| 660 | rect.left = xbase + xioff - 1; |
| 661 | rect.top = dis->rcItem.top - 1 + |
| 662 | (dis->rcItem.bottom - dis->rcItem.top - txtsize.cy) / 2; |
| 663 | rect.right = rect.left + txtsize.cx + 2; |
| 664 | rect.bottom = rect.top + txtsize.cy + 2; |
| 665 | TRACE("drawing item %d focus, rect=(%d,%d)-(%d,%d)\n", |
| 666 | dis->itemID, rect.left, rect.top, |
| 667 | rect.right, rect.bottom); |
| 668 | DrawFocusRect(dis->hDC, &rect); |
| 669 | } |
| 670 | } |
| 671 | break; |
| 672 | case ODA_SELECT: |
| 673 | case ODA_DRAWENTIRE: |
| 674 | drawimage = -1; |
| 675 | if (item->mask & CBEIF_IMAGE) drawimage = item->iImage; |
| 676 | if ((dis->itemState & ODS_SELECTED) && |
| 677 | (item->mask & CBEIF_SELECTEDIMAGE)) |
| 678 | drawimage = item->iSelectedImage; |
| 679 | if (drawimage != -1) { |
| 680 | ImageList_Draw (infoPtr->himl, drawimage, dis->hDC, |
| 681 | xbase, dis->rcItem.top, |
| 682 | (dis->itemState & ODS_SELECTED) ? |
| 683 | ILD_SELECTED : ILD_NORMAL); |
| 684 | } |
| 685 | if ((item->mask & CBEIF_TEXT) && item->pszText) { |
| 686 | len = strlenW (item->pszText); |
| 687 | GetTextExtentPointW (dis->hDC, item->pszText, len, &txtsize); |
| 688 | nbkc = GetSysColor ((dis->itemState & ODS_SELECTED) ? |
| 689 | COLOR_HIGHLIGHT : COLOR_WINDOW); |
| 690 | SetBkColor (dis->hDC, nbkc); |
| 691 | ntxc = GetSysColor ((dis->itemState & ODS_SELECTED) ? |
| 692 | COLOR_HIGHLIGHTTEXT : COLOR_WINDOWTEXT); |
| 693 | SetTextColor (dis->hDC, ntxc); |
| 694 | x = xbase + xioff; |
| 695 | y = dis->rcItem.top + |
| 696 | (dis->rcItem.bottom - dis->rcItem.top - txtsize.cy) / 2; |
| 697 | rect.left = x; |
| 698 | rect.right = x + txtsize.cx; |
| 699 | rect.top = y; |
| 700 | rect.bottom = y + txtsize.cy; |
| 701 | TRACE("drawing item %d text, rect=(%d,%d)-(%d,%d)\n", |
| 702 | dis->itemID, rect.left, rect.top, rect.right, rect.bottom); |
| 703 | ExtTextOutW (dis->hDC, x, y, ETO_OPAQUE | ETO_CLIPPED, |
| 704 | &rect, item->pszText, len, 0); |
| 705 | if (dis->itemState & ODS_FOCUS) { |
| 706 | rect.top -= 1; |
| 707 | rect.bottom += 1; |
| 708 | rect.left -= 1; |
| 709 | rect.right += 2; |
| 710 | TRACE("drawing item %d focus, rect=(%d,%d)-(%d,%d)\n", |
| 711 | dis->itemID, rect.left, rect.top, rect.right, rect.bottom); |
| 712 | DrawFocusRect (dis->hDC, &rect); |
| 713 | } |
| 714 | } |
| 715 | break; |
| 716 | default: |
| 717 | FIXME("unknown action hwnd=%08x, wparam=%08x, lparam=%08lx, action=%d\n", |
| 718 | hwnd, wParam, lParam, dis->itemAction); |
| 719 | } |
| 720 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 721 | return 0; |
| 722 | } |
| 723 | |
| 724 | |
| 725 | static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 726 | COMBOEX_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 727 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 728 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 729 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 730 | if (infoPtr->hwndCombo) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 731 | DestroyWindow (infoPtr->hwndCombo); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 732 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 733 | if (infoPtr->items) { |
| 734 | CBE_ITEMDATA *this, *next; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 735 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 736 | this = infoPtr->items; |
| 737 | while (this) { |
| 738 | next = (CBE_ITEMDATA *)this->next; |
| 739 | if ((this->mask & CBEIF_TEXT) && this->pszText) |
| 740 | COMCTL32_Free (this->pszText); |
| 741 | COMCTL32_Free (this); |
| 742 | this = next; |
| 743 | } |
| 744 | } |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 745 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 746 | DeleteObject (infoPtr->font); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 747 | |
| 748 | /* free comboex info data */ |
| 749 | COMCTL32_Free (infoPtr); |
Gerard Patel | a1b2fc2 | 2000-05-10 01:34:53 +0000 | [diff] [blame] | 750 | SetWindowLongA (hwnd, 0, 0); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | |
| 755 | static LRESULT |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 756 | COMBOEX_MeasureItem (HWND hwnd, WPARAM wParam, LPARAM lParam) |
| 757 | { |
| 758 | /*COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd);*/ |
| 759 | MEASUREITEMSTRUCT *mis = (MEASUREITEMSTRUCT *) lParam; |
| 760 | HDC hdc; |
| 761 | SIZE mysize; |
| 762 | |
| 763 | hdc = GetDC (0); |
| 764 | GetTextExtentPointA (hdc, "W", 1, &mysize); |
| 765 | ReleaseDC (0, hdc); |
| 766 | mis->itemHeight = mysize.cy + CBE_EXTRA; |
| 767 | |
| 768 | TRACE("adjusted height hwnd=%08x, height=%d\n", |
| 769 | hwnd, mis->itemHeight); |
| 770 | |
| 771 | return 0; |
| 772 | } |
| 773 | |
| 774 | |
| 775 | static LRESULT |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 776 | COMBOEX_Size (HWND hwnd, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 777 | { |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 778 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 779 | RECT rect; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 780 | |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 781 | GetClientRect (hwnd, &rect); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 782 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 783 | MoveWindow (infoPtr->hwndCombo, 0, 0, rect.right -rect.left, |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 784 | rect.bottom - rect.top, TRUE); |
| 785 | |
| 786 | return 0; |
| 787 | } |
| 788 | |
| 789 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 790 | static LRESULT |
| 791 | COMBOEX_WindowPosChanging (HWND hwnd, WPARAM wParam, LPARAM lParam) |
| 792 | { |
| 793 | COMBOEX_INFO *infoPtr = COMBOEX_GetInfoPtr (hwnd); |
| 794 | LRESULT ret; |
| 795 | RECT cbx_wrect, cbx_crect, cb_wrect; |
| 796 | UINT width; |
| 797 | WINDOWPOS *wp = (WINDOWPOS *)lParam; |
| 798 | |
| 799 | ret = DefWindowProcA (hwnd, WM_WINDOWPOSCHANGING, wParam, lParam); |
| 800 | GetWindowRect (hwnd, &cbx_wrect); |
| 801 | GetClientRect (hwnd, &cbx_crect); |
| 802 | GetWindowRect (infoPtr->hwndCombo, &cb_wrect); |
| 803 | |
| 804 | /* width is winpos value + border width of comboex */ |
| 805 | width = wp->cx |
| 806 | + cbx_wrect.right-cbx_wrect.left |
| 807 | - (cbx_crect.right - cbx_crect.left); |
| 808 | |
| 809 | TRACE("EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)\n", |
| 810 | cbx_wrect.left, cbx_wrect.top, cbx_wrect.right, cbx_wrect.bottom, |
| 811 | cbx_crect.left, cbx_crect.top, cbx_crect.right, cbx_crect.bottom); |
| 812 | TRACE("CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)\n", |
| 813 | cb_wrect.left, cb_wrect.top, cb_wrect.right, cb_wrect.bottom, |
| 814 | width, cb_wrect.bottom-cb_wrect.top); |
| 815 | |
| 816 | SetWindowPos (infoPtr->hwndCombo, HWND_TOP, 0, 0, |
| 817 | width, |
| 818 | cb_wrect.bottom-cb_wrect.top, |
| 819 | SWP_NOACTIVATE); |
| 820 | |
| 821 | return 0; |
| 822 | } |
| 823 | |
| 824 | |
Patrik Stridvall | 26ffb3c | 1999-07-31 14:41:43 +0000 | [diff] [blame] | 825 | static LRESULT WINAPI |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 826 | COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 827 | { |
Gerard Patel | a1b2fc2 | 2000-05-10 01:34:53 +0000 | [diff] [blame] | 828 | TRACE("hwnd=%x msg=%x wparam=%x lParam=%lx\n", hwnd, uMsg, wParam, lParam); |
| 829 | if (!COMBOEX_GetInfoPtr (hwnd) && (uMsg != WM_CREATE)) |
| 830 | return DefWindowProcA (hwnd, uMsg, wParam, lParam); |
| 831 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 832 | switch (uMsg) |
| 833 | { |
Andreas Mohr | 7a6228d | 1998-12-11 09:16:48 +0000 | [diff] [blame] | 834 | /* case CBEM_DELETEITEM: */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 835 | |
| 836 | case CBEM_GETCOMBOCONTROL: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 837 | return COMBOEX_GetComboControl (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 838 | |
| 839 | case CBEM_GETEDITCONTROL: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 840 | return COMBOEX_GetEditControl (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 841 | |
| 842 | case CBEM_GETEXTENDEDSTYLE: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 843 | return COMBOEX_GetExtendedStyle (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 844 | |
| 845 | case CBEM_GETIMAGELIST: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 846 | return COMBOEX_GetImageList (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 847 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 848 | /* case CBEM_GETITEMA: |
| 849 | case CBEM_GETITEMW: |
Andreas Mohr | 7a6228d | 1998-12-11 09:16:48 +0000 | [diff] [blame] | 850 | case CBEM_GETUNICODEFORMAT: |
| 851 | case CBEM_HASEDITCHANGED: |
| 852 | */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 853 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 854 | case CBEM_INSERTITEMA: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 855 | return COMBOEX_InsertItemA (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 856 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 857 | case CBEM_INSERTITEMW: |
| 858 | return COMBOEX_InsertItemW (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 859 | |
Marcus Meissner | a0dc421 | 2000-11-05 03:19:06 +0000 | [diff] [blame] | 860 | case CBEM_SETEXSTYLE: /* FIXME: obsoleted, should be the same as: */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 861 | case CBEM_SETEXTENDEDSTYLE: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 862 | return COMBOEX_SetExtendedStyle (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 863 | |
| 864 | case CBEM_SETIMAGELIST: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 865 | return COMBOEX_SetImageList (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 866 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 867 | case CBEM_SETITEMA: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 868 | return COMBOEX_SetItemA (hwnd, wParam, lParam); |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 869 | |
Marcus Meissner | 643fcff | 2000-11-06 20:22:06 +0000 | [diff] [blame^] | 870 | case CBEM_SETITEMW: |
| 871 | return COMBOEX_SetItemW (hwnd, wParam, lParam); |
| 872 | |
| 873 | /* case CBEM_SETUNICODEFORMAT: |
Andreas Mohr | 7a6228d | 1998-12-11 09:16:48 +0000 | [diff] [blame] | 874 | */ |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 875 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 876 | case CB_DELETESTRING: |
| 877 | case CB_FINDSTRINGEXACT: |
| 878 | case CB_GETCOUNT: |
| 879 | case CB_GETCURSEL: |
| 880 | case CB_GETDROPPEDCONTROLRECT: |
| 881 | case CB_GETDROPPEDSTATE: |
| 882 | case CB_GETITEMDATA: |
| 883 | case CB_GETITEMHEIGHT: |
| 884 | case CB_GETLBTEXT: |
| 885 | case CB_GETLBTEXTLEN: |
| 886 | case CB_GETEXTENDEDUI: |
| 887 | case CB_LIMITTEXT: |
| 888 | case CB_RESETCONTENT: |
| 889 | case CB_SELECTSTRING: |
| 890 | case CB_SETCURSEL: |
| 891 | case CB_SETDROPPEDWIDTH: |
| 892 | case CB_SETEXTENDEDUI: |
| 893 | case CB_SETITEMDATA: |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 894 | case CB_SHOWDROPDOWN: |
Marcus Meissner | a0dc421 | 2000-11-05 03:19:06 +0000 | [diff] [blame] | 895 | case WM_SETTEXT: |
| 896 | case WM_GETTEXT: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 897 | return COMBOEX_Forward (hwnd, uMsg, wParam, lParam); |
Eric Kohl | 66ef011 | 1998-11-22 17:58:40 +0000 | [diff] [blame] | 898 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 899 | case CB_SETITEMHEIGHT: |
| 900 | return COMBOEX_SetItemHeight (hwnd, wParam, lParam); |
| 901 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 902 | |
| 903 | case WM_CREATE: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 904 | return COMBOEX_Create (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 905 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 906 | case WM_DRAWITEM: |
| 907 | return COMBOEX_DrawItem (hwnd, wParam, lParam); |
| 908 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 909 | case WM_DESTROY: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 910 | return COMBOEX_Destroy (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 911 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 912 | case WM_MEASUREITEM: |
| 913 | return COMBOEX_MeasureItem (hwnd, wParam, lParam); |
| 914 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 915 | case WM_SIZE: |
Eric Kohl | cad17ff | 1999-03-12 17:42:50 +0000 | [diff] [blame] | 916 | return COMBOEX_Size (hwnd, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 917 | |
Guy L. Albertelli | c6c53cd | 2000-10-29 01:16:53 +0000 | [diff] [blame] | 918 | case WM_WINDOWPOSCHANGING: |
| 919 | return COMBOEX_WindowPosChanging (hwnd, wParam, lParam); |
| 920 | |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 921 | default: |
| 922 | if (uMsg >= WM_USER) |
Alexandre Julliard | a099a55 | 1999-06-12 15:45:58 +0000 | [diff] [blame] | 923 | ERR("unknown msg %04x wp=%08x lp=%08lx\n", |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 924 | uMsg, wParam, lParam); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 925 | return DefWindowProcA (hwnd, uMsg, wParam, lParam); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 926 | } |
| 927 | return 0; |
| 928 | } |
| 929 | |
| 930 | |
Eric Kohl | 9d8e864 | 1998-10-24 10:49:27 +0000 | [diff] [blame] | 931 | VOID |
Patrik Stridvall | 9e61c1c | 1999-06-12 08:27:49 +0000 | [diff] [blame] | 932 | COMBOEX_Register (void) |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 933 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 934 | WNDCLASSA wndClass; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 935 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 936 | ZeroMemory (&wndClass, sizeof(WNDCLASSA)); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 937 | wndClass.style = CS_GLOBALCLASS; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 938 | wndClass.lpfnWndProc = (WNDPROC)COMBOEX_WindowProc; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 939 | wndClass.cbClsExtra = 0; |
| 940 | wndClass.cbWndExtra = sizeof(COMBOEX_INFO *); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 941 | wndClass.hCursor = LoadCursorA (0, IDC_ARROWA); |
| 942 | wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); |
| 943 | wndClass.lpszClassName = WC_COMBOBOXEXA; |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 944 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 945 | RegisterClassA (&wndClass); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 946 | } |
| 947 | |
Eric Kohl | 9d8e864 | 1998-10-24 10:49:27 +0000 | [diff] [blame] | 948 | |
| 949 | VOID |
Patrik Stridvall | 9e61c1c | 1999-06-12 08:27:49 +0000 | [diff] [blame] | 950 | COMBOEX_Unregister (void) |
Eric Kohl | 9d8e864 | 1998-10-24 10:49:27 +0000 | [diff] [blame] | 951 | { |
Alexandre Julliard | d711ad9 | 2000-02-13 15:10:16 +0000 | [diff] [blame] | 952 | UnregisterClassA (WC_COMBOBOXEXA, (HINSTANCE)NULL); |
Eric Kohl | 9d8e864 | 1998-10-24 10:49:27 +0000 | [diff] [blame] | 953 | } |
| 954 | |