4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 2000, 2001, 2002 Guy Albertelli <galberte@neo.lrun.com>
6 * Copyright 2002 Dimitrie O. Paun
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * This code was audited for completeness against the documented features
25 * of Comctl32.dll version 6.0 on Sep. 9, 2002, by Dimitrie O. Paun.
27 * Unless otherwise noted, we believe this code to be complete, as per
28 * the specification mentioned above.
29 * If you discover missing features, or bugs, please note them below.
42 #include "wine/debug.h"
43 #include "wine/unicode.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(comboex
);
48 typedef struct _CBE_ITEMDATA
50 struct _CBE_ITEMDATA
*next
;
62 /* ComboBoxEx structure */
66 HWND hwndSelf
; /* my own hwnd */
67 HWND hwndNotify
; /* my parent hwnd */
70 WNDPROC prevEditWndProc
; /* previous Edit WNDPROC value */
71 WNDPROC prevComboWndProc
; /* previous Combo WNDPROC value */
73 INT selected
; /* index of selected item */
74 DWORD flags
; /* WINE internal flags */
77 INT nb_items
; /* Number of items */
78 BOOL unicode
; /* TRUE if this window is Unicode */
79 BOOL NtfUnicode
; /* TRUE if parent wants notify in Unicode */
80 CBE_ITEMDATA
*edit
; /* item data for edit item */
81 CBE_ITEMDATA
*items
; /* Array of items */
84 /* internal flags in the COMBOEX_INFO structure */
85 #define WCBE_ACTEDIT 0x00000001 /* Edit active i.e.
86 * CBEN_BEGINEDIT issued
87 * but CBEN_ENDEDIT{A|W}
89 #define WCBE_EDITCHG 0x00000002 /* Edit issued EN_CHANGE */
90 #define WCBE_EDITHASCHANGED (WCBE_ACTEDIT | WCBE_EDITCHG)
91 #define WCBE_EDITFOCUSED 0x00000004 /* Edit control has focus */
92 #define WCBE_MOUSECAPTURED 0x00000008 /* Combo has captured mouse */
93 #define WCBE_MOUSEDRAGGED 0x00000010 /* User has dragged in combo */
95 #define ID_CB_EDIT 1001
99 * Special flag set in DRAWITEMSTRUCT itemState field. It is set by
100 * the ComboEx version of the Combo Window Proc so that when the
101 * WM_DRAWITEM message is then passed to ComboEx, we know that this
102 * particular WM_DRAWITEM message is for listbox only items. Any messasges
103 * without this flag is then for the Edit control field.
105 * We really cannot use the ODS_COMBOBOXEDIT flag because MSDN states that
106 * only version 4.0 applications will have ODS_COMBOBOXEDIT set.
108 #define ODS_COMBOEXLBOX 0x4000
112 /* Height in pixels of control over the amount of the selected font */
115 /* Indent amount per MS documentation */
116 #define CBE_INDENT 10
118 /* Offset in pixels from left side for start of image or text */
119 #define CBE_STARTOFFSET 6
121 /* Offset between image and text */
124 static const WCHAR COMBOEX_SUBCLASS_PROP
[] = {
125 'C','C','C','o','m','b','o','E','x','3','2',
126 'S','u','b','c','l','a','s','s','I','n','f','o',0
129 #define COMBOEX_GetInfoPtr(hwnd) ((COMBOEX_INFO *)GetWindowLongPtrW (hwnd, 0))
132 /* Things common to the entire DLL */
133 static LRESULT WINAPI
COMBOEX_EditWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
134 static LRESULT WINAPI
COMBOEX_ComboWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
135 static LRESULT
COMBOEX_Destroy (COMBOEX_INFO
*infoPtr
);
136 typedef INT (WINAPI
*cmp_func_t
)(LPCWSTR
, LPCWSTR
);
138 static inline BOOL
is_textW(LPCWSTR str
)
140 return str
&& str
!= LPSTR_TEXTCALLBACKW
;
143 static inline BOOL
is_textA(LPCSTR str
)
145 return str
&& str
!= LPSTR_TEXTCALLBACKA
;
148 static inline LPCSTR
debugstr_txt(LPCWSTR str
)
150 if (str
== LPSTR_TEXTCALLBACKW
) return "(callback)";
151 return debugstr_w(str
);
154 static void COMBOEX_DumpItem (CBE_ITEMDATA
const *item
)
156 TRACE("item %p - mask=%08x, pszText=%p, cchTM=%d, iImage=%d\n",
157 item
, item
->mask
, item
->pszText
, item
->cchTextMax
, item
->iImage
);
158 TRACE("item %p - iSelectedImage=%d, iOverlay=%d, iIndent=%d, lParam=%08lx\n",
159 item
, item
->iSelectedImage
, item
->iOverlay
, item
->iIndent
, item
->lParam
);
160 if (item
->mask
& CBEIF_TEXT
)
161 TRACE("item %p - pszText=%s\n", item
, debugstr_txt(item
->pszText
));
165 static void COMBOEX_DumpInput (COMBOBOXEXITEMW
const *input
)
167 TRACE("input - mask=%08x, iItem=%d, pszText=%p, cchTM=%d, iImage=%d\n",
168 input
->mask
, input
->iItem
, input
->pszText
, input
->cchTextMax
,
170 if (input
->mask
& CBEIF_TEXT
)
171 TRACE("input - pszText=<%s>\n", debugstr_txt(input
->pszText
));
172 TRACE("input - iSelectedImage=%d, iOverlay=%d, iIndent=%d, lParam=%08lx\n",
173 input
->iSelectedImage
, input
->iOverlay
, input
->iIndent
, input
->lParam
);
177 static inline CBE_ITEMDATA
*get_item_data(COMBOEX_INFO
*infoPtr
, INT index
)
179 return (CBE_ITEMDATA
*)SendMessageW (infoPtr
->hwndCombo
, CB_GETITEMDATA
,
183 static inline cmp_func_t
get_cmp_func(COMBOEX_INFO
const *infoPtr
)
185 return infoPtr
->dwExtStyle
& CBES_EX_CASESENSITIVE
? lstrcmpW
: lstrcmpiW
;
188 static INT
COMBOEX_Notify (COMBOEX_INFO
*infoPtr
, INT code
, NMHDR
*hdr
)
190 hdr
->idFrom
= GetDlgCtrlID (infoPtr
->hwndSelf
);
191 hdr
->hwndFrom
= infoPtr
->hwndSelf
;
193 if (infoPtr
->NtfUnicode
)
194 return SendMessageW (infoPtr
->hwndNotify
, WM_NOTIFY
, 0, (LPARAM
)hdr
);
196 return SendMessageA (infoPtr
->hwndNotify
, WM_NOTIFY
, 0, (LPARAM
)hdr
);
201 COMBOEX_NotifyItem (COMBOEX_INFO
*infoPtr
, INT code
, NMCOMBOBOXEXW
*hdr
)
203 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
204 if (infoPtr
->NtfUnicode
)
205 return COMBOEX_Notify (infoPtr
, code
, &hdr
->hdr
);
207 LPWSTR wstr
= hdr
->ceItem
.pszText
;
211 if ((hdr
->ceItem
.mask
& CBEIF_TEXT
) && is_textW(wstr
)) {
212 len
= WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, 0, 0, NULL
, NULL
);
214 astr
= (LPSTR
)Alloc ((len
+ 1)*sizeof(CHAR
));
216 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, astr
, len
, 0, 0);
217 hdr
->ceItem
.pszText
= (LPWSTR
)astr
;
221 if (code
== CBEN_ENDEDITW
) code
= CBEN_ENDEDITA
;
222 else if (code
== CBEN_GETDISPINFOW
) code
= CBEN_GETDISPINFOA
;
223 else if (code
== CBEN_DRAGBEGINW
) code
= CBEN_DRAGBEGINA
;
225 ret
= COMBOEX_Notify (infoPtr
, code
, (NMHDR
*)hdr
);
227 if (astr
&& hdr
->ceItem
.pszText
== (LPWSTR
)astr
)
228 hdr
->ceItem
.pszText
= wstr
;
237 static INT
COMBOEX_NotifyEndEdit (COMBOEX_INFO
*infoPtr
, NMCBEENDEDITW
*neew
, LPCWSTR wstr
)
239 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
240 if (infoPtr
->NtfUnicode
) {
241 lstrcpynW(neew
->szText
, wstr
, CBEMAXSTRLEN
);
242 return COMBOEX_Notify (infoPtr
, CBEN_ENDEDITW
, &neew
->hdr
);
246 memcpy (&neea
.hdr
, &neew
->hdr
, sizeof(NMHDR
));
247 neea
.fChanged
= neew
->fChanged
;
248 neea
.iNewSelection
= neew
->iNewSelection
;
249 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, neea
.szText
, CBEMAXSTRLEN
, 0, 0);
250 neea
.iWhy
= neew
->iWhy
;
252 return COMBOEX_Notify (infoPtr
, CBEN_ENDEDITA
, &neea
.hdr
);
257 static void COMBOEX_NotifyDragBegin(COMBOEX_INFO
*infoPtr
, LPCWSTR wstr
)
259 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
260 if (infoPtr
->NtfUnicode
) {
261 NMCBEDRAGBEGINW ndbw
;
264 lstrcpynW(ndbw
.szText
, wstr
, CBEMAXSTRLEN
);
265 COMBOEX_Notify (infoPtr
, CBEN_DRAGBEGINW
, &ndbw
.hdr
);
267 NMCBEDRAGBEGINA ndba
;
270 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, ndba
.szText
, CBEMAXSTRLEN
, 0, 0);
272 COMBOEX_Notify (infoPtr
, CBEN_DRAGBEGINA
, &ndba
.hdr
);
277 static void COMBOEX_FreeText (CBE_ITEMDATA
*item
)
279 if (is_textW(item
->pszText
)) Free(item
->pszText
);
286 static INT
COMBOEX_GetIndex(COMBOEX_INFO
const *infoPtr
, CBE_ITEMDATA
const *item
)
288 CBE_ITEMDATA
const *moving
;
291 moving
= infoPtr
->items
;
292 index
= infoPtr
->nb_items
- 1;
294 while (moving
&& (moving
!= item
)) {
295 moving
= moving
->next
;
298 if (!moving
|| (index
< 0)) {
299 ERR("COMBOBOXEX item structures broken. Please report!\n");
306 static LPCWSTR
COMBOEX_GetText(COMBOEX_INFO
*infoPtr
, CBE_ITEMDATA
*item
)
312 if (item
->pszText
!= LPSTR_TEXTCALLBACKW
)
313 return item
->pszText
;
315 ZeroMemory(&nmce
, sizeof(nmce
));
316 nmce
.ceItem
.mask
= CBEIF_TEXT
;
317 nmce
.ceItem
.lParam
= item
->lParam
;
318 nmce
.ceItem
.iItem
= COMBOEX_GetIndex(infoPtr
, item
);
319 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
321 if (is_textW(nmce
.ceItem
.pszText
)) {
322 len
= MultiByteToWideChar (CP_ACP
, 0, (LPSTR
)nmce
.ceItem
.pszText
, -1, NULL
, 0);
323 buf
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
325 MultiByteToWideChar (CP_ACP
, 0, (LPSTR
)nmce
.ceItem
.pszText
, -1, buf
, len
);
326 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) {
327 COMBOEX_FreeText(item
);
335 text
= nmce
.ceItem
.pszText
;
337 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
338 item
->pszText
= text
;
343 static void COMBOEX_GetComboFontSize (COMBOEX_INFO
*infoPtr
, SIZE
*size
)
345 static const WCHAR strA
[] = { 'A', 0 };
349 mydc
= GetDC (0); /* why the entire screen???? */
350 nfont
= (HFONT
)SendMessageW (infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
351 ofont
= (HFONT
) SelectObject (mydc
, nfont
);
352 GetTextExtentPointW (mydc
, strA
, 1, size
);
353 SelectObject (mydc
, ofont
);
355 TRACE("selected font hwnd=%p, height=%d\n", nfont
, size
->cy
);
359 static void COMBOEX_CopyItem (CBE_ITEMDATA
*item
, COMBOBOXEXITEMW
*cit
)
361 if (cit
->mask
& CBEIF_TEXT
) {
363 * when given a text buffer actually use that buffer
366 if (is_textW(item
->pszText
))
367 lstrcpynW(cit
->pszText
, item
->pszText
, cit
->cchTextMax
);
371 cit
->pszText
= item
->pszText
;
372 cit
->cchTextMax
= item
->cchTextMax
;
375 if (cit
->mask
& CBEIF_IMAGE
)
376 cit
->iImage
= item
->iImage
;
377 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
378 cit
->iSelectedImage
= item
->iSelectedImage
;
379 if (cit
->mask
& CBEIF_OVERLAY
)
380 cit
->iOverlay
= item
->iOverlay
;
381 if (cit
->mask
& CBEIF_INDENT
)
382 cit
->iIndent
= item
->iIndent
;
383 if (cit
->mask
& CBEIF_LPARAM
)
384 cit
->lParam
= item
->lParam
;
388 static void COMBOEX_AdjustEditPos (COMBOEX_INFO
*infoPtr
)
391 INT x
, y
, w
, h
, xioff
;
394 if (!infoPtr
->hwndEdit
) return;
396 if (infoPtr
->himl
&& !(infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGEINDENT
)) {
398 iinfo
.rcImage
.left
= iinfo
.rcImage
.right
= 0;
399 ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
);
400 xioff
= iinfo
.rcImage
.right
- iinfo
.rcImage
.left
+ CBE_SEP
;
403 GetClientRect (infoPtr
->hwndCombo
, &rect
);
404 InflateRect (&rect
, -2, -2);
405 InvalidateRect (infoPtr
->hwndCombo
, &rect
, TRUE
);
407 /* reposition the Edit control based on whether icon exists */
408 COMBOEX_GetComboFontSize (infoPtr
, &mysize
);
409 TRACE("Combo font x=%d, y=%d\n", mysize
.cx
, mysize
.cy
);
410 x
= xioff
+ CBE_STARTOFFSET
+ 1;
411 w
= rect
.right
-rect
.left
- x
- GetSystemMetrics(SM_CXVSCROLL
) - 1;
413 y
= rect
.bottom
- h
- 1;
415 TRACE("Combo client (%d,%d)-(%d,%d), setting Edit to (%d,%d)-(%d,%d)\n",
416 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
, x
, y
, x
+ w
, y
+ h
);
417 SetWindowPos(infoPtr
->hwndEdit
, HWND_TOP
, x
, y
, w
, h
,
418 SWP_SHOWWINDOW
| SWP_NOACTIVATE
| SWP_NOZORDER
);
422 static void COMBOEX_ReSize (COMBOEX_INFO
*infoPtr
)
428 COMBOEX_GetComboFontSize (infoPtr
, &mysize
);
429 cy
= mysize
.cy
+ CBE_EXTRA
;
430 if (infoPtr
->himl
&& ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
)) {
431 cy
= max (iinfo
.rcImage
.bottom
- iinfo
.rcImage
.top
, cy
);
432 TRACE("upgraded height due to image: height=%d\n", cy
);
434 SendMessageW (infoPtr
->hwndSelf
, CB_SETITEMHEIGHT
, (WPARAM
)-1, (LPARAM
)cy
);
435 if (infoPtr
->hwndCombo
) {
436 SendMessageW (infoPtr
->hwndCombo
, CB_SETITEMHEIGHT
,
437 (WPARAM
) 0, (LPARAM
) cy
);
438 if ( !(infoPtr
->flags
& CBES_EX_NOSIZELIMIT
)) {
440 if (GetWindowRect(infoPtr
->hwndCombo
, &comboRect
)) {
442 if (GetWindowRect(infoPtr
->hwndSelf
, &ourRect
)) {
443 if (comboRect
.bottom
> ourRect
.bottom
) {
444 POINT pt
= { ourRect
.left
, ourRect
.top
};
445 if (ScreenToClient(infoPtr
->hwndSelf
, &pt
))
446 MoveWindow( infoPtr
->hwndSelf
, pt
.x
, pt
.y
, ourRect
.right
- ourRect
.left
,
447 comboRect
.bottom
- comboRect
.top
, FALSE
);
456 static void COMBOEX_SetEditText (COMBOEX_INFO
*infoPtr
, CBE_ITEMDATA
*item
)
458 if (!infoPtr
->hwndEdit
) return;
459 /* native issues the following messages to the {Edit} control */
460 /* WM_SETTEXT (0,addr) */
461 /* EM_SETSEL32 (0,0) */
462 /* EM_SETSEL32 (0,-1) */
463 if (item
->mask
& CBEIF_TEXT
) {
464 SendMessageW (infoPtr
->hwndEdit
, WM_SETTEXT
, 0, (LPARAM
)COMBOEX_GetText(infoPtr
, item
));
465 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, 0);
466 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, -1);
471 static CBE_ITEMDATA
* COMBOEX_FindItem(COMBOEX_INFO
*infoPtr
, INT index
)
476 if ((index
>= infoPtr
->nb_items
) || (index
< -1))
479 return infoPtr
->edit
;
480 item
= infoPtr
->items
;
481 i
= infoPtr
->nb_items
- 1;
483 /* find the item in the list */
484 while (item
&& (i
> index
)) {
488 if (!item
|| (i
!= index
)) {
489 ERR("COMBOBOXEX item structures broken. Please report!\n");
496 static inline BOOL
COMBOEX_HasEdit(COMBOEX_INFO
const *infoPtr
)
498 return infoPtr
->hwndEdit
? TRUE
: FALSE
;
502 /* *** CBEM_xxx message support *** */
504 static UINT
COMBOEX_GetListboxText(COMBOEX_INFO
*infoPtr
, int n
, LPWSTR buf
)
509 item
= COMBOEX_FindItem(infoPtr
, n
);
513 str
= COMBOEX_GetText(infoPtr
, item
);
515 if (infoPtr
->unicode
)
519 return lstrlenW(str
);
524 r
= WideCharToMultiByte(CP_ACP
, 0, str
, -1, (LPSTR
)buf
, 0x40000000, NULL
, NULL
);
531 static INT
COMBOEX_DeleteItem (COMBOEX_INFO
*infoPtr
, INT index
)
533 CBE_ITEMDATA
const *item
;
535 TRACE("(index=%d)\n", index
);
537 /* if item number requested does not exist then return failure */
538 if ((index
>= infoPtr
->nb_items
) || (index
< 0)) return CB_ERR
;
539 if (!(item
= COMBOEX_FindItem(infoPtr
, index
))) return CB_ERR
;
541 /* doing this will result in WM_DELETEITEM being issued */
542 SendMessageW (infoPtr
->hwndCombo
, CB_DELETESTRING
, (WPARAM
)index
, 0);
544 return infoPtr
->nb_items
;
548 static BOOL
COMBOEX_GetItemW (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMW
*cit
)
550 INT index
= cit
->iItem
;
555 /* if item number requested does not exist then return failure */
556 if ((index
>= infoPtr
->nb_items
) || (index
< -1)) return FALSE
;
558 /* if the item is the edit control and there is no edit control, skip */
559 if ((index
== -1) && !COMBOEX_HasEdit(infoPtr
)) return FALSE
;
561 if (!(item
= COMBOEX_FindItem(infoPtr
, index
))) return FALSE
;
563 COMBOEX_CopyItem (item
, cit
);
569 static BOOL
COMBOEX_GetItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
*cit
)
571 COMBOBOXEXITEMW tmpcit
;
575 tmpcit
.mask
= cit
->mask
;
576 tmpcit
.iItem
= cit
->iItem
;
578 if(!COMBOEX_GetItemW (infoPtr
, &tmpcit
)) return FALSE
;
580 if (cit
->mask
& CBEIF_TEXT
)
582 if (is_textW(tmpcit
.pszText
) && cit
->pszText
)
583 WideCharToMultiByte(CP_ACP
, 0, tmpcit
.pszText
, -1,
584 cit
->pszText
, cit
->cchTextMax
, NULL
, NULL
);
585 else if (cit
->pszText
) cit
->pszText
[0] = 0;
586 else cit
->pszText
= (LPSTR
)tmpcit
.pszText
;
589 if (cit
->mask
& CBEIF_IMAGE
)
590 cit
->iImage
= tmpcit
.iImage
;
591 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
592 cit
->iSelectedImage
= tmpcit
.iSelectedImage
;
593 if (cit
->mask
& CBEIF_OVERLAY
)
594 cit
->iOverlay
= tmpcit
.iOverlay
;
595 if (cit
->mask
& CBEIF_INDENT
)
596 cit
->iIndent
= tmpcit
.iIndent
;
597 if (cit
->mask
& CBEIF_LPARAM
)
598 cit
->lParam
= tmpcit
.lParam
;
604 static inline BOOL
COMBOEX_HasEditChanged (COMBOEX_INFO
const *infoPtr
)
606 return COMBOEX_HasEdit(infoPtr
) &&
607 (infoPtr
->flags
& WCBE_EDITHASCHANGED
) == WCBE_EDITHASCHANGED
;
611 static INT
COMBOEX_InsertItemW (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMW
const *cit
)
619 if (TRACE_ON(comboex
)) COMBOEX_DumpInput (cit
);
621 /* get real index of item to insert */
623 if (index
== -1) index
= infoPtr
->nb_items
;
624 if (index
> infoPtr
->nb_items
) return -1;
626 /* get zero-filled space and chain it in */
627 if(!(item
= (CBE_ITEMDATA
*)Alloc (sizeof(*item
)))) return -1;
629 /* locate position to insert new item in */
630 if (index
== infoPtr
->nb_items
) {
631 /* fast path for iItem = -1 */
632 item
->next
= infoPtr
->items
;
633 infoPtr
->items
= item
;
636 INT i
= infoPtr
->nb_items
-1;
637 CBE_ITEMDATA
*moving
= infoPtr
->items
;
639 while ((i
> index
) && moving
) {
640 moving
= moving
->next
;
644 ERR("COMBOBOXEX item structures broken. Please report!\n");
648 item
->next
= moving
->next
;
652 /* fill in our hidden item structure */
653 item
->mask
= cit
->mask
;
654 if (item
->mask
& CBEIF_TEXT
) {
657 if (is_textW(cit
->pszText
)) len
= strlenW (cit
->pszText
);
659 item
->pszText
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
660 if (!item
->pszText
) {
664 strcpyW (item
->pszText
, cit
->pszText
);
666 else if (cit
->pszText
== LPSTR_TEXTCALLBACKW
)
667 item
->pszText
= LPSTR_TEXTCALLBACKW
;
668 item
->cchTextMax
= cit
->cchTextMax
;
670 if (item
->mask
& CBEIF_IMAGE
)
671 item
->iImage
= cit
->iImage
;
672 if (item
->mask
& CBEIF_SELECTEDIMAGE
)
673 item
->iSelectedImage
= cit
->iSelectedImage
;
674 if (item
->mask
& CBEIF_OVERLAY
)
675 item
->iOverlay
= cit
->iOverlay
;
676 if (item
->mask
& CBEIF_INDENT
)
677 item
->iIndent
= cit
->iIndent
;
678 if (item
->mask
& CBEIF_LPARAM
)
679 item
->lParam
= cit
->lParam
;
682 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
684 SendMessageW (infoPtr
->hwndCombo
, CB_INSERTSTRING
,
685 (WPARAM
)cit
->iItem
, (LPARAM
)item
);
687 memset (&nmcit
.ceItem
, 0, sizeof(nmcit
.ceItem
));
688 COMBOEX_CopyItem (item
, &nmcit
.ceItem
);
689 COMBOEX_NotifyItem (infoPtr
, CBEN_INSERTITEM
, &nmcit
);
696 static INT
COMBOEX_InsertItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
const *cit
)
698 COMBOBOXEXITEMW citW
;
702 memcpy(&citW
,cit
,sizeof(COMBOBOXEXITEMA
));
703 if (cit
->mask
& CBEIF_TEXT
&& is_textA(cit
->pszText
)) {
704 INT len
= MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, NULL
, 0);
705 wstr
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
706 if (!wstr
) return -1;
707 MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, wstr
, len
);
710 ret
= COMBOEX_InsertItemW(infoPtr
, &citW
);
719 COMBOEX_SetExtendedStyle (COMBOEX_INFO
*infoPtr
, DWORD mask
, DWORD style
)
723 TRACE("(mask=x%08x, style=0x%08x)\n", mask
, style
);
725 dwTemp
= infoPtr
->dwExtStyle
;
728 infoPtr
->dwExtStyle
= (infoPtr
->dwExtStyle
& ~mask
) | style
;
730 infoPtr
->dwExtStyle
= style
;
732 /* see if we need to change the word break proc on the edit */
733 if ((infoPtr
->dwExtStyle
^ dwTemp
) & CBES_EX_PATHWORDBREAKPROC
)
734 SetPathWordBreakProc(infoPtr
->hwndEdit
,
735 (infoPtr
->dwExtStyle
& CBES_EX_PATHWORDBREAKPROC
) ? TRUE
: FALSE
);
737 /* test if the control's appearance has changed */
738 mask
= CBES_EX_NOEDITIMAGE
| CBES_EX_NOEDITIMAGEINDENT
;
739 if ((infoPtr
->dwExtStyle
& mask
) != (dwTemp
& mask
)) {
740 /* if state of EX_NOEDITIMAGE changes, invalidate all */
741 TRACE("EX_NOEDITIMAGE state changed to %d\n",
742 infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGE
);
743 InvalidateRect (infoPtr
->hwndSelf
, NULL
, TRUE
);
744 COMBOEX_AdjustEditPos (infoPtr
);
745 if (infoPtr
->hwndEdit
)
746 InvalidateRect (infoPtr
->hwndEdit
, NULL
, TRUE
);
753 static HIMAGELIST
COMBOEX_SetImageList (COMBOEX_INFO
*infoPtr
, HIMAGELIST himl
)
755 HIMAGELIST himlTemp
= infoPtr
->himl
;
759 infoPtr
->himl
= himl
;
761 COMBOEX_ReSize (infoPtr
);
762 InvalidateRect (infoPtr
->hwndCombo
, NULL
, TRUE
);
764 /* reposition the Edit control based on whether icon exists */
765 COMBOEX_AdjustEditPos (infoPtr
);
769 static BOOL
COMBOEX_SetItemW (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMW
*cit
)
771 INT index
= cit
->iItem
;
774 if (TRACE_ON(comboex
)) COMBOEX_DumpInput (cit
);
776 /* if item number requested does not exist then return failure */
777 if ((index
>= infoPtr
->nb_items
) || (index
< -1)) return FALSE
;
779 /* if the item is the edit control and there is no edit control, skip */
780 if ((index
== -1) && !COMBOEX_HasEdit(infoPtr
)) return FALSE
;
782 if (!(item
= COMBOEX_FindItem(infoPtr
, index
))) return FALSE
;
784 /* add/change stuff to the internal item structure */
785 item
->mask
|= cit
->mask
;
786 if (cit
->mask
& CBEIF_TEXT
) {
789 COMBOEX_FreeText(item
);
790 if (is_textW(cit
->pszText
)) len
= strlenW(cit
->pszText
);
792 item
->pszText
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
793 if (!item
->pszText
) return FALSE
;
794 strcpyW(item
->pszText
, cit
->pszText
);
795 } else if (cit
->pszText
== LPSTR_TEXTCALLBACKW
)
796 item
->pszText
= LPSTR_TEXTCALLBACKW
;
797 item
->cchTextMax
= cit
->cchTextMax
;
799 if (cit
->mask
& CBEIF_IMAGE
)
800 item
->iImage
= cit
->iImage
;
801 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
802 item
->iSelectedImage
= cit
->iSelectedImage
;
803 if (cit
->mask
& CBEIF_OVERLAY
)
804 item
->iOverlay
= cit
->iOverlay
;
805 if (cit
->mask
& CBEIF_INDENT
)
806 item
->iIndent
= cit
->iIndent
;
807 if (cit
->mask
& CBEIF_LPARAM
)
808 cit
->lParam
= cit
->lParam
;
810 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
812 /* if original request was to update edit control, do some fast foot work */
813 if (cit
->iItem
== -1) {
814 COMBOEX_SetEditText (infoPtr
, item
);
815 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
| RDW_INVALIDATE
);
820 static BOOL
COMBOEX_SetItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
const *cit
)
822 COMBOBOXEXITEMW citW
;
826 memcpy(&citW
, cit
, sizeof(COMBOBOXEXITEMA
));
827 if ((cit
->mask
& CBEIF_TEXT
) && is_textA(cit
->pszText
)) {
828 INT len
= MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, NULL
, 0);
829 wstr
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
830 if (!wstr
) return FALSE
;
831 MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, wstr
, len
);
834 ret
= COMBOEX_SetItemW(infoPtr
, &citW
);
842 static BOOL
COMBOEX_SetUnicodeFormat (COMBOEX_INFO
*infoPtr
, BOOL value
)
844 BOOL bTemp
= infoPtr
->unicode
;
846 TRACE("to %s, was %s\n", value
? "TRUE":"FALSE", bTemp
? "TRUE":"FALSE");
848 infoPtr
->unicode
= value
;
854 /* *** CB_xxx message support *** */
857 COMBOEX_FindStringExact (COMBOEX_INFO
*infoPtr
, INT start
, LPCWSTR str
)
860 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
861 INT count
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCOUNT
, 0, 0);
863 /* now search from after starting loc and wrapping back to start */
864 for(i
=start
+1; i
<count
; i
++) {
865 CBE_ITEMDATA
*item
= get_item_data(infoPtr
, i
);
866 if (cmptext(COMBOEX_GetText(infoPtr
, item
), str
) == 0) return i
;
868 for(i
=0; i
<=start
; i
++) {
869 CBE_ITEMDATA
*item
= get_item_data(infoPtr
, i
);
870 if (cmptext(COMBOEX_GetText(infoPtr
, item
), str
) == 0) return i
;
876 static DWORD_PTR
COMBOEX_GetItemData (COMBOEX_INFO
*infoPtr
, INT index
)
878 CBE_ITEMDATA
const *item1
;
879 CBE_ITEMDATA
const *item2
;
882 item1
= get_item_data(infoPtr
, index
);
883 if ((item1
!= NULL
) && ((LRESULT
)item1
!= CB_ERR
)) {
884 item2
= COMBOEX_FindItem (infoPtr
, index
);
885 if (item2
!= item1
) {
886 ERR("data structures damaged!\n");
889 if (item1
->mask
& CBEIF_LPARAM
) ret
= item1
->lParam
;
890 TRACE("returning 0x%08lx\n", ret
);
892 ret
= (DWORD_PTR
)item1
;
893 TRACE("non-valid result from combo, returning 0x%08lx\n", ret
);
899 static INT
COMBOEX_SetCursel (COMBOEX_INFO
*infoPtr
, INT index
)
904 if (!(item
= COMBOEX_FindItem(infoPtr
, index
)))
905 return SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
, index
, 0);
907 TRACE("selecting item %d text=%s\n", index
, debugstr_txt(item
->pszText
));
908 infoPtr
->selected
= index
;
910 sel
= (INT
)SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
, index
, 0);
911 COMBOEX_SetEditText (infoPtr
, item
);
916 static DWORD_PTR
COMBOEX_SetItemData (COMBOEX_INFO
*infoPtr
, INT index
, DWORD_PTR data
)
919 CBE_ITEMDATA
const *item2
;
921 item1
= get_item_data(infoPtr
, index
);
922 if ((item1
!= NULL
) && ((LRESULT
)item1
!= CB_ERR
)) {
923 item2
= COMBOEX_FindItem (infoPtr
, index
);
924 if (item2
!= item1
) {
925 ERR("data structures damaged!\n");
928 item1
->mask
|= CBEIF_LPARAM
;
929 item1
->lParam
= data
;
930 TRACE("setting lparam to 0x%08lx\n", data
);
933 TRACE("non-valid result from combo %p\n", item1
);
934 return (DWORD_PTR
)item1
;
938 static INT
COMBOEX_SetItemHeight (COMBOEX_INFO
const *infoPtr
, INT index
, UINT height
)
940 RECT cb_wrect
, cbx_wrect
, cbx_crect
;
942 /* First, lets forward the message to the normal combo control
943 just like Windows. */
944 if (infoPtr
->hwndCombo
)
945 if (SendMessageW (infoPtr
->hwndCombo
, CB_SETITEMHEIGHT
,
946 index
, height
) == CB_ERR
) return CB_ERR
;
948 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
949 GetWindowRect (infoPtr
->hwndSelf
, &cbx_wrect
);
950 GetClientRect (infoPtr
->hwndSelf
, &cbx_crect
);
951 /* the height of comboex as height of the combo + comboex border */
952 height
= cb_wrect
.bottom
-cb_wrect
.top
953 + cbx_wrect
.bottom
-cbx_wrect
.top
954 - (cbx_crect
.bottom
-cbx_crect
.top
);
955 TRACE("EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)\n",
956 cbx_wrect
.left
, cbx_wrect
.top
, cbx_wrect
.right
, cbx_wrect
.bottom
,
957 cbx_crect
.left
, cbx_crect
.top
, cbx_crect
.right
, cbx_crect
.bottom
);
958 TRACE("CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)\n",
959 cb_wrect
.left
, cb_wrect
.top
, cb_wrect
.right
, cb_wrect
.bottom
,
960 cbx_wrect
.right
-cbx_wrect
.left
, height
);
961 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0,
962 cbx_wrect
.right
-cbx_wrect
.left
, height
,
963 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOMOVE
);
969 /* *** WM_xxx message support *** */
972 static LRESULT
COMBOEX_Create (HWND hwnd
, CREATESTRUCTA
const *cs
)
974 static const WCHAR COMBOBOX
[] = { 'C', 'o', 'm', 'b', 'o', 'B', 'o', 'x', 0 };
975 static const WCHAR EDIT
[] = { 'E', 'D', 'I', 'T', 0 };
976 static const WCHAR NIL
[] = { 0 };
977 COMBOEX_INFO
*infoPtr
;
979 RECT wnrc1
, clrc1
, cmbwrc
;
982 /* allocate memory for info structure */
983 infoPtr
= (COMBOEX_INFO
*)Alloc (sizeof(COMBOEX_INFO
));
984 if (!infoPtr
) return -1;
986 /* initialize info structure */
987 /* note that infoPtr is allocated zero-filled */
989 infoPtr
->hwndSelf
= hwnd
;
990 infoPtr
->selected
= -1;
992 infoPtr
->unicode
= IsWindowUnicode (hwnd
);
993 infoPtr
->hwndNotify
= cs
->hwndParent
;
995 i
= SendMessageW(infoPtr
->hwndNotify
, WM_NOTIFYFORMAT
, (WPARAM
)hwnd
, NF_QUERY
);
996 if ((i
!= NFR_ANSI
) && (i
!= NFR_UNICODE
)) {
997 WARN("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n", i
);
1000 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
);
1002 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
1004 /* create combo box */
1005 GetWindowRect(hwnd
, &wnrc1
);
1006 GetClientRect(hwnd
, &clrc1
);
1007 TRACE("EX window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d)\n",
1008 wnrc1
.left
, wnrc1
.top
, wnrc1
.right
, wnrc1
.bottom
,
1009 clrc1
.left
, clrc1
.top
, clrc1
.right
, clrc1
.bottom
);
1011 /* Native version of ComboEx creates the ComboBox with DROPDOWNLIST */
1012 /* specified. It then creates it's own version of the EDIT control */
1013 /* and makes the ComboBox the parent. This is because a normal */
1014 /* DROPDOWNLIST does not have an EDIT control, but we need one. */
1015 /* We also need to place the edit control at the proper location */
1016 /* (allow space for the icons). */
1018 infoPtr
->hwndCombo
= CreateWindowW (COMBOBOX
, NIL
,
1019 /* following line added to match native */
1020 WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| WS_VSCROLL
|
1021 CBS_NOINTEGRALHEIGHT
| CBS_DROPDOWNLIST
|
1022 /* was base and is necessary */
1023 WS_CHILD
| WS_VISIBLE
| CBS_OWNERDRAWFIXED
|
1024 GetWindowLongW (hwnd
, GWL_STYLE
),
1025 cs
->y
, cs
->x
, cs
->cx
, cs
->cy
, hwnd
,
1026 (HMENU
) GetWindowLongPtrW (hwnd
, GWLP_ID
),
1027 (HINSTANCE
)GetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
), NULL
);
1030 * native does the following at this point according to trace:
1031 * GetWindowThreadProcessId(hwndCombo,0)
1032 * GetCurrentThreadId()
1033 * GetWindowThreadProcessId(hwndCombo, &???)
1034 * GetCurrentProcessId()
1038 * Setup a property to hold the pointer to the COMBOBOXEX
1041 SetPropW(infoPtr
->hwndCombo
, COMBOEX_SUBCLASS_PROP
, hwnd
);
1042 infoPtr
->prevComboWndProc
= (WNDPROC
)SetWindowLongPtrW(infoPtr
->hwndCombo
,
1043 GWLP_WNDPROC
, (DWORD_PTR
)COMBOEX_ComboWndProc
);
1044 infoPtr
->font
= (HFONT
)SendMessageW (infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
1048 * Now create our own EDIT control so we can position it.
1049 * It is created only for CBS_DROPDOWN style
1051 if ((cs
->style
& CBS_DROPDOWNLIST
) == CBS_DROPDOWN
) {
1052 infoPtr
->hwndEdit
= CreateWindowExW (0, EDIT
, NIL
,
1053 WS_CHILD
| WS_VISIBLE
| WS_CLIPSIBLINGS
| ES_AUTOHSCROLL
,
1054 0, 0, 0, 0, /* will set later */
1056 (HMENU
) GetWindowLongPtrW (hwnd
, GWLP_ID
),
1057 (HINSTANCE
)GetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
), NULL
);
1059 /* native does the following at this point according to trace:
1060 * GetWindowThreadProcessId(hwndEdit,0)
1061 * GetCurrentThreadId()
1062 * GetWindowThreadProcessId(hwndEdit, &???)
1063 * GetCurrentProcessId()
1067 * Setup a property to hold the pointer to the COMBOBOXEX
1070 SetPropW(infoPtr
->hwndEdit
, COMBOEX_SUBCLASS_PROP
, hwnd
);
1071 infoPtr
->prevEditWndProc
= (WNDPROC
)SetWindowLongPtrW(infoPtr
->hwndEdit
,
1072 GWLP_WNDPROC
, (DWORD_PTR
)COMBOEX_EditWndProc
);
1073 infoPtr
->font
= (HFONT
)SendMessageW(infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
1077 * Locate the default font if necessary and then set it in
1078 * all associated controls
1080 if (!infoPtr
->font
) {
1081 SystemParametersInfoW (SPI_GETICONTITLELOGFONT
, sizeof(mylogfont
),
1083 infoPtr
->font
= infoPtr
->defaultFont
= CreateFontIndirectW (&mylogfont
);
1085 SendMessageW (infoPtr
->hwndCombo
, WM_SETFONT
, (WPARAM
)infoPtr
->font
, 0);
1086 if (infoPtr
->hwndEdit
) {
1087 SendMessageW (infoPtr
->hwndEdit
, WM_SETFONT
, (WPARAM
)infoPtr
->font
, 0);
1088 SendMessageW (infoPtr
->hwndEdit
, EM_SETMARGINS
, (WPARAM
)EC_USEFONTINFO
, 0);
1091 COMBOEX_ReSize (infoPtr
);
1093 /* Above is fairly certain, below is much less certain. */
1095 GetWindowRect(hwnd
, &wnrc1
);
1096 GetClientRect(hwnd
, &clrc1
);
1097 GetWindowRect(infoPtr
->hwndCombo
, &cmbwrc
);
1098 TRACE("EX window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d) CB wnd=(%d,%d)-(%d,%d)\n",
1099 wnrc1
.left
, wnrc1
.top
, wnrc1
.right
, wnrc1
.bottom
,
1100 clrc1
.left
, clrc1
.top
, clrc1
.right
, clrc1
.bottom
,
1101 cmbwrc
.left
, cmbwrc
.top
, cmbwrc
.right
, cmbwrc
.bottom
);
1102 SetWindowPos(infoPtr
->hwndCombo
, HWND_TOP
,
1103 0, 0, wnrc1
.right
-wnrc1
.left
, wnrc1
.bottom
-wnrc1
.top
,
1104 SWP_NOACTIVATE
| SWP_NOREDRAW
);
1106 GetWindowRect(infoPtr
->hwndCombo
, &cmbwrc
);
1107 TRACE("CB window=(%d,%d)-(%d,%d)\n",
1108 cmbwrc
.left
, cmbwrc
.top
, cmbwrc
.right
, cmbwrc
.bottom
);
1109 SetWindowPos(hwnd
, HWND_TOP
,
1110 0, 0, cmbwrc
.right
-cmbwrc
.left
, cmbwrc
.bottom
-cmbwrc
.top
,
1111 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOMOVE
);
1113 COMBOEX_AdjustEditPos (infoPtr
);
1116 * Create an item structure to represent the data in the
1117 * EDIT control. It is allocated zero-filled.
1119 infoPtr
->edit
= (CBE_ITEMDATA
*)Alloc (sizeof (CBE_ITEMDATA
));
1120 if (!infoPtr
->edit
) {
1121 COMBOEX_Destroy(infoPtr
);
1129 static LRESULT
COMBOEX_Command (COMBOEX_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1132 INT command
= HIWORD(wParam
);
1133 CBE_ITEMDATA
*item
= 0;
1135 INT cursel
, n
, oldItem
;
1136 NMCBEENDEDITW cbeend
;
1138 HWND parent
= infoPtr
->hwndNotify
;
1140 TRACE("for command %d\n", command
);
1145 SetFocus (infoPtr
->hwndCombo
);
1146 ShowWindow (infoPtr
->hwndEdit
, SW_HIDE
);
1147 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1150 SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1152 * from native trace of first dropdown after typing in URL in IE4
1153 * CB_GETCURSEL(Combo)
1154 * GetWindowText(Edit)
1155 * CB_GETCURSEL(Combo)
1156 * CB_GETCOUNT(Combo)
1157 * CB_GETITEMDATA(Combo, n)
1158 * WM_NOTIFY(parent, CBEN_ENDEDITA|W)
1159 * CB_GETCURSEL(Combo)
1160 * CB_SETCURSEL(COMBOEX, n)
1162 * the rest is supposition
1164 ShowWindow (infoPtr
->hwndEdit
, SW_SHOW
);
1165 InvalidateRect (infoPtr
->hwndCombo
, 0, TRUE
);
1166 InvalidateRect (infoPtr
->hwndEdit
, 0, TRUE
);
1167 cursel
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1169 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
1170 /* find match from edit against those in Combobox */
1171 GetWindowTextW (infoPtr
->hwndEdit
, wintext
, 520);
1172 n
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCOUNT
, 0, 0);
1173 for (cursel
= 0; cursel
< n
; cursel
++){
1174 item
= get_item_data(infoPtr
, cursel
);
1175 if ((INT_PTR
)item
== CB_ERR
) break;
1176 if (!cmptext(COMBOEX_GetText(infoPtr
, item
), wintext
)) break;
1178 if ((cursel
== n
) || ((INT_PTR
)item
== CB_ERR
)) {
1179 TRACE("failed to find match??? item=%p cursel=%d\n",
1181 if (infoPtr
->hwndEdit
)
1182 SetFocus(infoPtr
->hwndEdit
);
1187 item
= get_item_data(infoPtr
, cursel
);
1188 if ((INT_PTR
)item
== CB_ERR
) {
1189 TRACE("failed to find match??? item=%p cursel=%d\n",
1191 if (infoPtr
->hwndEdit
)
1192 SetFocus(infoPtr
->hwndEdit
);
1197 /* Save flags for testing and reset them */
1198 oldflags
= infoPtr
->flags
;
1199 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1201 if (oldflags
& WCBE_ACTEDIT
) {
1202 cbeend
.fChanged
= (oldflags
& WCBE_EDITCHG
);
1203 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1204 CB_GETCURSEL
, 0, 0);
1205 cbeend
.iWhy
= CBENF_DROPDOWN
;
1207 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, COMBOEX_GetText(infoPtr
, item
))) return 0;
1210 /* if selection has changed the set the new current selection */
1211 cursel
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1212 if ((oldflags
& WCBE_EDITCHG
) || (cursel
!= infoPtr
->selected
)) {
1213 infoPtr
->selected
= cursel
;
1214 SendMessageW (infoPtr
->hwndSelf
, CB_SETCURSEL
, cursel
, 0);
1215 SetFocus(infoPtr
->hwndCombo
);
1221 * CB_GETCURSEL(Combo)
1222 * CB_GETITEMDATA(Combo) < simulated by COMBOEX_FindItem
1225 * WM_GETTEXTLENGTH(Edit)
1227 * EM_SETSEL(Edit, 0,0)
1228 * WM_GETTEXTLENGTH(Edit)
1230 * EM_SETSEL(Edit, 0,len)
1231 * return WM_COMMAND to parent
1233 oldItem
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1234 if (!(item
= COMBOEX_FindItem(infoPtr
, oldItem
))) {
1235 ERR("item %d not found. Problem!\n", oldItem
);
1238 infoPtr
->selected
= oldItem
;
1239 COMBOEX_SetEditText (infoPtr
, item
);
1240 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1244 * We have to change the handle since we are the control
1245 * issuing the message. IE4 depends on this.
1247 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1251 * from native trace:
1254 * WM_GETTEXT(Edit, 104)
1255 * CB_GETCURSEL(Combo) rets -1
1256 * WM_NOTIFY(CBEN_ENDEDITA) with CBENF_KILLFOCUS
1257 * CB_GETCURSEL(Combo)
1258 * InvalidateRect(Combo, 0, 0)
1261 SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1262 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
1263 GetWindowTextW (infoPtr
->hwndEdit
, wintext
, 260);
1264 cbeend
.fChanged
= (infoPtr
->flags
& WCBE_EDITCHG
);
1265 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1266 CB_GETCURSEL
, 0, 0);
1267 cbeend
.iWhy
= CBENF_KILLFOCUS
;
1269 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1270 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, wintext
)) return 0;
1272 /* possible CB_GETCURSEL */
1273 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1278 * We have to change the handle since we are the control
1279 * issuing the message. IE4 depends on this.
1280 * We also need to set the focus back to the Edit control
1281 * after passing the command to the parent of the ComboEx.
1283 lret
= SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1284 if (infoPtr
->hwndEdit
)
1285 SetFocus(infoPtr
->hwndEdit
);
1292 static BOOL
COMBOEX_WM_DeleteItem (COMBOEX_INFO
*infoPtr
, DELETEITEMSTRUCT
const *dis
)
1294 CBE_ITEMDATA
*item
, *olditem
;
1295 NMCOMBOBOXEXW nmcit
;
1298 TRACE("CtlType=%08x, CtlID=%08x, itemID=%08x, hwnd=%p, data=%08lx\n",
1299 dis
->CtlType
, dis
->CtlID
, dis
->itemID
, dis
->hwndItem
, dis
->itemData
);
1301 if (dis
->itemID
>= infoPtr
->nb_items
) return FALSE
;
1303 olditem
= infoPtr
->items
;
1304 i
= infoPtr
->nb_items
- 1;
1306 if (i
== dis
->itemID
) {
1307 infoPtr
->items
= infoPtr
->items
->next
;
1313 /* find the prior item in the list */
1314 while (item
->next
&& (i
> dis
->itemID
)) {
1318 if (!item
->next
|| (i
!= dis
->itemID
)) {
1319 ERR("COMBOBOXEX item structures broken. Please report!\n");
1322 olditem
= item
->next
;
1323 item
->next
= item
->next
->next
;
1325 infoPtr
->nb_items
--;
1327 memset (&nmcit
.ceItem
, 0, sizeof(nmcit
.ceItem
));
1328 COMBOEX_CopyItem (olditem
, &nmcit
.ceItem
);
1329 COMBOEX_NotifyItem (infoPtr
, CBEN_DELETEITEM
, &nmcit
);
1331 COMBOEX_FreeText(olditem
);
1338 static LRESULT
COMBOEX_DrawItem (COMBOEX_INFO
*infoPtr
, DRAWITEMSTRUCT
const *dis
)
1340 static const WCHAR nil
[] = { 0 };
1341 CBE_ITEMDATA
*item
= 0;
1347 COLORREF nbkc
, ntxc
, bkc
, txc
;
1348 int drawimage
, drawstate
, xioff
;
1350 if (!IsWindowEnabled(infoPtr
->hwndCombo
)) return 0;
1352 TRACE("DRAWITEMSTRUCT: CtlType=0x%08x CtlID=0x%08x\n",
1353 dis
->CtlType
, dis
->CtlID
);
1354 TRACE("itemID=0x%08x itemAction=0x%08x itemState=0x%08x\n",
1355 dis
->itemID
, dis
->itemAction
, dis
->itemState
);
1356 TRACE("hWnd=%p hDC=%p (%d,%d)-(%d,%d) itemData=0x%08lx\n",
1357 dis
->hwndItem
, dis
->hDC
, dis
->rcItem
.left
,
1358 dis
->rcItem
.top
, dis
->rcItem
.right
, dis
->rcItem
.bottom
,
1362 /* "itemID - Specifies the menu item identifier for a menu */
1363 /* item or the index of the item in a list box or combo box. */
1364 /* For an empty list box or combo box, this member can be -1. */
1365 /* This allows the application to draw only the focus */
1366 /* rectangle at the coordinates specified by the rcItem */
1367 /* member even though there are no items in the control. */
1368 /* This indicates to the user whether the list box or combo */
1369 /* box has the focus. How the bits are set in the itemAction */
1370 /* member determines whether the rectangle is to be drawn as */
1371 /* though the list box or combo box has the focus. */
1372 if (dis
->itemID
== 0xffffffff) {
1373 if ( ( (dis
->itemAction
& ODA_FOCUS
) && (dis
->itemState
& ODS_SELECTED
)) ||
1374 ( (dis
->itemAction
& (ODA_SELECT
| ODA_DRAWENTIRE
)) && (dis
->itemState
& ODS_FOCUS
) ) ) {
1376 TRACE("drawing item -1 special focus, rect=(%d,%d)-(%d,%d)\n",
1377 dis
->rcItem
.left
, dis
->rcItem
.top
,
1378 dis
->rcItem
.right
, dis
->rcItem
.bottom
);
1380 else if ((dis
->CtlType
== ODT_COMBOBOX
) &&
1381 (dis
->itemAction
== ODA_DRAWENTIRE
)) {
1382 /* draw of edit control data */
1386 RECT exrc
, cbrc
, edrc
;
1387 GetWindowRect (infoPtr
->hwndSelf
, &exrc
);
1388 GetWindowRect (infoPtr
->hwndCombo
, &cbrc
);
1389 edrc
.left
=edrc
.top
=edrc
.right
=edrc
.bottom
=-1;
1390 if (infoPtr
->hwndEdit
)
1391 GetWindowRect (infoPtr
->hwndEdit
, &edrc
);
1392 TRACE("window rects ex=(%d,%d)-(%d,%d), cb=(%d,%d)-(%d,%d), ed=(%d,%d)-(%d,%d)\n",
1393 exrc
.left
, exrc
.top
, exrc
.right
, exrc
.bottom
,
1394 cbrc
.left
, cbrc
.top
, cbrc
.right
, cbrc
.bottom
,
1395 edrc
.left
, edrc
.top
, edrc
.right
, edrc
.bottom
);
1399 ERR("NOT drawing item -1 special focus, rect=(%d,%d)-(%d,%d), action=%08x, state=%08x\n",
1400 dis
->rcItem
.left
, dis
->rcItem
.top
,
1401 dis
->rcItem
.right
, dis
->rcItem
.bottom
,
1402 dis
->itemAction
, dis
->itemState
);
1407 /* If draw item is -1 (edit control) setup the item pointer */
1408 if (dis
->itemID
== 0xffffffff) {
1409 item
= infoPtr
->edit
;
1411 if (infoPtr
->hwndEdit
) {
1414 /* free previous text of edit item */
1415 COMBOEX_FreeText(item
);
1416 item
->mask
&= ~CBEIF_TEXT
;
1417 if( (len
= GetWindowTextLengthW(infoPtr
->hwndEdit
)) ) {
1418 item
->mask
|= CBEIF_TEXT
;
1419 item
->pszText
= (LPWSTR
)Alloc ((len
+ 1)*sizeof(WCHAR
));
1421 GetWindowTextW(infoPtr
->hwndEdit
, item
->pszText
, len
+1);
1423 TRACE("edit control hwndEdit=%p, text len=%d str=%s\n",
1424 infoPtr
->hwndEdit
, len
, debugstr_txt(item
->pszText
));
1430 /* if the item pointer is not set, then get the data and locate it */
1432 item
= get_item_data(infoPtr
, dis
->itemID
);
1433 if (item
== (CBE_ITEMDATA
*)CB_ERR
) {
1434 ERR("invalid item for id %d\n", dis
->itemID
);
1439 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
1441 xbase
= CBE_STARTOFFSET
;
1442 if ((item
->mask
& CBEIF_INDENT
) && (dis
->itemState
& ODS_COMBOEXLBOX
)) {
1443 INT indent
= item
->iIndent
;
1444 if (indent
== I_INDENTCALLBACK
) {
1446 ZeroMemory(&nmce
, sizeof(nmce
));
1447 nmce
.ceItem
.mask
= CBEIF_INDENT
;
1448 nmce
.ceItem
.lParam
= item
->lParam
;
1449 nmce
.ceItem
.iItem
= dis
->itemID
;
1450 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1451 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
1452 item
->iIndent
= nmce
.ceItem
.iIndent
;
1453 indent
= nmce
.ceItem
.iIndent
;
1455 xbase
+= (indent
* CBE_INDENT
);
1459 drawstate
= ILD_NORMAL
;
1460 if (item
->mask
& CBEIF_IMAGE
)
1461 drawimage
= item
->iImage
;
1462 if (dis
->itemState
& ODS_COMBOEXLBOX
) {
1463 /* drawing listbox entry */
1464 if (dis
->itemState
& ODS_SELECTED
) {
1465 if (item
->mask
& CBEIF_SELECTEDIMAGE
)
1466 drawimage
= item
->iSelectedImage
;
1467 drawstate
= ILD_SELECTED
;
1470 /* drawing combo/edit entry */
1471 if (IsWindowVisible(infoPtr
->hwndEdit
)) {
1472 /* if we have an edit control, the slave the
1473 * selection state to the Edit focus state
1475 if (infoPtr
->flags
& WCBE_EDITFOCUSED
) {
1476 if (item
->mask
& CBEIF_SELECTEDIMAGE
)
1477 drawimage
= item
->iSelectedImage
;
1478 drawstate
= ILD_SELECTED
;
1481 /* if we don't have an edit control, use
1482 * the requested state.
1484 if (dis
->itemState
& ODS_SELECTED
) {
1485 if (item
->mask
& CBEIF_SELECTEDIMAGE
)
1486 drawimage
= item
->iSelectedImage
;
1487 drawstate
= ILD_SELECTED
;
1492 if (infoPtr
->himl
&& !(infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGEINDENT
)) {
1494 iinfo
.rcImage
.left
= iinfo
.rcImage
.right
= 0;
1495 ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
);
1496 xioff
= iinfo
.rcImage
.right
- iinfo
.rcImage
.left
+ CBE_SEP
;
1499 /* setup pointer to text to be drawn */
1500 str
= COMBOEX_GetText(infoPtr
, item
);
1501 if (!str
) str
= nil
;
1503 len
= strlenW (str
);
1504 GetTextExtentPoint32W (dis
->hDC
, str
, len
, &txtsize
);
1506 if (dis
->itemAction
& (ODA_SELECT
| ODA_DRAWENTIRE
)) {
1507 int overlay
= item
->iOverlay
;
1509 if (drawimage
== I_IMAGECALLBACK
) {
1511 ZeroMemory(&nmce
, sizeof(nmce
));
1512 nmce
.ceItem
.mask
= (drawstate
== ILD_NORMAL
) ? CBEIF_IMAGE
: CBEIF_SELECTEDIMAGE
;
1513 nmce
.ceItem
.lParam
= item
->lParam
;
1514 nmce
.ceItem
.iItem
= dis
->itemID
;
1515 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1516 if (drawstate
== ILD_NORMAL
) {
1517 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) item
->iImage
= nmce
.ceItem
.iImage
;
1518 drawimage
= nmce
.ceItem
.iImage
;
1519 } else if (drawstate
== ILD_SELECTED
) {
1520 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) item
->iSelectedImage
= nmce
.ceItem
.iSelectedImage
;
1521 drawimage
= nmce
.ceItem
.iSelectedImage
;
1522 } else ERR("Bad draw state = %d\n", drawstate
);
1525 if (overlay
== I_IMAGECALLBACK
) {
1527 ZeroMemory(&nmce
, sizeof(nmce
));
1528 nmce
.ceItem
.mask
= CBEIF_OVERLAY
;
1529 nmce
.ceItem
.lParam
= item
->lParam
;
1530 nmce
.ceItem
.iItem
= dis
->itemID
;
1531 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1532 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
1533 item
->iOverlay
= nmce
.ceItem
.iOverlay
;
1534 overlay
= nmce
.ceItem
.iOverlay
;
1537 if (drawimage
>= 0 &&
1538 !(infoPtr
->dwExtStyle
& (CBES_EX_NOEDITIMAGE
| CBES_EX_NOEDITIMAGEINDENT
))) {
1539 if (overlay
> 0) ImageList_SetOverlayImage (infoPtr
->himl
, overlay
, 1);
1540 ImageList_Draw (infoPtr
->himl
, drawimage
, dis
->hDC
, xbase
, dis
->rcItem
.top
,
1541 drawstate
| (overlay
> 0 ? INDEXTOOVERLAYMASK(1) : 0));
1544 /* now draw the text */
1545 if (!IsWindowVisible (infoPtr
->hwndEdit
)) {
1546 nbkc
= GetSysColor ((dis
->itemState
& ODS_SELECTED
) ?
1547 COLOR_HIGHLIGHT
: COLOR_WINDOW
);
1548 bkc
= SetBkColor (dis
->hDC
, nbkc
);
1549 ntxc
= GetSysColor ((dis
->itemState
& ODS_SELECTED
) ?
1550 COLOR_HIGHLIGHTTEXT
: COLOR_WINDOWTEXT
);
1551 txc
= SetTextColor (dis
->hDC
, ntxc
);
1553 y
= dis
->rcItem
.top
+
1554 (dis
->rcItem
.bottom
- dis
->rcItem
.top
- txtsize
.cy
) / 2;
1556 rect
.right
= x
+ txtsize
.cx
;
1557 rect
.top
= dis
->rcItem
.top
+ 1;
1558 rect
.bottom
= dis
->rcItem
.bottom
- 1;
1559 TRACE("drawing item %d text, rect=(%d,%d)-(%d,%d)\n",
1560 dis
->itemID
, rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
1561 ExtTextOutW (dis
->hDC
, x
, y
, ETO_OPAQUE
| ETO_CLIPPED
,
1562 &rect
, str
, len
, 0);
1563 SetBkColor (dis
->hDC
, bkc
);
1564 SetTextColor (dis
->hDC
, txc
);
1568 if (dis
->itemAction
& ODA_FOCUS
) {
1569 rect
.left
= xbase
+ xioff
- 1;
1570 rect
.right
= rect
.left
+ txtsize
.cx
+ 2;
1571 rect
.top
= dis
->rcItem
.top
;
1572 rect
.bottom
= dis
->rcItem
.bottom
;
1573 DrawFocusRect(dis
->hDC
, &rect
);
1580 static LRESULT
COMBOEX_Destroy (COMBOEX_INFO
*infoPtr
)
1582 if (infoPtr
->hwndCombo
)
1583 DestroyWindow (infoPtr
->hwndCombo
);
1585 Free (infoPtr
->edit
);
1588 if (infoPtr
->items
) {
1589 CBE_ITEMDATA
*item
, *next
;
1591 item
= infoPtr
->items
;
1594 COMBOEX_FreeText (item
);
1601 if (infoPtr
->defaultFont
)
1602 DeleteObject (infoPtr
->defaultFont
);
1604 /* free comboex info data */
1606 SetWindowLongPtrW (infoPtr
->hwndSelf
, 0, 0);
1611 static LRESULT
COMBOEX_MeasureItem (COMBOEX_INFO
const *infoPtr
, MEASUREITEMSTRUCT
*mis
)
1613 static const WCHAR strW
[] = { 'W', 0 };
1618 GetTextExtentPointW (hdc
, strW
, 1, &mysize
);
1620 mis
->itemHeight
= mysize
.cy
+ CBE_EXTRA
;
1622 TRACE("adjusted height hwnd=%p, height=%d\n",
1623 infoPtr
->hwndSelf
, mis
->itemHeight
);
1629 static LRESULT
COMBOEX_NCCreate (HWND hwnd
)
1631 /* WARNING: The COMBOEX_INFO structure is not yet created */
1632 DWORD oldstyle
, newstyle
;
1634 oldstyle
= (DWORD
)GetWindowLongW (hwnd
, GWL_STYLE
);
1635 newstyle
= oldstyle
& ~(WS_VSCROLL
| WS_HSCROLL
| WS_BORDER
);
1636 if (newstyle
!= oldstyle
) {
1637 TRACE("req style %08x, reseting style %08x\n",
1638 oldstyle
, newstyle
);
1639 SetWindowLongW (hwnd
, GWL_STYLE
, newstyle
);
1645 static LRESULT
COMBOEX_NotifyFormat (COMBOEX_INFO
*infoPtr
, LPARAM lParam
)
1647 if (lParam
== NF_REQUERY
) {
1648 INT i
= SendMessageW(infoPtr
->hwndNotify
,
1649 WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
1650 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
) ? 1 : 0;
1652 return infoPtr
->NtfUnicode
? NFR_UNICODE
: NFR_ANSI
;
1656 static LRESULT
COMBOEX_Size (COMBOEX_INFO
*infoPtr
, INT width
, INT height
)
1658 TRACE("(width=%d, height=%d)\n", width
, height
);
1660 MoveWindow (infoPtr
->hwndCombo
, 0, 0, width
, height
, TRUE
);
1662 COMBOEX_AdjustEditPos (infoPtr
);
1668 static LRESULT
COMBOEX_WindowPosChanging (COMBOEX_INFO
*infoPtr
, WINDOWPOS
*wp
)
1670 RECT cbx_wrect
, cbx_crect
, cb_wrect
;
1673 GetWindowRect (infoPtr
->hwndSelf
, &cbx_wrect
);
1674 GetClientRect (infoPtr
->hwndSelf
, &cbx_crect
);
1675 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
1677 /* width is winpos value + border width of comboex */
1679 + (cbx_wrect
.right
-cbx_wrect
.left
)
1680 - (cbx_crect
.right
-cbx_crect
.left
);
1682 TRACE("winpos=(%d,%d %dx%d) flags=0x%08x\n",
1683 wp
->x
, wp
->y
, wp
->cx
, wp
->cy
, wp
->flags
);
1684 TRACE("EX window=(%d,%d)-(%d,%d), client=(%d,%d)-(%d,%d)\n",
1685 cbx_wrect
.left
, cbx_wrect
.top
, cbx_wrect
.right
, cbx_wrect
.bottom
,
1686 cbx_crect
.left
, cbx_crect
.top
, cbx_crect
.right
, cbx_crect
.bottom
);
1687 TRACE("CB window=(%d,%d)-(%d,%d), EX setting=(0,0)-(%d,%d)\n",
1688 cb_wrect
.left
, cb_wrect
.top
, cb_wrect
.right
, cb_wrect
.bottom
,
1689 width
, cb_wrect
.bottom
-cb_wrect
.top
);
1691 if (width
) SetWindowPos (infoPtr
->hwndCombo
, HWND_TOP
, 0, 0,
1693 cb_wrect
.bottom
-cb_wrect
.top
,
1696 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
1698 /* height is combo window height plus border width of comboex */
1699 height
= (cb_wrect
.bottom
-cb_wrect
.top
)
1700 + (cbx_wrect
.bottom
-cbx_wrect
.top
)
1701 - (cbx_crect
.bottom
-cbx_crect
.top
);
1702 if (wp
->cy
< height
) wp
->cy
= height
;
1703 if (infoPtr
->hwndEdit
) {
1704 COMBOEX_AdjustEditPos (infoPtr
);
1705 InvalidateRect (infoPtr
->hwndCombo
, 0, TRUE
);
1711 static LRESULT WINAPI
1712 COMBOEX_EditWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1714 HWND hwndComboex
= (HWND
)GetPropW(hwnd
, COMBOEX_SUBCLASS_PROP
);
1715 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr (hwndComboex
);
1716 NMCBEENDEDITW cbeend
;
1717 WCHAR edit_text
[260];
1723 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx, info_ptr=%p\n",
1724 hwnd
, uMsg
, wParam
, lParam
, infoPtr
);
1726 if (!infoPtr
) return 0;
1732 /* handle (ignore) the return character */
1733 if (wParam
== VK_RETURN
) return 0;
1734 /* all other characters pass into the real Edit */
1735 return CallWindowProcW (infoPtr
->prevEditWndProc
,
1736 hwnd
, uMsg
, wParam
, lParam
);
1740 * The following was determined by traces of the native
1743 obkc
= SetBkColor (hDC
, GetSysColor (COLOR_WINDOW
));
1744 GetClientRect (hwnd
, &rect
);
1745 TRACE("erasing (%d,%d)-(%d,%d)\n",
1746 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
1747 ExtTextOutW (hDC
, 0, 0, ETO_OPAQUE
, &rect
, 0, 0, 0);
1748 SetBkColor (hDC
, obkc
);
1749 return CallWindowProcW (infoPtr
->prevEditWndProc
,
1750 hwnd
, uMsg
, wParam
, lParam
);
1753 INT oldItem
, selected
, step
= 1;
1756 switch ((INT
)wParam
)
1759 /* native version seems to do following for COMBOEX */
1761 * GetWindowTextW(Edit,&?, 0x104) x
1762 * CB_GETCURSEL to Combo rets -1 x
1763 * WM_NOTIFY to COMBOEX parent (rebar) x
1764 * (CBEN_ENDEDIT{A|W}
1765 * fChanged = FALSE x
1766 * inewSelection = -1 x
1769 * CB_GETCURSEL to Combo rets -1 x
1770 * InvalidateRect(Combo, 0) x
1771 * WM_SETTEXT to Edit x
1772 * EM_SETSEL to Edit (0,0) x
1773 * EM_SETSEL to Edit (0,-1) x
1774 * RedrawWindow(Combo, 0, 0, 5) x
1776 TRACE("special code for VK_ESCAPE\n");
1778 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1780 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1781 cbeend
.fChanged
= FALSE
;
1782 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1783 CB_GETCURSEL
, 0, 0);
1784 cbeend
.iWhy
= CBENF_ESCAPE
;
1786 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) return 0;
1787 oldItem
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1788 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1789 if (!(item
= COMBOEX_FindItem(infoPtr
, oldItem
))) {
1790 ERR("item %d not found. Problem!\n", oldItem
);
1793 infoPtr
->selected
= oldItem
;
1794 COMBOEX_SetEditText (infoPtr
, item
);
1795 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
|
1800 /* native version seems to do following for COMBOEX */
1802 * GetWindowTextW(Edit,&?, 0x104) x
1803 * CB_GETCURSEL to Combo rets -1 x
1804 * CB_GETCOUNT to Combo rets 0
1806 * CB_GETITEMDATA to match
1807 * *** above 3 lines simulated by FindItem x
1808 * WM_NOTIFY to COMBOEX parent (rebar) x
1809 * (CBEN_ENDEDIT{A|W} x
1810 * fChanged = TRUE (-1) x
1811 * iNewSelection = -1 or selected x
1813 * iWhy = 2 (CBENF_RETURN) x
1814 * CB_GETCURSEL to Combo rets -1 x
1815 * if -1 send CB_SETCURSEL to Combo -1 x
1816 * InvalidateRect(Combo, 0, 0) x
1818 * CallWindowProc(406615a8, Edit, 0x100, 0xd, 0x1c0001)
1821 TRACE("special code for VK_RETURN\n");
1823 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1825 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1826 selected
= SendMessageW (infoPtr
->hwndCombo
,
1827 CB_GETCURSEL
, 0, 0);
1829 if (selected
!= -1) {
1830 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
1831 item
= COMBOEX_FindItem (infoPtr
, selected
);
1832 TRACE("handling VK_RETURN, selected = %d, selected_text=%s\n",
1833 selected
, debugstr_txt(item
->pszText
));
1834 TRACE("handling VK_RETURN, edittext=%s\n",
1835 debugstr_w(edit_text
));
1836 if (cmptext (COMBOEX_GetText(infoPtr
, item
), edit_text
)) {
1837 /* strings not equal -- indicate edit has changed */
1842 cbeend
.iNewSelection
= selected
;
1843 cbeend
.fChanged
= TRUE
;
1844 cbeend
.iWhy
= CBENF_RETURN
;
1845 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) {
1846 /* abort the change, restore previous */
1847 TRACE("Notify requested abort of change\n");
1848 COMBOEX_SetEditText (infoPtr
, infoPtr
->edit
);
1849 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
|
1853 oldItem
= SendMessageW (infoPtr
->hwndCombo
,CB_GETCURSEL
, 0, 0);
1854 if (oldItem
!= -1) {
1855 /* if something is selected, then deselect it */
1856 SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
,
1859 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1860 SetFocus(infoPtr
->hwndEdit
);
1866 /* by default, step is 1 */
1867 oldItem
= SendMessageW (infoPtr
->hwndSelf
, CB_GETCURSEL
, 0, 0);
1868 if (oldItem
>= 0 && oldItem
+ step
>= 0)
1869 SendMessageW (infoPtr
->hwndSelf
, CB_SETCURSEL
, oldItem
+ step
, 0);
1872 return CallWindowProcW (infoPtr
->prevEditWndProc
,
1873 hwnd
, uMsg
, wParam
, lParam
);
1879 /* remember the focus to set state of icon */
1880 lret
= CallWindowProcW (infoPtr
->prevEditWndProc
,
1881 hwnd
, uMsg
, wParam
, lParam
);
1882 infoPtr
->flags
|= WCBE_EDITFOCUSED
;
1887 * do NOTIFY CBEN_ENDEDIT with CBENF_KILLFOCUS
1889 infoPtr
->flags
&= ~WCBE_EDITFOCUSED
;
1890 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
1891 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1893 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1894 cbeend
.fChanged
= FALSE
;
1895 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1896 CB_GETCURSEL
, 0, 0);
1897 cbeend
.iWhy
= CBENF_KILLFOCUS
;
1899 COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
);
1904 return CallWindowProcW (infoPtr
->prevEditWndProc
,
1905 hwnd
, uMsg
, wParam
, lParam
);
1910 static LRESULT WINAPI
1911 COMBOEX_ComboWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1913 HWND hwndComboex
= (HWND
)GetPropW(hwnd
, COMBOEX_SUBCLASS_PROP
);
1914 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr (hwndComboex
);
1915 NMCBEENDEDITW cbeend
;
1922 WCHAR edit_text
[260];
1924 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx, info_ptr=%p\n",
1925 hwnd
, uMsg
, wParam
, lParam
, infoPtr
);
1927 if (!infoPtr
) return 0;
1934 * The only way this message should come is from the
1935 * child Listbox issuing the message. Flag this so
1936 * that ComboEx knows this is listbox.
1938 ((DRAWITEMSTRUCT
*)lParam
)->itemState
|= ODS_COMBOEXLBOX
;
1939 return CallWindowProcW (infoPtr
->prevComboWndProc
,
1940 hwnd
, uMsg
, wParam
, lParam
);
1944 * The following was determined by traces of the native
1947 obkc
= SetBkColor (hDC
, GetSysColor (COLOR_WINDOW
));
1948 GetClientRect (hwnd
, &rect
);
1949 TRACE("erasing (%d,%d)-(%d,%d)\n",
1950 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
1951 ExtTextOutW (hDC
, 0, 0, ETO_OPAQUE
, &rect
, 0, 0, 0);
1952 SetBkColor (hDC
, obkc
);
1953 return CallWindowProcW (infoPtr
->prevComboWndProc
,
1954 hwnd
, uMsg
, wParam
, lParam
);
1958 * WM_NOTIFY to comboex parent (rebar)
1959 * with NM_SETCURSOR with extra words of 0,0,0,0,0x02010001
1960 * CallWindowProc (previous)
1962 nmmse
.dwItemSpec
= 0;
1963 nmmse
.dwItemData
= 0;
1966 nmmse
.dwHitInfo
= lParam
;
1967 COMBOEX_Notify (infoPtr
, NM_SETCURSOR
, (NMHDR
*)&nmmse
);
1968 return CallWindowProcW (infoPtr
->prevComboWndProc
,
1969 hwnd
, uMsg
, wParam
, lParam
);
1971 case WM_LBUTTONDOWN
:
1972 GetClientRect (hwnd
, &rect
);
1973 rect
.bottom
= rect
.top
+ SendMessageW(infoPtr
->hwndSelf
,
1974 CB_GETITEMHEIGHT
, -1, 0);
1975 rect
.left
= rect
.right
- GetSystemMetrics(SM_CXVSCROLL
);
1976 pt
.x
= (short)LOWORD(lParam
);
1977 pt
.y
= (short)HIWORD(lParam
);
1978 if (PtInRect(&rect
, pt
))
1979 return CallWindowProcW (infoPtr
->prevComboWndProc
,
1980 hwnd
, uMsg
, wParam
, lParam
);
1981 infoPtr
->flags
|= WCBE_MOUSECAPTURED
;
1986 if (!(infoPtr
->flags
& WCBE_MOUSECAPTURED
))
1987 return CallWindowProcW (infoPtr
->prevComboWndProc
,
1988 hwnd
, uMsg
, wParam
, lParam
);
1990 infoPtr
->flags
&= ~WCBE_MOUSECAPTURED
;
1991 if (infoPtr
->flags
& WCBE_MOUSEDRAGGED
) {
1992 infoPtr
->flags
&= ~WCBE_MOUSEDRAGGED
;
1994 SendMessageW(hwnd
, CB_SHOWDROPDOWN
, TRUE
, 0);
1999 if ( (infoPtr
->flags
& WCBE_MOUSECAPTURED
) &&
2000 !(infoPtr
->flags
& WCBE_MOUSEDRAGGED
)) {
2001 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
2002 COMBOEX_NotifyDragBegin(infoPtr
, edit_text
);
2003 infoPtr
->flags
|= WCBE_MOUSEDRAGGED
;
2005 return CallWindowProcW (infoPtr
->prevComboWndProc
,
2006 hwnd
, uMsg
, wParam
, lParam
);
2009 switch (HIWORD(wParam
)) {
2012 /* traces show that COMBOEX does not issue CBN_EDITUPDATE
2021 * GetFocus() retns AA
2022 * GetWindowTextW(Edit)
2023 * CB_GETCURSEL(Combo) (got -1)
2024 * WM_NOTIFY(CBEN_ENDEDITA) with CBENF_KILLFOCUS
2025 * CB_GETCURSEL(Combo) (got -1)
2026 * InvalidateRect(Combo, 0, 0)
2027 * WM_KILLFOCUS(Combo, AA)
2030 focusedhwnd
= GetFocus();
2031 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
2032 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
2033 cbeend
.fChanged
= (infoPtr
->flags
& WCBE_EDITCHG
);
2034 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
2035 CB_GETCURSEL
, 0, 0);
2036 cbeend
.iWhy
= CBENF_KILLFOCUS
;
2038 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
2039 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) return 0;
2041 /* possible CB_GETCURSEL */
2042 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
2044 SendMessageW (infoPtr
->hwndCombo
, WM_KILLFOCUS
,
2045 (WPARAM
)focusedhwnd
, 0);
2050 * For EN_SETFOCUS this issues the same calls and messages
2051 * as the native seems to do.
2053 * for some cases however native does the following:
2054 * (noticed after SetFocus during LBUTTONDOWN on
2055 * on dropdown arrow)
2056 * WM_GETTEXTLENGTH (Edit);
2057 * WM_GETTEXT (Edit, len+1, str);
2058 * EM_SETSEL (Edit, 0, 0);
2059 * WM_GETTEXTLENGTH (Edit);
2060 * WM_GETTEXT (Edit, len+1, str);
2061 * EM_SETSEL (Edit, 0, len);
2062 * WM_NOTIFY (parent, CBEN_BEGINEDIT)
2066 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, 0);
2067 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, -1);
2068 COMBOEX_Notify (infoPtr
, CBEN_BEGINEDIT
, &hdr
);
2069 infoPtr
->flags
|= WCBE_ACTEDIT
;
2070 infoPtr
->flags
&= ~WCBE_EDITCHG
; /* no change yet */
2076 * For EN_CHANGE this issues the same calls and messages
2077 * as the native seems to do.
2079 WCHAR edit_text
[260];
2081 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
2083 INT selected
= SendMessageW (infoPtr
->hwndCombo
,
2084 CB_GETCURSEL
, 0, 0);
2086 /* lstrlenW( lastworkingURL ) */
2088 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
2089 if (selected
== -1) {
2090 lastwrk
= infoPtr
->edit
->pszText
;
2093 CBE_ITEMDATA
*item
= COMBOEX_FindItem (infoPtr
, selected
);
2094 lastwrk
= COMBOEX_GetText(infoPtr
, item
);
2097 TRACE("handling EN_CHANGE, selected = %d, selected_text=%s\n",
2098 selected
, debugstr_w(lastwrk
));
2099 TRACE("handling EN_CHANGE, edittext=%s\n",
2100 debugstr_w(edit_text
));
2102 /* cmptext is between lastworkingURL and GetWindowText */
2103 if (cmptext (lastwrk
, edit_text
)) {
2104 /* strings not equal -- indicate edit has changed */
2105 infoPtr
->flags
|= WCBE_EDITCHG
;
2107 SendMessageW ( infoPtr
->hwndNotify
, WM_COMMAND
,
2108 MAKEWPARAM(GetDlgCtrlID (infoPtr
->hwndSelf
),
2110 (LPARAM
)infoPtr
->hwndSelf
);
2116 * Therefore from traces there is no additional code here
2120 * Using native COMCTL32 gets the following:
2121 * 1 == SHDOCVW.DLL issues call/message
2122 * 2 == COMCTL32.DLL issues call/message
2123 * 3 == WINE issues call/message
2126 * for LBN_SELCHANGE:
2127 * 1 CB_GETCURSEL(ComboEx)
2128 * 1 CB_GETDROPPEDSTATE(ComboEx)
2129 * 1 CallWindowProc( *2* for WM_COMMAND(LBN_SELCHANGE)
2130 * 2 CallWindowProc( *3* for WM_COMMAND(LBN_SELCHANGE)
2131 ** call CBRollUp( xxx, TRUE for LBN_SELCHANGE, TRUE)
2132 * 3 WM_COMMAND(ComboEx, CBN_SELENDOK)
2133 * WM_USER+49(ComboLB, 1,0) <=============!!!!!!!!!!!
2134 * 3 ShowWindow(ComboLB, SW_HIDE)
2135 * 3 RedrawWindow(Combo, RDW_UPDATENOW)
2136 * 3 WM_COMMAND(ComboEX, CBN_CLOSEUP)
2138 * 3 WM_COMMAND(ComboEx, CBN_SELCHANGE) (echo to parent)
2139 * ? LB_GETCURSEL <==|
2141 * ? LB_GETTEXT | Needs to be added to
2142 * ? WM_CTLCOLOREDIT(ComboEx) | Combo processing
2143 * ? LB_GETITEMDATA |
2144 * ? WM_DRAWITEM(ComboEx) <==|
2150 return CallWindowProcW (infoPtr
->prevComboWndProc
,
2151 hwnd
, uMsg
, wParam
, lParam
);
2157 static LRESULT WINAPI
2158 COMBOEX_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
2160 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr (hwnd
);
2162 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd
, uMsg
, wParam
, lParam
);
2165 if (uMsg
== WM_CREATE
)
2166 return COMBOEX_Create (hwnd
, (LPCREATESTRUCTA
)lParam
);
2167 if (uMsg
== WM_NCCREATE
)
2168 COMBOEX_NCCreate (hwnd
);
2169 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2174 case CBEM_DELETEITEM
:
2175 return COMBOEX_DeleteItem (infoPtr
, wParam
);
2177 case CBEM_GETCOMBOCONTROL
:
2178 return (LRESULT
)infoPtr
->hwndCombo
;
2180 case CBEM_GETEDITCONTROL
:
2181 return (LRESULT
)infoPtr
->hwndEdit
;
2183 case CBEM_GETEXTENDEDSTYLE
:
2184 return infoPtr
->dwExtStyle
;
2186 case CBEM_GETIMAGELIST
:
2187 return (LRESULT
)infoPtr
->himl
;
2190 return (LRESULT
)COMBOEX_GetItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2193 return (LRESULT
)COMBOEX_GetItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2195 case CBEM_GETUNICODEFORMAT
:
2196 return infoPtr
->unicode
;
2198 case CBEM_HASEDITCHANGED
:
2199 return COMBOEX_HasEditChanged (infoPtr
);
2201 case CBEM_INSERTITEMA
:
2202 return COMBOEX_InsertItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2204 case CBEM_INSERTITEMW
:
2205 return COMBOEX_InsertItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2207 case CBEM_SETEXSTYLE
:
2208 case CBEM_SETEXTENDEDSTYLE
:
2209 return COMBOEX_SetExtendedStyle (infoPtr
, (DWORD
)wParam
, (DWORD
)lParam
);
2211 case CBEM_SETIMAGELIST
:
2212 return (LRESULT
)COMBOEX_SetImageList (infoPtr
, (HIMAGELIST
)lParam
);
2215 return COMBOEX_SetItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2218 return COMBOEX_SetItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2220 case CBEM_SETUNICODEFORMAT
:
2221 return COMBOEX_SetUnicodeFormat (infoPtr
, wParam
);
2223 /*case CBEM_SETWINDOWTHEME:
2224 FIXME("CBEM_SETWINDOWTHEME: stub\n");*/
2228 return SendMessageW(infoPtr
->hwndEdit
, uMsg
, wParam
, lParam
);
2231 return COMBOEX_GetListboxText(infoPtr
, wParam
, (LPWSTR
)lParam
);
2233 case CB_GETLBTEXTLEN
:
2234 return COMBOEX_GetListboxText(infoPtr
, wParam
, NULL
);
2236 /* Combo messages we are not sure if we need to process or just forward */
2237 case CB_GETDROPPEDCONTROLRECT
:
2238 case CB_GETITEMHEIGHT
:
2239 case CB_GETEXTENDEDUI
:
2241 case CB_RESETCONTENT
:
2242 case CB_SELECTSTRING
:
2244 /* Combo messages OK to just forward to the regular COMBO */
2247 case CB_GETDROPPEDSTATE
:
2248 case CB_SETDROPPEDWIDTH
:
2249 case CB_SETEXTENDEDUI
:
2250 case CB_SHOWDROPDOWN
:
2251 return SendMessageW (infoPtr
->hwndCombo
, uMsg
, wParam
, lParam
);
2253 /* Combo messages we need to process specially */
2254 case CB_FINDSTRINGEXACT
:
2255 return COMBOEX_FindStringExact (infoPtr
, (INT
)wParam
, (LPCWSTR
)lParam
);
2257 case CB_GETITEMDATA
:
2258 return COMBOEX_GetItemData (infoPtr
, (INT
)wParam
);
2261 return COMBOEX_SetCursel (infoPtr
, (INT
)wParam
);
2263 case CB_SETITEMDATA
:
2264 return COMBOEX_SetItemData (infoPtr
, (INT
)wParam
, (DWORD_PTR
)lParam
);
2266 case CB_SETITEMHEIGHT
:
2267 return COMBOEX_SetItemHeight (infoPtr
, (INT
)wParam
, (UINT
)lParam
);
2271 /* Window messages passed to parent */
2273 return COMBOEX_Command (infoPtr
, wParam
, lParam
);
2276 if (infoPtr
->NtfUnicode
)
2277 return SendMessageW (infoPtr
->hwndNotify
, uMsg
, wParam
, lParam
);
2279 return SendMessageA (infoPtr
->hwndNotify
, uMsg
, wParam
, lParam
);
2282 /* Window messages we need to process */
2284 return COMBOEX_WM_DeleteItem (infoPtr
, (DELETEITEMSTRUCT
*)lParam
);
2287 return COMBOEX_DrawItem (infoPtr
, (DRAWITEMSTRUCT
*)lParam
);
2290 return COMBOEX_Destroy (infoPtr
);
2292 case WM_MEASUREITEM
:
2293 return COMBOEX_MeasureItem (infoPtr
, (MEASUREITEMSTRUCT
*)lParam
);
2295 case WM_NOTIFYFORMAT
:
2296 return COMBOEX_NotifyFormat (infoPtr
, lParam
);
2299 return COMBOEX_Size (infoPtr
, LOWORD(lParam
), HIWORD(lParam
));
2301 case WM_WINDOWPOSCHANGING
:
2302 return COMBOEX_WindowPosChanging (infoPtr
, (WINDOWPOS
*)lParam
);
2305 SetFocus(infoPtr
->hwndCombo
);
2309 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
))
2310 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",uMsg
,wParam
,lParam
);
2311 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2316 void COMBOEX_Register (void)
2320 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2321 wndClass
.style
= CS_GLOBALCLASS
;
2322 wndClass
.lpfnWndProc
= COMBOEX_WindowProc
;
2323 wndClass
.cbClsExtra
= 0;
2324 wndClass
.cbWndExtra
= sizeof(COMBOEX_INFO
*);
2325 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
2326 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
2327 wndClass
.lpszClassName
= WC_COMBOBOXEXW
;
2329 RegisterClassW (&wndClass
);
2333 void COMBOEX_Unregister (void)
2335 UnregisterClassW (WC_COMBOBOXEXW
, NULL
);