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
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(comboex
);
37 typedef struct _CBE_ITEMDATA
39 struct _CBE_ITEMDATA
*next
;
51 /* ComboBoxEx structure */
55 HWND hwndSelf
; /* my own hwnd */
56 HWND hwndNotify
; /* my parent hwnd */
60 INT selected
; /* index of selected item */
61 DWORD flags
; /* WINE internal flags */
64 INT nb_items
; /* Number of items */
65 BOOL unicode
; /* TRUE if this window is Unicode */
66 BOOL NtfUnicode
; /* TRUE if parent wants notify in Unicode */
67 CBE_ITEMDATA edit
; /* item data for edit item */
68 CBE_ITEMDATA
*items
; /* Array of items */
71 /* internal flags in the COMBOEX_INFO structure */
72 #define WCBE_ACTEDIT 0x00000001 /* Edit active i.e.
73 * CBEN_BEGINEDIT issued
74 * but CBEN_ENDEDIT{A|W}
76 #define WCBE_EDITCHG 0x00000002 /* Edit issued EN_CHANGE */
77 #define WCBE_EDITHASCHANGED (WCBE_ACTEDIT | WCBE_EDITCHG)
78 #define WCBE_EDITFOCUSED 0x00000004 /* Edit control has focus */
79 #define WCBE_MOUSECAPTURED 0x00000008 /* Combo has captured mouse */
80 #define WCBE_MOUSEDRAGGED 0x00000010 /* User has dragged in combo */
82 #define ID_CB_EDIT 1001
86 * Special flag set in DRAWITEMSTRUCT itemState field. It is set by
87 * the ComboEx version of the Combo Window Proc so that when the
88 * WM_DRAWITEM message is then passed to ComboEx, we know that this
89 * particular WM_DRAWITEM message is for listbox only items. Any message
90 * without this flag is then for the Edit control field.
92 * We really cannot use the ODS_COMBOBOXEDIT flag because MSDN states that
93 * only version 4.0 applications will have ODS_COMBOBOXEDIT set.
95 #define ODS_COMBOEXLBOX 0x4000
99 /* Height in pixels of control over the amount of the selected font */
102 /* Indent amount per MS documentation */
103 #define CBE_INDENT 10
105 /* Offset in pixels from left side for start of image or text */
106 #define CBE_STARTOFFSET 6
108 /* Offset between image and text */
111 #define COMBO_SUBCLASSID 1
112 #define EDIT_SUBCLASSID 2
114 #define COMBOEX_GetInfoPtr(hwnd) ((COMBOEX_INFO *)GetWindowLongPtrW (hwnd, 0))
116 static LRESULT CALLBACK
COMBOEX_EditWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,
117 UINT_PTR uId
, DWORD_PTR ref_data
);
118 static LRESULT CALLBACK
COMBOEX_ComboWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,
119 UINT_PTR uId
, DWORD_PTR ref_data
);
120 static LRESULT
COMBOEX_Destroy (COMBOEX_INFO
*infoPtr
);
121 typedef INT (WINAPI
*cmp_func_t
)(LPCWSTR
, LPCWSTR
);
123 static inline BOOL
is_textW(LPCWSTR str
)
125 return str
&& str
!= LPSTR_TEXTCALLBACKW
;
128 static inline BOOL
is_textA(LPCSTR str
)
130 return str
&& str
!= LPSTR_TEXTCALLBACKA
;
133 static inline LPCSTR
debugstr_txt(LPCWSTR str
)
135 if (str
== LPSTR_TEXTCALLBACKW
) return "(callback)";
136 return debugstr_w(str
);
139 static void COMBOEX_DumpItem (CBE_ITEMDATA
const *item
)
141 TRACE("item %p - mask=%08x, pszText=%p, cchTM=%d, iImage=%d\n",
142 item
, item
->mask
, item
->pszText
, item
->cchTextMax
, item
->iImage
);
143 TRACE("item %p - iSelectedImage=%d, iOverlay=%d, iIndent=%d, lParam=%08lx\n",
144 item
, item
->iSelectedImage
, item
->iOverlay
, item
->iIndent
, item
->lParam
);
145 if (item
->mask
& CBEIF_TEXT
)
146 TRACE("item %p - pszText=%s\n", item
, debugstr_txt(item
->pszText
));
150 static void COMBOEX_DumpInput (COMBOBOXEXITEMW
const *input
)
152 TRACE("input - mask=%08x, iItem=%ld, pszText=%p, cchTM=%d, iImage=%d\n",
153 input
->mask
, input
->iItem
, input
->pszText
, input
->cchTextMax
,
155 if (input
->mask
& CBEIF_TEXT
)
156 TRACE("input - pszText=<%s>\n", debugstr_txt(input
->pszText
));
157 TRACE("input - iSelectedImage=%d, iOverlay=%d, iIndent=%d, lParam=%08lx\n",
158 input
->iSelectedImage
, input
->iOverlay
, input
->iIndent
, input
->lParam
);
162 static inline CBE_ITEMDATA
*get_item_data(const COMBOEX_INFO
*infoPtr
, INT index
)
164 return (CBE_ITEMDATA
*)SendMessageW (infoPtr
->hwndCombo
, CB_GETITEMDATA
,
168 static inline cmp_func_t
get_cmp_func(COMBOEX_INFO
const *infoPtr
)
170 return infoPtr
->dwExtStyle
& CBES_EX_CASESENSITIVE
? lstrcmpW
: lstrcmpiW
;
173 static INT
COMBOEX_Notify (const COMBOEX_INFO
*infoPtr
, INT code
, NMHDR
*hdr
)
175 hdr
->idFrom
= GetDlgCtrlID (infoPtr
->hwndSelf
);
176 hdr
->hwndFrom
= infoPtr
->hwndSelf
;
178 if (infoPtr
->NtfUnicode
)
179 return SendMessageW (infoPtr
->hwndNotify
, WM_NOTIFY
, 0, (LPARAM
)hdr
);
181 return SendMessageA (infoPtr
->hwndNotify
, WM_NOTIFY
, 0, (LPARAM
)hdr
);
186 COMBOEX_NotifyItem (const COMBOEX_INFO
*infoPtr
, UINT code
, NMCOMBOBOXEXW
*hdr
)
188 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
189 if (infoPtr
->NtfUnicode
)
190 return COMBOEX_Notify (infoPtr
, code
, &hdr
->hdr
);
192 LPWSTR wstr
= hdr
->ceItem
.pszText
;
196 if ((hdr
->ceItem
.mask
& CBEIF_TEXT
) && is_textW(wstr
)) {
197 len
= WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, 0, 0, NULL
, NULL
);
199 astr
= Alloc ((len
+ 1)*sizeof(CHAR
));
201 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, astr
, len
, 0, 0);
202 hdr
->ceItem
.pszText
= (LPWSTR
)astr
;
206 if (code
== CBEN_ENDEDITW
) code
= CBEN_ENDEDITA
;
207 else if (code
== CBEN_GETDISPINFOW
) code
= CBEN_GETDISPINFOA
;
208 else if (code
== CBEN_DRAGBEGINW
) code
= CBEN_DRAGBEGINA
;
210 ret
= COMBOEX_Notify (infoPtr
, code
, (NMHDR
*)hdr
);
212 if (astr
&& hdr
->ceItem
.pszText
== (LPWSTR
)astr
)
213 hdr
->ceItem
.pszText
= wstr
;
222 static INT
COMBOEX_NotifyEndEdit (const COMBOEX_INFO
*infoPtr
, NMCBEENDEDITW
*neew
, LPCWSTR wstr
)
224 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
225 if (infoPtr
->NtfUnicode
) {
226 lstrcpynW(neew
->szText
, wstr
, CBEMAXSTRLEN
);
227 return COMBOEX_Notify (infoPtr
, CBEN_ENDEDITW
, &neew
->hdr
);
231 neea
.hdr
= neew
->hdr
;
232 neea
.fChanged
= neew
->fChanged
;
233 neea
.iNewSelection
= neew
->iNewSelection
;
234 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, neea
.szText
, CBEMAXSTRLEN
, 0, 0);
235 neea
.iWhy
= neew
->iWhy
;
237 return COMBOEX_Notify (infoPtr
, CBEN_ENDEDITA
, &neea
.hdr
);
242 static void COMBOEX_NotifyDragBegin(const COMBOEX_INFO
*infoPtr
, LPCWSTR wstr
)
244 /* Change the Text item from Unicode to ANSI if necessary for NOTIFY */
245 if (infoPtr
->NtfUnicode
) {
246 NMCBEDRAGBEGINW ndbw
;
249 lstrcpynW(ndbw
.szText
, wstr
, CBEMAXSTRLEN
);
250 COMBOEX_Notify (infoPtr
, CBEN_DRAGBEGINW
, &ndbw
.hdr
);
252 NMCBEDRAGBEGINA ndba
;
255 WideCharToMultiByte (CP_ACP
, 0, wstr
, -1, ndba
.szText
, CBEMAXSTRLEN
, 0, 0);
257 COMBOEX_Notify (infoPtr
, CBEN_DRAGBEGINA
, &ndba
.hdr
);
262 static void COMBOEX_FreeText (CBE_ITEMDATA
*item
)
264 if (is_textW(item
->pszText
)) Free(item
->pszText
);
265 item
->pszText
= NULL
;
267 item
->pszTemp
= NULL
;
271 static INT
COMBOEX_GetIndex(COMBOEX_INFO
const *infoPtr
, CBE_ITEMDATA
const *item
)
273 CBE_ITEMDATA
const *moving
;
276 moving
= infoPtr
->items
;
277 index
= infoPtr
->nb_items
- 1;
279 while (moving
&& (moving
!= item
)) {
280 moving
= moving
->next
;
283 if (!moving
|| (index
< 0)) {
284 ERR("COMBOBOXEX item structures broken. Please report!\n");
291 static LPCWSTR
COMBOEX_GetText(const COMBOEX_INFO
*infoPtr
, CBE_ITEMDATA
*item
)
297 if (item
->pszText
!= LPSTR_TEXTCALLBACKW
)
298 return item
->pszText
;
300 ZeroMemory(&nmce
, sizeof(nmce
));
301 nmce
.ceItem
.mask
= CBEIF_TEXT
;
302 nmce
.ceItem
.lParam
= item
->lParam
;
303 nmce
.ceItem
.iItem
= COMBOEX_GetIndex(infoPtr
, item
);
304 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
306 if (is_textW(nmce
.ceItem
.pszText
)) {
307 len
= MultiByteToWideChar (CP_ACP
, 0, (LPSTR
)nmce
.ceItem
.pszText
, -1, NULL
, 0);
308 buf
= Alloc ((len
+ 1)*sizeof(WCHAR
));
310 MultiByteToWideChar (CP_ACP
, 0, (LPSTR
)nmce
.ceItem
.pszText
, -1, buf
, len
);
311 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) {
312 COMBOEX_FreeText(item
);
320 text
= nmce
.ceItem
.pszText
;
322 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
323 item
->pszText
= text
;
328 static void COMBOEX_GetComboFontSize (const COMBOEX_INFO
*infoPtr
, SIZE
*size
)
330 static const WCHAR strA
[] = { 'A', 0 };
334 mydc
= GetDC (0); /* why the entire screen???? */
335 nfont
= (HFONT
)SendMessageW (infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
336 ofont
= SelectObject (mydc
, nfont
);
337 GetTextExtentPointW (mydc
, strA
, 1, size
);
338 SelectObject (mydc
, ofont
);
340 TRACE("selected font hwnd=%p, height=%d\n", nfont
, size
->cy
);
344 static void COMBOEX_CopyItem (const CBE_ITEMDATA
*item
, COMBOBOXEXITEMW
*cit
)
346 if (cit
->mask
& CBEIF_TEXT
) {
348 * when given a text buffer actually use that buffer
351 if (is_textW(item
->pszText
))
352 lstrcpynW(cit
->pszText
, item
->pszText
, cit
->cchTextMax
);
356 cit
->pszText
= item
->pszText
;
357 cit
->cchTextMax
= item
->cchTextMax
;
360 if (cit
->mask
& CBEIF_IMAGE
)
361 cit
->iImage
= item
->iImage
;
362 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
363 cit
->iSelectedImage
= item
->iSelectedImage
;
364 if (cit
->mask
& CBEIF_OVERLAY
)
365 cit
->iOverlay
= item
->iOverlay
;
366 if (cit
->mask
& CBEIF_INDENT
)
367 cit
->iIndent
= item
->iIndent
;
368 if (cit
->mask
& CBEIF_LPARAM
)
369 cit
->lParam
= item
->lParam
;
373 static void COMBOEX_AdjustEditPos (const COMBOEX_INFO
*infoPtr
)
376 INT x
, y
, w
, h
, xioff
;
379 if (!infoPtr
->hwndEdit
) return;
381 if (infoPtr
->himl
&& !(infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGEINDENT
)) {
383 iinfo
.rcImage
.left
= iinfo
.rcImage
.right
= 0;
384 ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
);
385 xioff
= iinfo
.rcImage
.right
- iinfo
.rcImage
.left
+ CBE_SEP
;
388 GetClientRect (infoPtr
->hwndCombo
, &rect
);
389 InflateRect (&rect
, -2, -2);
390 InvalidateRect (infoPtr
->hwndCombo
, &rect
, TRUE
);
392 /* reposition the Edit control based on whether icon exists */
393 COMBOEX_GetComboFontSize (infoPtr
, &mysize
);
394 TRACE("Combo font x=%d, y=%d\n", mysize
.cx
, mysize
.cy
);
395 x
= xioff
+ CBE_STARTOFFSET
+ 1;
396 w
= rect
.right
-rect
.left
- x
- GetSystemMetrics(SM_CXVSCROLL
) - 1;
398 y
= rect
.bottom
- h
- 1;
400 TRACE("Combo client (%s), setting Edit to (%d,%d)-(%d,%d)\n",
401 wine_dbgstr_rect(&rect
), x
, y
, x
+ w
, y
+ h
);
402 SetWindowPos(infoPtr
->hwndEdit
, HWND_TOP
, x
, y
, w
, h
,
403 SWP_SHOWWINDOW
| SWP_NOACTIVATE
| SWP_NOZORDER
);
407 static void COMBOEX_ReSize (const COMBOEX_INFO
*infoPtr
)
413 COMBOEX_GetComboFontSize (infoPtr
, &mysize
);
414 cy
= mysize
.cy
+ CBE_EXTRA
;
415 if (infoPtr
->himl
&& ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
)) {
416 cy
= max (iinfo
.rcImage
.bottom
- iinfo
.rcImage
.top
, cy
);
417 TRACE("upgraded height due to image: height=%d\n", cy
);
419 SendMessageW (infoPtr
->hwndSelf
, CB_SETITEMHEIGHT
, -1, cy
);
420 if (infoPtr
->hwndCombo
) {
421 SendMessageW (infoPtr
->hwndCombo
, CB_SETITEMHEIGHT
, 0, cy
);
422 if ( !(infoPtr
->flags
& CBES_EX_NOSIZELIMIT
)) {
423 RECT comboRect
, ourRect
;
424 GetWindowRect(infoPtr
->hwndCombo
, &comboRect
);
425 GetWindowRect(infoPtr
->hwndSelf
, &ourRect
);
426 if (comboRect
.bottom
> ourRect
.bottom
)
427 SetWindowPos( infoPtr
->hwndSelf
, 0, 0, 0, ourRect
.right
- ourRect
.left
,
428 comboRect
.bottom
- comboRect
.top
,
429 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
| SWP_NOREDRAW
);
435 static void COMBOEX_SetEditText (const COMBOEX_INFO
*infoPtr
, CBE_ITEMDATA
*item
)
437 if (!infoPtr
->hwndEdit
) return;
439 if (item
->mask
& CBEIF_TEXT
) {
440 SendMessageW (infoPtr
->hwndEdit
, WM_SETTEXT
, 0, (LPARAM
)COMBOEX_GetText(infoPtr
, item
));
441 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, 0);
442 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, -1);
447 static CBE_ITEMDATA
*COMBOEX_FindItem(COMBOEX_INFO
*infoPtr
, INT_PTR index
)
452 if ((index
>= infoPtr
->nb_items
) || (index
< -1))
455 return &infoPtr
->edit
;
456 item
= infoPtr
->items
;
457 i
= infoPtr
->nb_items
- 1;
459 /* find the item in the list */
460 while (item
&& (i
> index
)) {
464 if (!item
|| (i
!= index
)) {
465 ERR("COMBOBOXEX item structures broken. Please report!\n");
471 /* *** CBEM_xxx message support *** */
473 static UINT
COMBOEX_GetListboxText(COMBOEX_INFO
*infoPtr
, INT_PTR n
, LPWSTR buf
)
478 item
= COMBOEX_FindItem(infoPtr
, n
);
482 str
= COMBOEX_GetText(infoPtr
, item
);
487 if (infoPtr
->unicode
)
495 if (infoPtr
->unicode
)
499 return lstrlenW(str
);
504 r
= WideCharToMultiByte(CP_ACP
, 0, str
, -1, (LPSTR
)buf
, 0x40000000, NULL
, NULL
);
511 static INT
COMBOEX_DeleteItem (COMBOEX_INFO
*infoPtr
, INT_PTR index
)
513 TRACE("(index=%ld)\n", index
);
515 /* if item number requested does not exist then return failure */
516 if ((index
>= infoPtr
->nb_items
) || (index
< 0)) return CB_ERR
;
517 if (!COMBOEX_FindItem(infoPtr
, index
)) return CB_ERR
;
519 /* doing this will result in WM_DELETEITEM being issued */
520 SendMessageW (infoPtr
->hwndCombo
, CB_DELETESTRING
, index
, 0);
522 return infoPtr
->nb_items
;
526 static BOOL
COMBOEX_GetItemW (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMW
*cit
)
528 INT_PTR index
= cit
->iItem
;
533 /* if item number requested does not exist then return failure */
534 if ((index
>= infoPtr
->nb_items
) || (index
< -1)) return FALSE
;
536 /* if the item is the edit control and there is no edit control, skip */
537 if ((index
== -1) && !infoPtr
->hwndEdit
) return FALSE
;
539 if (!(item
= COMBOEX_FindItem(infoPtr
, index
))) return FALSE
;
541 COMBOEX_CopyItem (item
, cit
);
547 static BOOL
COMBOEX_GetItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
*cit
)
549 COMBOBOXEXITEMW tmpcit
;
553 tmpcit
.mask
= cit
->mask
;
554 tmpcit
.iItem
= cit
->iItem
;
556 if(!COMBOEX_GetItemW (infoPtr
, &tmpcit
)) return FALSE
;
558 if (cit
->mask
& CBEIF_TEXT
)
560 if (is_textW(tmpcit
.pszText
) && cit
->pszText
)
561 WideCharToMultiByte(CP_ACP
, 0, tmpcit
.pszText
, -1,
562 cit
->pszText
, cit
->cchTextMax
, NULL
, NULL
);
563 else if (cit
->pszText
) cit
->pszText
[0] = 0;
564 else cit
->pszText
= (LPSTR
)tmpcit
.pszText
;
567 if (cit
->mask
& CBEIF_IMAGE
)
568 cit
->iImage
= tmpcit
.iImage
;
569 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
570 cit
->iSelectedImage
= tmpcit
.iSelectedImage
;
571 if (cit
->mask
& CBEIF_OVERLAY
)
572 cit
->iOverlay
= tmpcit
.iOverlay
;
573 if (cit
->mask
& CBEIF_INDENT
)
574 cit
->iIndent
= tmpcit
.iIndent
;
575 if (cit
->mask
& CBEIF_LPARAM
)
576 cit
->lParam
= tmpcit
.lParam
;
582 static inline BOOL
COMBOEX_HasEditChanged (COMBOEX_INFO
const *infoPtr
)
584 return infoPtr
->hwndEdit
&& (infoPtr
->flags
& WCBE_EDITHASCHANGED
) == WCBE_EDITHASCHANGED
;
588 static INT
COMBOEX_InsertItemW (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMW
const *cit
)
596 if (TRACE_ON(comboex
)) COMBOEX_DumpInput (cit
);
598 /* get real index of item to insert */
600 if (index
== -1) index
= infoPtr
->nb_items
;
601 if (index
> infoPtr
->nb_items
) return -1;
603 /* get zero-filled space and chain it in */
604 if(!(item
= Alloc (sizeof(*item
)))) return -1;
606 /* locate position to insert new item in */
607 if (index
== infoPtr
->nb_items
) {
608 /* fast path for iItem = -1 */
609 item
->next
= infoPtr
->items
;
610 infoPtr
->items
= item
;
613 INT i
= infoPtr
->nb_items
-1;
614 CBE_ITEMDATA
*moving
= infoPtr
->items
;
616 while ((i
> index
) && moving
) {
617 moving
= moving
->next
;
621 ERR("COMBOBOXEX item structures broken. Please report!\n");
625 item
->next
= moving
->next
;
629 /* fill in our hidden item structure */
630 item
->mask
= cit
->mask
;
631 if (item
->mask
& CBEIF_TEXT
) {
634 if (is_textW(cit
->pszText
)) len
= lstrlenW (cit
->pszText
);
636 item
->pszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
637 if (!item
->pszText
) {
641 lstrcpyW (item
->pszText
, cit
->pszText
);
643 else if (cit
->pszText
== LPSTR_TEXTCALLBACKW
)
644 item
->pszText
= LPSTR_TEXTCALLBACKW
;
645 item
->cchTextMax
= cit
->cchTextMax
;
647 if (item
->mask
& CBEIF_IMAGE
)
648 item
->iImage
= cit
->iImage
;
649 if (item
->mask
& CBEIF_SELECTEDIMAGE
)
650 item
->iSelectedImage
= cit
->iSelectedImage
;
651 if (item
->mask
& CBEIF_OVERLAY
)
652 item
->iOverlay
= cit
->iOverlay
;
653 if (item
->mask
& CBEIF_INDENT
)
654 item
->iIndent
= cit
->iIndent
;
655 if (item
->mask
& CBEIF_LPARAM
)
656 item
->lParam
= cit
->lParam
;
659 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
661 SendMessageW (infoPtr
->hwndCombo
, CB_INSERTSTRING
, cit
->iItem
, (LPARAM
)item
);
663 memset (&nmcit
.ceItem
, 0, sizeof(nmcit
.ceItem
));
664 nmcit
.ceItem
.mask
=~0;
665 COMBOEX_CopyItem (item
, &nmcit
.ceItem
);
666 COMBOEX_NotifyItem (infoPtr
, CBEN_INSERTITEM
, &nmcit
);
673 static INT
COMBOEX_InsertItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
const *cit
)
675 COMBOBOXEXITEMW citW
;
679 memcpy(&citW
,cit
,sizeof(COMBOBOXEXITEMA
));
680 if (cit
->mask
& CBEIF_TEXT
&& is_textA(cit
->pszText
)) {
681 INT len
= MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, NULL
, 0);
682 wstr
= Alloc ((len
+ 1)*sizeof(WCHAR
));
683 if (!wstr
) return -1;
684 MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, wstr
, len
);
687 ret
= COMBOEX_InsertItemW(infoPtr
, &citW
);
696 COMBOEX_SetExtendedStyle (COMBOEX_INFO
*infoPtr
, DWORD mask
, DWORD style
)
700 TRACE("(mask=x%08x, style=0x%08x)\n", mask
, style
);
702 dwTemp
= infoPtr
->dwExtStyle
;
705 infoPtr
->dwExtStyle
= (infoPtr
->dwExtStyle
& ~mask
) | style
;
707 infoPtr
->dwExtStyle
= style
;
709 /* see if we need to change the word break proc on the edit */
710 if ((infoPtr
->dwExtStyle
^ dwTemp
) & CBES_EX_PATHWORDBREAKPROC
)
711 SetPathWordBreakProc(infoPtr
->hwndEdit
,
712 (infoPtr
->dwExtStyle
& CBES_EX_PATHWORDBREAKPROC
) != 0);
714 /* test if the control's appearance has changed */
715 mask
= CBES_EX_NOEDITIMAGE
| CBES_EX_NOEDITIMAGEINDENT
;
716 if ((infoPtr
->dwExtStyle
& mask
) != (dwTemp
& mask
)) {
717 /* if state of EX_NOEDITIMAGE changes, invalidate all */
718 TRACE("EX_NOEDITIMAGE state changed to %d\n",
719 infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGE
);
720 InvalidateRect (infoPtr
->hwndSelf
, NULL
, TRUE
);
721 COMBOEX_AdjustEditPos (infoPtr
);
722 if (infoPtr
->hwndEdit
)
723 InvalidateRect (infoPtr
->hwndEdit
, NULL
, TRUE
);
730 static HIMAGELIST
COMBOEX_SetImageList (COMBOEX_INFO
*infoPtr
, HIMAGELIST himl
)
732 HIMAGELIST himlTemp
= infoPtr
->himl
;
736 infoPtr
->himl
= himl
;
738 COMBOEX_ReSize (infoPtr
);
739 InvalidateRect (infoPtr
->hwndCombo
, NULL
, TRUE
);
741 /* reposition the Edit control based on whether icon exists */
742 COMBOEX_AdjustEditPos (infoPtr
);
746 static BOOL
COMBOEX_SetItemW (COMBOEX_INFO
*infoPtr
, const COMBOBOXEXITEMW
*cit
)
748 INT_PTR index
= cit
->iItem
;
751 if (TRACE_ON(comboex
)) COMBOEX_DumpInput (cit
);
753 /* if item number requested does not exist then return failure */
754 if ((index
>= infoPtr
->nb_items
) || (index
< -1)) return FALSE
;
756 /* if the item is the edit control and there is no edit control, skip */
757 if ((index
== -1) && !infoPtr
->hwndEdit
) return FALSE
;
759 if (!(item
= COMBOEX_FindItem(infoPtr
, index
))) return FALSE
;
761 /* add/change stuff to the internal item structure */
762 item
->mask
|= cit
->mask
;
763 if (cit
->mask
& CBEIF_TEXT
) {
766 COMBOEX_FreeText(item
);
767 if (is_textW(cit
->pszText
)) len
= lstrlenW(cit
->pszText
);
769 item
->pszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
770 if (!item
->pszText
) return FALSE
;
771 lstrcpyW(item
->pszText
, cit
->pszText
);
772 } else if (cit
->pszText
== LPSTR_TEXTCALLBACKW
)
773 item
->pszText
= LPSTR_TEXTCALLBACKW
;
774 item
->cchTextMax
= cit
->cchTextMax
;
776 if (cit
->mask
& CBEIF_IMAGE
)
777 item
->iImage
= cit
->iImage
;
778 if (cit
->mask
& CBEIF_SELECTEDIMAGE
)
779 item
->iSelectedImage
= cit
->iSelectedImage
;
780 if (cit
->mask
& CBEIF_OVERLAY
)
781 item
->iOverlay
= cit
->iOverlay
;
782 if (cit
->mask
& CBEIF_INDENT
)
783 item
->iIndent
= cit
->iIndent
;
784 if (cit
->mask
& CBEIF_LPARAM
)
785 item
->lParam
= cit
->lParam
;
787 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
789 /* if original request was to update edit control, do some fast foot work */
790 if (cit
->iItem
== -1 && cit
->mask
& CBEIF_TEXT
) {
791 COMBOEX_SetEditText (infoPtr
, item
);
792 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
| RDW_INVALIDATE
);
797 static BOOL
COMBOEX_SetItemA (COMBOEX_INFO
*infoPtr
, COMBOBOXEXITEMA
const *cit
)
799 COMBOBOXEXITEMW citW
;
803 memcpy(&citW
, cit
, sizeof(COMBOBOXEXITEMA
));
804 if ((cit
->mask
& CBEIF_TEXT
) && is_textA(cit
->pszText
)) {
805 INT len
= MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, NULL
, 0);
806 wstr
= Alloc ((len
+ 1)*sizeof(WCHAR
));
807 if (!wstr
) return FALSE
;
808 MultiByteToWideChar (CP_ACP
, 0, cit
->pszText
, -1, wstr
, len
);
811 ret
= COMBOEX_SetItemW(infoPtr
, &citW
);
819 static BOOL
COMBOEX_SetUnicodeFormat (COMBOEX_INFO
*infoPtr
, BOOL value
)
821 BOOL bTemp
= infoPtr
->unicode
;
823 TRACE("to %s, was %s\n", value
? "TRUE":"FALSE", bTemp
? "TRUE":"FALSE");
825 infoPtr
->unicode
= value
;
831 /* *** CB_xxx message support *** */
834 COMBOEX_FindStringExact (const COMBOEX_INFO
*infoPtr
, INT start
, LPCWSTR str
)
837 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
838 INT count
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCOUNT
, 0, 0);
840 /* now search from after starting loc and wrapping back to start */
841 for(i
=start
+1; i
<count
; i
++) {
842 CBE_ITEMDATA
*item
= get_item_data(infoPtr
, i
);
843 if ((LRESULT
)item
== CB_ERR
) continue;
844 if (cmptext(COMBOEX_GetText(infoPtr
, item
), str
) == 0) return i
;
846 for(i
=0; i
<=start
; i
++) {
847 CBE_ITEMDATA
*item
= get_item_data(infoPtr
, i
);
848 if ((LRESULT
)item
== CB_ERR
) continue;
849 if (cmptext(COMBOEX_GetText(infoPtr
, item
), str
) == 0) return i
;
855 static DWORD_PTR
COMBOEX_GetItemData (COMBOEX_INFO
*infoPtr
, INT_PTR index
)
857 CBE_ITEMDATA
const *item1
;
858 CBE_ITEMDATA
const *item2
;
861 item1
= get_item_data(infoPtr
, index
);
862 if ((item1
!= NULL
) && ((LRESULT
)item1
!= CB_ERR
)) {
863 item2
= COMBOEX_FindItem (infoPtr
, index
);
864 if (item2
!= item1
) {
865 ERR("data structures damaged!\n");
868 if (item1
->mask
& CBEIF_LPARAM
) ret
= item1
->lParam
;
869 TRACE("returning 0x%08lx\n", ret
);
871 ret
= (DWORD_PTR
)item1
;
872 TRACE("non-valid result from combo, returning 0x%08lx\n", ret
);
878 static INT
COMBOEX_SetCursel (COMBOEX_INFO
*infoPtr
, INT_PTR index
)
883 if (!(item
= COMBOEX_FindItem(infoPtr
, index
)))
884 return SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
, index
, 0);
886 TRACE("selecting item %ld text=%s\n", index
, debugstr_txt(item
->pszText
));
887 infoPtr
->selected
= index
;
889 sel
= (INT
)SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
, index
, 0);
890 COMBOEX_SetEditText (infoPtr
, item
);
895 static DWORD_PTR
COMBOEX_SetItemData (COMBOEX_INFO
*infoPtr
, INT_PTR index
, DWORD_PTR data
)
898 CBE_ITEMDATA
const *item2
;
900 item1
= get_item_data(infoPtr
, index
);
901 if ((item1
!= NULL
) && ((LRESULT
)item1
!= CB_ERR
)) {
902 item2
= COMBOEX_FindItem (infoPtr
, index
);
903 if (item2
!= item1
) {
904 ERR("data structures damaged!\n");
907 item1
->mask
|= CBEIF_LPARAM
;
908 item1
->lParam
= data
;
909 TRACE("setting lparam to 0x%08lx\n", data
);
912 TRACE("non-valid result from combo %p\n", item1
);
913 return (DWORD_PTR
)item1
;
917 static INT
COMBOEX_SetItemHeight (COMBOEX_INFO
const *infoPtr
, INT index
, UINT height
)
919 RECT cb_wrect
, cbx_wrect
, cbx_crect
;
921 /* First, lets forward the message to the normal combo control
922 just like Windows. */
923 if (infoPtr
->hwndCombo
)
924 if (SendMessageW (infoPtr
->hwndCombo
, CB_SETITEMHEIGHT
,
925 index
, height
) == CB_ERR
) return CB_ERR
;
927 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
928 GetWindowRect (infoPtr
->hwndSelf
, &cbx_wrect
);
929 GetClientRect (infoPtr
->hwndSelf
, &cbx_crect
);
930 /* the height of comboex as height of the combo + comboex border */
931 height
= cb_wrect
.bottom
-cb_wrect
.top
932 + cbx_wrect
.bottom
-cbx_wrect
.top
933 - (cbx_crect
.bottom
-cbx_crect
.top
);
934 TRACE("EX window=(%s), client=(%s)\n",
935 wine_dbgstr_rect(&cbx_wrect
), wine_dbgstr_rect(&cbx_crect
));
936 TRACE("CB window=(%s), EX setting=(0,0)-(%d,%d)\n",
937 wine_dbgstr_rect(&cbx_wrect
), cbx_wrect
.right
-cbx_wrect
.left
, height
);
938 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0,
939 cbx_wrect
.right
-cbx_wrect
.left
, height
,
940 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOMOVE
);
946 /* *** WM_xxx message support *** */
949 static LRESULT
COMBOEX_Create (HWND hwnd
, CREATESTRUCTA
const *cs
)
951 static const WCHAR NIL
[] = { 0 };
952 COMBOEX_INFO
*infoPtr
;
957 /* allocate memory for info structure */
958 infoPtr
= Alloc (sizeof(COMBOEX_INFO
));
959 if (!infoPtr
) return -1;
961 /* initialize info structure */
962 /* note that infoPtr is allocated zero-filled */
964 infoPtr
->hwndSelf
= hwnd
;
965 infoPtr
->selected
= -1;
967 infoPtr
->unicode
= IsWindowUnicode (hwnd
);
968 infoPtr
->hwndNotify
= cs
->hwndParent
;
970 i
= SendMessageW(infoPtr
->hwndNotify
, WM_NOTIFYFORMAT
, (WPARAM
)hwnd
, NF_QUERY
);
971 if ((i
!= NFR_ANSI
) && (i
!= NFR_UNICODE
)) {
972 WARN("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n", i
);
975 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
);
977 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
979 if (TRACE_ON(comboex
)) {
981 GetWindowRect(hwnd
, &rect
);
982 GetClientRect(hwnd
, &client
);
983 TRACE("EX window=(%s), client=(%s)\n",
984 wine_dbgstr_rect(&rect
), wine_dbgstr_rect(&client
));
987 /* Native version of ComboEx creates the ComboBox with DROPDOWNLIST */
988 /* specified. It then creates its own version of the EDIT control */
989 /* and makes the ComboBox the parent. This is because a normal */
990 /* DROPDOWNLIST does not have an EDIT control, but we need one. */
991 /* We also need to place the edit control at the proper location */
992 /* (allow space for the icons). */
994 infoPtr
->hwndCombo
= CreateWindowW (WC_COMBOBOXW
, NIL
,
995 WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| WS_VSCROLL
|
996 CBS_NOINTEGRALHEIGHT
| CBS_DROPDOWNLIST
|
997 WS_CHILD
| WS_VISIBLE
| CBS_OWNERDRAWFIXED
|
998 GetWindowLongW (hwnd
, GWL_STYLE
),
999 cs
->y
, cs
->x
, cs
->cx
, cs
->cy
, hwnd
,
1000 (HMENU
) GetWindowLongPtrW (hwnd
, GWLP_ID
),
1001 (HINSTANCE
)GetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
), NULL
);
1003 SetWindowSubclass(infoPtr
->hwndCombo
, COMBOEX_ComboWndProc
, COMBO_SUBCLASSID
,
1005 infoPtr
->font
= (HFONT
)SendMessageW (infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
1008 * Now create our own EDIT control so we can position it.
1009 * It is created only for CBS_DROPDOWN style
1011 if ((cs
->style
& CBS_DROPDOWNLIST
) == CBS_DROPDOWN
) {
1012 infoPtr
->hwndEdit
= CreateWindowExW (0, WC_EDITW
, NIL
,
1013 WS_CHILD
| WS_VISIBLE
| WS_CLIPSIBLINGS
| ES_AUTOHSCROLL
,
1014 0, 0, 0, 0, /* will set later */
1016 (HMENU
) GetWindowLongPtrW (hwnd
, GWLP_ID
),
1017 (HINSTANCE
)GetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
), NULL
);
1019 SetWindowSubclass(infoPtr
->hwndEdit
, COMBOEX_EditWndProc
, EDIT_SUBCLASSID
,
1022 infoPtr
->font
= (HFONT
)SendMessageW(infoPtr
->hwndCombo
, WM_GETFONT
, 0, 0);
1026 * Locate the default font if necessary and then set it in
1027 * all associated controls
1029 if (!infoPtr
->font
) {
1030 SystemParametersInfoW (SPI_GETICONTITLELOGFONT
, sizeof(mylogfont
),
1032 infoPtr
->font
= infoPtr
->defaultFont
= CreateFontIndirectW (&mylogfont
);
1034 SendMessageW (infoPtr
->hwndCombo
, WM_SETFONT
, (WPARAM
)infoPtr
->font
, 0);
1035 if (infoPtr
->hwndEdit
) {
1036 SendMessageW (infoPtr
->hwndEdit
, WM_SETFONT
, (WPARAM
)infoPtr
->font
, 0);
1037 SendMessageW (infoPtr
->hwndEdit
, EM_SETMARGINS
, EC_USEFONTINFO
, 0);
1040 COMBOEX_ReSize (infoPtr
);
1042 /* Above is fairly certain, below is much less certain. */
1044 GetWindowRect(hwnd
, &win_rect
);
1046 if (TRACE_ON(comboex
)) {
1048 GetClientRect(hwnd
, &client
);
1049 GetWindowRect(infoPtr
->hwndCombo
, &rect
);
1050 TRACE("EX window=(%s) client=(%s) CB wnd=(%s)\n",
1051 wine_dbgstr_rect(&win_rect
), wine_dbgstr_rect(&client
),
1052 wine_dbgstr_rect(&rect
));
1054 SetWindowPos(infoPtr
->hwndCombo
, HWND_TOP
, 0, 0,
1055 win_rect
.right
- win_rect
.left
, win_rect
.bottom
- win_rect
.top
,
1056 SWP_NOACTIVATE
| SWP_NOREDRAW
);
1058 GetWindowRect(infoPtr
->hwndCombo
, &win_rect
);
1059 TRACE("CB window=(%s)\n", wine_dbgstr_rect(&win_rect
));
1060 SetWindowPos(hwnd
, HWND_TOP
, 0, 0,
1061 win_rect
.right
- win_rect
.left
, win_rect
.bottom
- win_rect
.top
,
1062 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOMOVE
);
1064 COMBOEX_AdjustEditPos (infoPtr
);
1070 static LRESULT
COMBOEX_Command (COMBOEX_INFO
*infoPtr
, WPARAM wParam
)
1073 INT command
= HIWORD(wParam
);
1074 CBE_ITEMDATA
*item
= 0;
1078 NMCBEENDEDITW cbeend
;
1080 HWND parent
= infoPtr
->hwndNotify
;
1082 TRACE("for command %d\n", command
);
1087 SetFocus (infoPtr
->hwndCombo
);
1088 ShowWindow (infoPtr
->hwndEdit
, SW_HIDE
);
1089 infoPtr
->flags
|= WCBE_ACTEDIT
;
1090 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1092 SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1093 ShowWindow (infoPtr
->hwndEdit
, SW_SHOW
);
1094 InvalidateRect (infoPtr
->hwndCombo
, 0, TRUE
);
1095 if (infoPtr
->hwndEdit
) InvalidateRect (infoPtr
->hwndEdit
, 0, TRUE
);
1096 cursel
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1098 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
1099 /* find match from edit against those in Combobox */
1100 GetWindowTextW (infoPtr
->hwndEdit
, wintext
, 520);
1101 n
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCOUNT
, 0, 0);
1102 for (cursel
= 0; cursel
< n
; cursel
++){
1103 item
= get_item_data(infoPtr
, cursel
);
1104 if ((INT_PTR
)item
== CB_ERR
) break;
1105 if (!cmptext(COMBOEX_GetText(infoPtr
, item
), wintext
)) break;
1107 if ((cursel
== n
) || ((INT_PTR
)item
== CB_ERR
)) {
1108 TRACE("failed to find match??? item=%p cursel=%d\n",
1110 if (infoPtr
->hwndEdit
) SetFocus(infoPtr
->hwndEdit
);
1115 item
= get_item_data(infoPtr
, cursel
);
1116 if ((INT_PTR
)item
== CB_ERR
) {
1117 TRACE("failed to find match??? item=%p cursel=%d\n",
1119 if (infoPtr
->hwndEdit
) SetFocus(infoPtr
->hwndEdit
);
1124 /* Save flags for testing and reset them */
1125 oldflags
= infoPtr
->flags
;
1126 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1128 if (oldflags
& WCBE_ACTEDIT
) {
1129 cbeend
.fChanged
= (oldflags
& WCBE_EDITCHG
);
1130 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1131 CB_GETCURSEL
, 0, 0);
1132 cbeend
.iWhy
= CBENF_DROPDOWN
;
1134 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, COMBOEX_GetText(infoPtr
, item
))) return 0;
1137 /* if selection has changed the set the new current selection */
1138 cursel
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1139 if ((oldflags
& WCBE_EDITCHG
) || (cursel
!= infoPtr
->selected
)) {
1140 infoPtr
->selected
= cursel
;
1141 SendMessageW (infoPtr
->hwndSelf
, CB_SETCURSEL
, cursel
, 0);
1142 SetFocus(infoPtr
->hwndCombo
);
1148 * CB_GETCURSEL(Combo)
1149 * CB_GETITEMDATA(Combo) < simulated by COMBOEX_FindItem
1152 * WM_GETTEXTLENGTH(Edit)
1154 * EM_SETSEL(Edit, 0,0)
1155 * WM_GETTEXTLENGTH(Edit)
1157 * EM_SETSEL(Edit, 0,len)
1158 * return WM_COMMAND to parent
1160 oldItem
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1161 if (!(item
= COMBOEX_FindItem(infoPtr
, oldItem
))) {
1162 ERR("item %ld not found. Problem!\n", oldItem
);
1165 infoPtr
->selected
= oldItem
;
1166 COMBOEX_SetEditText (infoPtr
, item
);
1167 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1170 case CBN_SELENDCANCEL
:
1172 * We have to change the handle since we are the control
1173 * issuing the message. IE4 depends on this.
1175 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1178 SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1179 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
1180 GetWindowTextW (infoPtr
->hwndEdit
, wintext
, 260);
1181 cbeend
.fChanged
= (infoPtr
->flags
& WCBE_EDITCHG
);
1182 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1183 CB_GETCURSEL
, 0, 0);
1184 cbeend
.iWhy
= CBENF_KILLFOCUS
;
1186 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1187 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, wintext
)) return 0;
1189 /* possible CB_GETCURSEL */
1190 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1194 return SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1198 * We have to change the handle since we are the control
1199 * issuing the message. IE4 depends on this.
1200 * We also need to set the focus back to the Edit control
1201 * after passing the command to the parent of the ComboEx.
1203 lret
= SendMessageW (parent
, WM_COMMAND
, wParam
, (LPARAM
)infoPtr
->hwndSelf
);
1204 if (infoPtr
->hwndEdit
) SetFocus(infoPtr
->hwndEdit
);
1211 static BOOL
COMBOEX_WM_DeleteItem (COMBOEX_INFO
*infoPtr
, DELETEITEMSTRUCT
const *dis
)
1213 CBE_ITEMDATA
*item
, *olditem
;
1214 NMCOMBOBOXEXW nmcit
;
1217 TRACE("CtlType=%08x, CtlID=%08x, itemID=%08x, hwnd=%p, data=%08lx\n",
1218 dis
->CtlType
, dis
->CtlID
, dis
->itemID
, dis
->hwndItem
, dis
->itemData
);
1220 if (dis
->itemID
>= infoPtr
->nb_items
) return FALSE
;
1222 olditem
= infoPtr
->items
;
1223 i
= infoPtr
->nb_items
- 1;
1225 if (i
== dis
->itemID
) {
1226 infoPtr
->items
= infoPtr
->items
->next
;
1232 /* find the prior item in the list */
1233 while (item
->next
&& (i
> dis
->itemID
)) {
1237 if (!item
->next
|| (i
!= dis
->itemID
)) {
1238 ERR("COMBOBOXEX item structures broken. Please report!\n");
1241 olditem
= item
->next
;
1242 item
->next
= item
->next
->next
;
1244 infoPtr
->nb_items
--;
1246 memset (&nmcit
.ceItem
, 0, sizeof(nmcit
.ceItem
));
1247 nmcit
.ceItem
.mask
=~0;
1248 COMBOEX_CopyItem (olditem
, &nmcit
.ceItem
);
1249 COMBOEX_NotifyItem (infoPtr
, CBEN_DELETEITEM
, &nmcit
);
1251 COMBOEX_FreeText(olditem
);
1258 static LRESULT
COMBOEX_DrawItem (COMBOEX_INFO
*infoPtr
, DRAWITEMSTRUCT
const *dis
)
1260 static const WCHAR nil
[] = { 0 };
1261 CBE_ITEMDATA
*item
= NULL
;
1267 COLORREF nbkc
, ntxc
, bkc
, txc
;
1268 int drawimage
, drawstate
, xioff
, selected
;
1270 TRACE("DRAWITEMSTRUCT: CtlType=0x%08x CtlID=0x%08x\n",
1271 dis
->CtlType
, dis
->CtlID
);
1272 TRACE("itemID=0x%08x itemAction=0x%08x itemState=0x%08x\n",
1273 dis
->itemID
, dis
->itemAction
, dis
->itemState
);
1274 TRACE("hWnd=%p hDC=%p (%s) itemData=0x%08lx\n",
1275 dis
->hwndItem
, dis
->hDC
, wine_dbgstr_rect(&dis
->rcItem
), dis
->itemData
);
1278 /* "itemID - Specifies the menu item identifier for a menu */
1279 /* item or the index of the item in a list box or combo box. */
1280 /* For an empty list box or combo box, this member can be -1. */
1281 /* This allows the application to draw only the focus */
1282 /* rectangle at the coordinates specified by the rcItem */
1283 /* member even though there are no items in the control. */
1284 /* This indicates to the user whether the list box or combo */
1285 /* box has the focus. How the bits are set in the itemAction */
1286 /* member determines whether the rectangle is to be drawn as */
1287 /* though the list box or combo box has the focus. */
1288 if (dis
->itemID
== 0xffffffff) {
1289 if ( ( (dis
->itemAction
& ODA_FOCUS
) && (dis
->itemState
& ODS_SELECTED
)) ||
1290 ( (dis
->itemAction
& (ODA_SELECT
| ODA_DRAWENTIRE
)) && (dis
->itemState
& ODS_FOCUS
) ) ) {
1292 TRACE("drawing item -1 special focus, rect=(%s)\n",
1293 wine_dbgstr_rect(&dis
->rcItem
));
1295 else if ((dis
->CtlType
== ODT_COMBOBOX
) &&
1296 (dis
->itemAction
== ODA_DRAWENTIRE
)) {
1297 /* draw of edit control data */
1299 if (TRACE_ON(comboex
)) {
1300 RECT exrc
, cbrc
, edrc
;
1301 GetWindowRect (infoPtr
->hwndSelf
, &exrc
);
1302 GetWindowRect (infoPtr
->hwndCombo
, &cbrc
);
1303 SetRect(&edrc
, -1, -1, -1, -1);
1304 if (infoPtr
->hwndEdit
) GetWindowRect (infoPtr
->hwndEdit
, &edrc
);
1305 TRACE("window rects ex=(%s), cb=(%s), ed=(%s)\n",
1306 wine_dbgstr_rect(&exrc
), wine_dbgstr_rect(&cbrc
),
1307 wine_dbgstr_rect(&edrc
));
1311 ERR("NOT drawing item -1 special focus, rect=(%s), action=%08x, state=%08x\n",
1312 wine_dbgstr_rect(&dis
->rcItem
),
1313 dis
->itemAction
, dis
->itemState
);
1318 /* If draw item is -1 (edit control) setup the item pointer */
1319 if (dis
->itemID
== 0xffffffff) {
1320 item
= &infoPtr
->edit
;
1322 if (infoPtr
->hwndEdit
) {
1323 /* free previous text of edit item */
1324 COMBOEX_FreeText(item
);
1325 item
->mask
&= ~CBEIF_TEXT
;
1326 if( (len
= GetWindowTextLengthW(infoPtr
->hwndEdit
)) ) {
1327 item
->mask
|= CBEIF_TEXT
;
1328 item
->pszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
1330 GetWindowTextW(infoPtr
->hwndEdit
, item
->pszText
, len
+1);
1332 TRACE("edit control hwndEdit=%p, text len=%d str=%s\n",
1333 infoPtr
->hwndEdit
, len
, debugstr_txt(item
->pszText
));
1339 /* if the item pointer is not set, then get the data and locate it */
1341 item
= get_item_data(infoPtr
, dis
->itemID
);
1342 if (item
== (CBE_ITEMDATA
*)CB_ERR
) {
1343 ERR("invalid item for id %d\n", dis
->itemID
);
1348 if (TRACE_ON(comboex
)) COMBOEX_DumpItem (item
);
1350 xbase
= CBE_STARTOFFSET
;
1351 if ((item
->mask
& CBEIF_INDENT
) && (dis
->itemState
& ODS_COMBOEXLBOX
)) {
1352 INT indent
= item
->iIndent
;
1353 if (indent
== I_INDENTCALLBACK
) {
1355 ZeroMemory(&nmce
, sizeof(nmce
));
1356 nmce
.ceItem
.mask
= CBEIF_INDENT
;
1357 nmce
.ceItem
.lParam
= item
->lParam
;
1358 nmce
.ceItem
.iItem
= dis
->itemID
;
1359 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1360 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
1361 item
->iIndent
= nmce
.ceItem
.iIndent
;
1362 indent
= nmce
.ceItem
.iIndent
;
1364 xbase
+= (indent
* CBE_INDENT
);
1368 drawstate
= ILD_NORMAL
;
1369 selected
= infoPtr
->selected
== dis
->itemID
;
1371 if (item
->mask
& CBEIF_IMAGE
)
1372 drawimage
= item
->iImage
;
1373 if (item
->mask
& CBEIF_SELECTEDIMAGE
&& selected
)
1374 drawimage
= item
->iSelectedImage
;
1375 if (dis
->itemState
& ODS_COMBOEXLBOX
) {
1376 /* drawing listbox entry */
1377 if (dis
->itemState
& ODS_SELECTED
)
1378 drawstate
= ILD_SELECTED
;
1380 /* drawing combo/edit entry */
1381 if (IsWindowVisible(infoPtr
->hwndEdit
)) {
1382 /* if we have an edit control, the slave the
1383 * selection state to the Edit focus state
1385 if (infoPtr
->flags
& WCBE_EDITFOCUSED
)
1386 drawstate
= ILD_SELECTED
;
1388 /* if we don't have an edit control, use
1389 * the requested state.
1391 if (dis
->itemState
& ODS_SELECTED
)
1392 drawstate
= ILD_SELECTED
;
1395 if (infoPtr
->himl
&& !(infoPtr
->dwExtStyle
& CBES_EX_NOEDITIMAGEINDENT
)) {
1397 iinfo
.rcImage
.left
= iinfo
.rcImage
.right
= 0;
1398 ImageList_GetImageInfo(infoPtr
->himl
, 0, &iinfo
);
1399 xioff
= iinfo
.rcImage
.right
- iinfo
.rcImage
.left
+ CBE_SEP
;
1402 /* setup pointer to text to be drawn */
1403 str
= COMBOEX_GetText(infoPtr
, item
);
1404 if (!str
) str
= nil
;
1406 len
= lstrlenW (str
);
1407 GetTextExtentPoint32W (dis
->hDC
, str
, len
, &txtsize
);
1409 if (dis
->itemAction
& (ODA_SELECT
| ODA_DRAWENTIRE
)) {
1410 int overlay
= item
->iOverlay
;
1412 if (drawimage
== I_IMAGECALLBACK
) {
1414 ZeroMemory(&nmce
, sizeof(nmce
));
1415 nmce
.ceItem
.mask
= selected
? CBEIF_SELECTEDIMAGE
: CBEIF_IMAGE
;
1416 nmce
.ceItem
.lParam
= item
->lParam
;
1417 nmce
.ceItem
.iItem
= dis
->itemID
;
1418 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1420 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) item
->iImage
= nmce
.ceItem
.iImage
;
1421 drawimage
= nmce
.ceItem
.iImage
;
1423 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
) item
->iSelectedImage
= nmce
.ceItem
.iSelectedImage
;
1424 drawimage
= nmce
.ceItem
.iSelectedImage
;
1428 if (overlay
== I_IMAGECALLBACK
) {
1430 ZeroMemory(&nmce
, sizeof(nmce
));
1431 nmce
.ceItem
.mask
= CBEIF_OVERLAY
;
1432 nmce
.ceItem
.lParam
= item
->lParam
;
1433 nmce
.ceItem
.iItem
= dis
->itemID
;
1434 COMBOEX_NotifyItem(infoPtr
, CBEN_GETDISPINFOW
, &nmce
);
1435 if (nmce
.ceItem
.mask
& CBEIF_DI_SETITEM
)
1436 item
->iOverlay
= nmce
.ceItem
.iOverlay
;
1437 overlay
= nmce
.ceItem
.iOverlay
;
1440 if (drawimage
>= 0 &&
1441 !(infoPtr
->dwExtStyle
& (CBES_EX_NOEDITIMAGE
| CBES_EX_NOEDITIMAGEINDENT
))) {
1442 if (overlay
> 0) ImageList_SetOverlayImage (infoPtr
->himl
, overlay
, 1);
1443 ImageList_Draw (infoPtr
->himl
, drawimage
, dis
->hDC
, xbase
, dis
->rcItem
.top
,
1444 drawstate
| (overlay
> 0 ? INDEXTOOVERLAYMASK(1) : 0));
1447 /* now draw the text */
1448 if (!IsWindowVisible (infoPtr
->hwndEdit
)) {
1449 nbkc
= (dis
->itemState
& ODS_SELECTED
) ?
1450 comctl32_color
.clrHighlight
: comctl32_color
.clrWindow
;
1451 bkc
= SetBkColor (dis
->hDC
, nbkc
);
1452 ntxc
= (dis
->itemState
& ODS_SELECTED
) ?
1453 comctl32_color
.clrHighlightText
: comctl32_color
.clrWindowText
;
1454 txc
= SetTextColor (dis
->hDC
, ntxc
);
1456 y
= dis
->rcItem
.top
+
1457 (dis
->rcItem
.bottom
- dis
->rcItem
.top
- txtsize
.cy
) / 2;
1458 SetRect(&rect
, x
, dis
->rcItem
.top
+ 1, x
+ txtsize
.cx
, dis
->rcItem
.bottom
- 1);
1459 TRACE("drawing item %d text, rect=(%s)\n",
1460 dis
->itemID
, wine_dbgstr_rect(&rect
));
1461 ExtTextOutW (dis
->hDC
, x
, y
, ETO_OPAQUE
| ETO_CLIPPED
,
1462 &rect
, str
, len
, 0);
1463 SetBkColor (dis
->hDC
, bkc
);
1464 SetTextColor (dis
->hDC
, txc
);
1468 if (dis
->itemAction
& ODA_FOCUS
) {
1469 rect
.left
= xbase
+ xioff
- 1;
1470 rect
.right
= rect
.left
+ txtsize
.cx
+ 2;
1471 rect
.top
= dis
->rcItem
.top
;
1472 rect
.bottom
= dis
->rcItem
.bottom
;
1473 DrawFocusRect(dis
->hDC
, &rect
);
1480 static void COMBOEX_ResetContent (COMBOEX_INFO
*infoPtr
)
1484 CBE_ITEMDATA
*item
, *next
;
1486 item
= infoPtr
->items
;
1489 COMBOEX_FreeText (item
);
1496 infoPtr
->selected
= -1;
1497 infoPtr
->nb_items
= 0;
1501 static LRESULT
COMBOEX_Destroy (COMBOEX_INFO
*infoPtr
)
1503 if (infoPtr
->hwndCombo
)
1504 SetWindowSubclass(infoPtr
->hwndCombo
, COMBOEX_ComboWndProc
, COMBO_SUBCLASSID
, 0);
1506 if (infoPtr
->hwndEdit
)
1507 SetWindowSubclass(infoPtr
->hwndEdit
, COMBOEX_EditWndProc
, EDIT_SUBCLASSID
, 0);
1509 COMBOEX_FreeText (&infoPtr
->edit
);
1510 COMBOEX_ResetContent (infoPtr
);
1512 if (infoPtr
->defaultFont
)
1513 DeleteObject (infoPtr
->defaultFont
);
1515 SetWindowLongPtrW (infoPtr
->hwndSelf
, 0, 0);
1517 /* free comboex info data */
1524 static LRESULT
COMBOEX_Enable (COMBOEX_INFO
*infoPtr
, BOOL enable
)
1526 TRACE("hwnd=%p, enable=%s\n", infoPtr
->hwndSelf
, enable
? "TRUE":"FALSE");
1528 if (infoPtr
->hwndEdit
)
1529 EnableWindow(infoPtr
->hwndEdit
, enable
);
1531 EnableWindow(infoPtr
->hwndCombo
, enable
);
1533 /* Force the control to repaint when the enabled state changes. */
1534 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
1540 static LRESULT
COMBOEX_MeasureItem (COMBOEX_INFO
const *infoPtr
, MEASUREITEMSTRUCT
*mis
)
1542 static const WCHAR strW
[] = { 'W', 0 };
1547 GetTextExtentPointW (hdc
, strW
, 1, &mysize
);
1549 mis
->itemHeight
= mysize
.cy
+ CBE_EXTRA
;
1551 TRACE("adjusted height hwnd=%p, height=%d\n",
1552 infoPtr
->hwndSelf
, mis
->itemHeight
);
1558 static LRESULT
COMBOEX_NCCreate (HWND hwnd
)
1560 /* WARNING: The COMBOEX_INFO structure is not yet created */
1561 DWORD oldstyle
, newstyle
;
1563 oldstyle
= (DWORD
)GetWindowLongW (hwnd
, GWL_STYLE
);
1564 newstyle
= oldstyle
& ~(WS_VSCROLL
| WS_HSCROLL
| WS_BORDER
);
1565 if (newstyle
!= oldstyle
) {
1566 TRACE("req style %08x, resetting style %08x\n",
1567 oldstyle
, newstyle
);
1568 SetWindowLongW (hwnd
, GWL_STYLE
, newstyle
);
1574 static LRESULT
COMBOEX_NotifyFormat (COMBOEX_INFO
*infoPtr
, LPARAM lParam
)
1576 if (lParam
== NF_REQUERY
) {
1577 INT i
= SendMessageW(infoPtr
->hwndNotify
,
1578 WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
1579 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
);
1581 return infoPtr
->NtfUnicode
? NFR_UNICODE
: NFR_ANSI
;
1585 static LRESULT
COMBOEX_Size (COMBOEX_INFO
*infoPtr
, INT width
, INT height
)
1587 TRACE("(width=%d, height=%d)\n", width
, height
);
1589 MoveWindow (infoPtr
->hwndCombo
, 0, 0, width
, height
, TRUE
);
1591 COMBOEX_AdjustEditPos (infoPtr
);
1596 static LRESULT
COMBOEX_SetFont( COMBOEX_INFO
*infoPtr
, HFONT font
, BOOL redraw
)
1598 infoPtr
->font
= font
;
1599 SendMessageW( infoPtr
->hwndCombo
, WM_SETFONT
, (WPARAM
)font
, 0 );
1600 if (infoPtr
->hwndEdit
) SendMessageW( infoPtr
->hwndEdit
, WM_SETFONT
, (WPARAM
)font
, 0 );
1601 COMBOEX_ReSize( infoPtr
);
1602 if (redraw
) InvalidateRect( infoPtr
->hwndCombo
, NULL
, TRUE
);
1606 static LRESULT
COMBOEX_SetRedraw(const COMBOEX_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1608 LRESULT ret
= DefWindowProcW( infoPtr
->hwndSelf
, WM_SETREDRAW
, wParam
, lParam
);
1609 if (wParam
) RedrawWindow( infoPtr
->hwndSelf
, NULL
, 0, RDW_INVALIDATE
|RDW_ERASE
|RDW_ALLCHILDREN
);
1614 static LRESULT
COMBOEX_WindowPosChanging (const COMBOEX_INFO
*infoPtr
, WINDOWPOS
*wp
)
1616 RECT cbx_wrect
, cbx_crect
, cb_wrect
;
1619 GetWindowRect (infoPtr
->hwndSelf
, &cbx_wrect
);
1620 GetClientRect (infoPtr
->hwndSelf
, &cbx_crect
);
1621 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
1623 /* width is winpos value + border width of comboex */
1625 + (cbx_wrect
.right
-cbx_wrect
.left
)
1626 - (cbx_crect
.right
-cbx_crect
.left
);
1628 TRACE("winpos=(%d,%d %dx%d) flags=0x%08x\n",
1629 wp
->x
, wp
->y
, wp
->cx
, wp
->cy
, wp
->flags
);
1630 TRACE("EX window=(%s), client=(%s)\n",
1631 wine_dbgstr_rect(&cbx_wrect
), wine_dbgstr_rect(&cbx_crect
));
1632 TRACE("CB window=(%s), EX setting=(0,0)-(%d,%d)\n",
1633 wine_dbgstr_rect(&cbx_wrect
), width
, cb_wrect
.bottom
-cb_wrect
.top
);
1635 if (width
) SetWindowPos (infoPtr
->hwndCombo
, HWND_TOP
, 0, 0,
1637 cb_wrect
.bottom
-cb_wrect
.top
,
1640 GetWindowRect (infoPtr
->hwndCombo
, &cb_wrect
);
1642 /* height is combo window height plus border width of comboex */
1643 height
= (cb_wrect
.bottom
-cb_wrect
.top
)
1644 + (cbx_wrect
.bottom
-cbx_wrect
.top
)
1645 - (cbx_crect
.bottom
-cbx_crect
.top
);
1647 if (infoPtr
->hwndEdit
) {
1648 COMBOEX_AdjustEditPos (infoPtr
);
1649 InvalidateRect (infoPtr
->hwndCombo
, 0, TRUE
);
1655 static LRESULT CALLBACK
1656 COMBOEX_EditWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,
1657 UINT_PTR uId
, DWORD_PTR ref_data
)
1659 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr ((HWND
)ref_data
);
1660 NMCBEENDEDITW cbeend
;
1661 WCHAR edit_text
[260];
1667 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx, info_ptr=%p\n",
1668 hwnd
, uMsg
, wParam
, lParam
, infoPtr
);
1670 if (uMsg
== WM_NCDESTROY
)
1671 RemoveWindowSubclass(hwnd
, COMBOEX_EditWndProc
, EDIT_SUBCLASSID
);
1674 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1680 /* handle (ignore) the return character */
1681 if (wParam
== VK_RETURN
) return 0;
1682 /* all other characters pass into the real Edit */
1683 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1687 obkc
= SetBkColor (hDC
, comctl32_color
.clrWindow
);
1688 GetClientRect (hwnd
, &rect
);
1689 TRACE("erasing (%s)\n", wine_dbgstr_rect(&rect
));
1690 ExtTextOutW (hDC
, 0, 0, ETO_OPAQUE
, &rect
, 0, 0, 0);
1691 SetBkColor (hDC
, obkc
);
1692 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1695 INT_PTR oldItem
, selected
;
1698 switch ((INT
)wParam
)
1701 TRACE("special code for VK_ESCAPE\n");
1703 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1705 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1706 cbeend
.fChanged
= FALSE
;
1707 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1708 CB_GETCURSEL
, 0, 0);
1709 cbeend
.iWhy
= CBENF_ESCAPE
;
1711 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) return 0;
1712 oldItem
= SendMessageW (infoPtr
->hwndCombo
, CB_GETCURSEL
, 0, 0);
1713 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1714 if (!(item
= COMBOEX_FindItem(infoPtr
, oldItem
))) {
1715 ERR("item %ld not found. Problem!\n", oldItem
);
1718 infoPtr
->selected
= oldItem
;
1719 COMBOEX_SetEditText (infoPtr
, item
);
1720 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
|
1725 TRACE("special code for VK_RETURN\n");
1727 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1729 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1730 selected
= SendMessageW (infoPtr
->hwndCombo
,
1731 CB_GETCURSEL
, 0, 0);
1733 if (selected
!= -1) {
1734 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
1735 item
= COMBOEX_FindItem (infoPtr
, selected
);
1736 TRACE("handling VK_RETURN, selected = %ld, selected_text=%s\n",
1737 selected
, debugstr_txt(item
->pszText
));
1738 TRACE("handling VK_RETURN, edittext=%s\n",
1739 debugstr_w(edit_text
));
1740 if (cmptext (COMBOEX_GetText(infoPtr
, item
), edit_text
)) {
1741 /* strings not equal -- indicate edit has changed */
1746 cbeend
.iNewSelection
= selected
;
1747 cbeend
.fChanged
= TRUE
;
1748 cbeend
.iWhy
= CBENF_RETURN
;
1749 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) {
1750 /* abort the change, restore previous */
1751 TRACE("Notify requested abort of change\n");
1752 COMBOEX_SetEditText (infoPtr
, &infoPtr
->edit
);
1753 RedrawWindow (infoPtr
->hwndCombo
, 0, 0, RDW_ERASE
|
1757 oldItem
= SendMessageW (infoPtr
->hwndCombo
,CB_GETCURSEL
, 0, 0);
1758 if (oldItem
!= -1) {
1759 /* if something is selected, then deselect it */
1760 SendMessageW (infoPtr
->hwndCombo
, CB_SETCURSEL
, -1, 0);
1762 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1763 SetFocus(infoPtr
->hwndEdit
);
1769 INT step
= wParam
== VK_DOWN
? 1 : -1;
1771 oldItem
= SendMessageW (infoPtr
->hwndSelf
, CB_GETCURSEL
, 0, 0);
1772 if (oldItem
>= 0 && oldItem
+ step
>= 0)
1773 SendMessageW (infoPtr
->hwndSelf
, CB_SETCURSEL
, oldItem
+ step
, 0);
1777 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1783 /* remember the focus to set state of icon */
1784 lret
= DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1785 infoPtr
->flags
|= WCBE_EDITFOCUSED
;
1790 * do NOTIFY CBEN_ENDEDIT with CBENF_KILLFOCUS
1792 infoPtr
->flags
&= ~WCBE_EDITFOCUSED
;
1793 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
1794 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1796 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1797 cbeend
.fChanged
= FALSE
;
1798 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1799 CB_GETCURSEL
, 0, 0);
1800 cbeend
.iWhy
= CBENF_KILLFOCUS
;
1802 COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
);
1807 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1812 static LRESULT CALLBACK
1813 COMBOEX_ComboWndProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
,
1814 UINT_PTR uId
, DWORD_PTR ref_data
)
1816 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr ((HWND
)ref_data
);
1817 NMCBEENDEDITW cbeend
;
1824 WCHAR edit_text
[260];
1826 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx, info_ptr=%p\n",
1827 hwnd
, uMsg
, wParam
, lParam
, infoPtr
);
1829 if (uMsg
== WM_NCDESTROY
)
1830 RemoveWindowSubclass(hwnd
, COMBOEX_ComboWndProc
, COMBO_SUBCLASSID
);
1833 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1839 * The only way this message should come is from the
1840 * child Listbox issuing the message. Flag this so
1841 * that ComboEx knows this is listbox.
1843 ((DRAWITEMSTRUCT
*)lParam
)->itemState
|= ODS_COMBOEXLBOX
;
1848 obkc
= SetBkColor (hDC
, comctl32_color
.clrWindow
);
1849 GetClientRect (hwnd
, &rect
);
1850 TRACE("erasing (%s)\n", wine_dbgstr_rect(&rect
));
1851 ExtTextOutW (hDC
, 0, 0, ETO_OPAQUE
, &rect
, 0, 0, 0);
1852 SetBkColor (hDC
, obkc
);
1857 * WM_NOTIFY to comboex parent (rebar)
1858 * with NM_SETCURSOR with extra words of 0,0,0,0,0x02010001
1859 * CallWindowProc (previous)
1861 nmmse
.dwItemSpec
= 0;
1862 nmmse
.dwItemData
= 0;
1865 nmmse
.dwHitInfo
= lParam
;
1866 COMBOEX_Notify (infoPtr
, NM_SETCURSOR
, (NMHDR
*)&nmmse
);
1869 case WM_LBUTTONDOWN
:
1870 GetClientRect (hwnd
, &rect
);
1871 rect
.bottom
= rect
.top
+ SendMessageW(infoPtr
->hwndSelf
,
1872 CB_GETITEMHEIGHT
, -1, 0);
1873 rect
.left
= rect
.right
- GetSystemMetrics(SM_CXVSCROLL
);
1874 pt
.x
= (short)LOWORD(lParam
);
1875 pt
.y
= (short)HIWORD(lParam
);
1876 if (PtInRect(&rect
, pt
))
1879 infoPtr
->flags
|= WCBE_MOUSECAPTURED
;
1884 if (!(infoPtr
->flags
& WCBE_MOUSECAPTURED
))
1888 infoPtr
->flags
&= ~WCBE_MOUSECAPTURED
;
1889 if (infoPtr
->flags
& WCBE_MOUSEDRAGGED
) {
1890 infoPtr
->flags
&= ~WCBE_MOUSEDRAGGED
;
1892 SendMessageW(hwnd
, CB_SHOWDROPDOWN
, TRUE
, 0);
1897 if ( (infoPtr
->flags
& WCBE_MOUSECAPTURED
) &&
1898 !(infoPtr
->flags
& WCBE_MOUSEDRAGGED
)) {
1899 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1900 COMBOEX_NotifyDragBegin(infoPtr
, edit_text
);
1901 infoPtr
->flags
|= WCBE_MOUSEDRAGGED
;
1906 switch (HIWORD(wParam
)) {
1909 /* traces show that COMBOEX does not issue CBN_EDITUPDATE
1915 focusedhwnd
= GetFocus();
1916 if (infoPtr
->flags
& WCBE_ACTEDIT
) {
1917 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1918 cbeend
.fChanged
= (infoPtr
->flags
& WCBE_EDITCHG
);
1919 cbeend
.iNewSelection
= SendMessageW (infoPtr
->hwndCombo
,
1920 CB_GETCURSEL
, 0, 0);
1921 cbeend
.iWhy
= CBENF_KILLFOCUS
;
1923 infoPtr
->flags
&= ~(WCBE_ACTEDIT
| WCBE_EDITCHG
);
1924 if (COMBOEX_NotifyEndEdit (infoPtr
, &cbeend
, edit_text
)) return 0;
1926 /* possible CB_GETCURSEL */
1927 InvalidateRect (infoPtr
->hwndCombo
, 0, 0);
1929 SendMessageW (infoPtr
->hwndCombo
, WM_KILLFOCUS
,
1930 (WPARAM
)focusedhwnd
, 0);
1936 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, 0);
1937 SendMessageW (infoPtr
->hwndEdit
, EM_SETSEL
, 0, -1);
1938 COMBOEX_Notify (infoPtr
, CBEN_BEGINEDIT
, &hdr
);
1939 infoPtr
->flags
|= WCBE_ACTEDIT
;
1940 infoPtr
->flags
&= ~WCBE_EDITCHG
; /* no change yet */
1946 cmp_func_t cmptext
= get_cmp_func(infoPtr
);
1948 INT_PTR selected
= SendMessageW (infoPtr
->hwndCombo
,
1949 CB_GETCURSEL
, 0, 0);
1951 /* lstrlenW( lastworkingURL ) */
1953 GetWindowTextW (infoPtr
->hwndEdit
, edit_text
, 260);
1954 if (selected
== -1) {
1955 lastwrk
= infoPtr
->edit
.pszText
;
1958 CBE_ITEMDATA
*item
= COMBOEX_FindItem (infoPtr
, selected
);
1959 lastwrk
= COMBOEX_GetText(infoPtr
, item
);
1962 TRACE("handling EN_CHANGE, selected = %ld, selected_text=%s\n",
1963 selected
, debugstr_w(lastwrk
));
1964 TRACE("handling EN_CHANGE, edittext=%s\n",
1965 debugstr_w(edit_text
));
1967 /* cmptext is between lastworkingURL and GetWindowText */
1968 if (cmptext (lastwrk
, edit_text
)) {
1969 /* strings not equal -- indicate edit has changed */
1970 infoPtr
->flags
|= WCBE_EDITCHG
;
1972 SendMessageW ( infoPtr
->hwndNotify
, WM_COMMAND
,
1973 MAKEWPARAM(GetDlgCtrlID (infoPtr
->hwndSelf
),
1975 (LPARAM
)infoPtr
->hwndSelf
);
1987 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1991 static LRESULT WINAPI
1992 COMBOEX_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1994 COMBOEX_INFO
*infoPtr
= COMBOEX_GetInfoPtr (hwnd
);
1996 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd
, uMsg
, wParam
, lParam
);
1999 if (uMsg
== WM_CREATE
)
2000 return COMBOEX_Create (hwnd
, (LPCREATESTRUCTA
)lParam
);
2001 if (uMsg
== WM_NCCREATE
)
2002 COMBOEX_NCCreate (hwnd
);
2003 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2008 case CBEM_DELETEITEM
:
2009 return COMBOEX_DeleteItem (infoPtr
, wParam
);
2011 case CBEM_GETCOMBOCONTROL
:
2012 return (LRESULT
)infoPtr
->hwndCombo
;
2014 case CBEM_GETEDITCONTROL
:
2015 return (LRESULT
)infoPtr
->hwndEdit
;
2017 case CBEM_GETEXTENDEDSTYLE
:
2018 return infoPtr
->dwExtStyle
;
2020 case CBEM_GETIMAGELIST
:
2021 return (LRESULT
)infoPtr
->himl
;
2024 return (LRESULT
)COMBOEX_GetItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2027 return (LRESULT
)COMBOEX_GetItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2029 case CBEM_GETUNICODEFORMAT
:
2030 return infoPtr
->unicode
;
2032 case CBEM_HASEDITCHANGED
:
2033 return COMBOEX_HasEditChanged (infoPtr
);
2035 case CBEM_INSERTITEMA
:
2036 return COMBOEX_InsertItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2038 case CBEM_INSERTITEMW
:
2039 return COMBOEX_InsertItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2041 case CBEM_SETEXSTYLE
:
2042 case CBEM_SETEXTENDEDSTYLE
:
2043 return COMBOEX_SetExtendedStyle (infoPtr
, (DWORD
)wParam
, (DWORD
)lParam
);
2045 case CBEM_SETIMAGELIST
:
2046 return (LRESULT
)COMBOEX_SetImageList (infoPtr
, (HIMAGELIST
)lParam
);
2049 return COMBOEX_SetItemA (infoPtr
, (COMBOBOXEXITEMA
*)lParam
);
2052 return COMBOEX_SetItemW (infoPtr
, (COMBOBOXEXITEMW
*)lParam
);
2054 case CBEM_SETUNICODEFORMAT
:
2055 return COMBOEX_SetUnicodeFormat (infoPtr
, wParam
);
2057 /*case CBEM_SETWINDOWTHEME:
2058 FIXME("CBEM_SETWINDOWTHEME: stub\n");*/
2062 case WM_GETTEXTLENGTH
:
2063 return SendMessageW(infoPtr
->hwndEdit
, uMsg
, wParam
, lParam
);
2066 return COMBOEX_GetListboxText(infoPtr
, wParam
, (LPWSTR
)lParam
);
2068 case CB_GETLBTEXTLEN
:
2069 return COMBOEX_GetListboxText(infoPtr
, wParam
, NULL
);
2071 case CB_RESETCONTENT
:
2072 COMBOEX_ResetContent(infoPtr
);
2075 /* Combo messages we are not sure if we need to process or just forward */
2076 case CB_GETDROPPEDCONTROLRECT
:
2077 case CB_GETITEMHEIGHT
:
2078 case CB_GETEXTENDEDUI
:
2080 case CB_SELECTSTRING
:
2082 /* Combo messages OK to just forward to the regular COMBO */
2085 case CB_GETDROPPEDSTATE
:
2086 case CB_SETDROPPEDWIDTH
:
2087 case CB_SETEXTENDEDUI
:
2088 case CB_SHOWDROPDOWN
:
2089 return SendMessageW (infoPtr
->hwndCombo
, uMsg
, wParam
, lParam
);
2091 /* Combo messages we need to process specially */
2092 case CB_FINDSTRINGEXACT
:
2093 return COMBOEX_FindStringExact (infoPtr
, (INT
)wParam
, (LPCWSTR
)lParam
);
2095 case CB_GETITEMDATA
:
2096 return COMBOEX_GetItemData (infoPtr
, (INT
)wParam
);
2099 return COMBOEX_SetCursel (infoPtr
, (INT
)wParam
);
2101 case CB_SETITEMDATA
:
2102 return COMBOEX_SetItemData (infoPtr
, (INT
)wParam
, (DWORD_PTR
)lParam
);
2104 case CB_SETITEMHEIGHT
:
2105 return COMBOEX_SetItemHeight (infoPtr
, (INT
)wParam
, (UINT
)lParam
);
2109 /* Window messages passed to parent */
2111 return COMBOEX_Command (infoPtr
, wParam
);
2114 if (infoPtr
->NtfUnicode
)
2115 return SendMessageW (infoPtr
->hwndNotify
, uMsg
, wParam
, lParam
);
2117 return SendMessageA (infoPtr
->hwndNotify
, uMsg
, wParam
, lParam
);
2120 /* Window messages we need to process */
2122 return COMBOEX_WM_DeleteItem (infoPtr
, (DELETEITEMSTRUCT
*)lParam
);
2125 return COMBOEX_DrawItem (infoPtr
, (DRAWITEMSTRUCT
*)lParam
);
2128 return COMBOEX_Destroy (infoPtr
);
2131 return COMBOEX_Enable (infoPtr
, (BOOL
)wParam
);
2133 case WM_MEASUREITEM
:
2134 return COMBOEX_MeasureItem (infoPtr
, (MEASUREITEMSTRUCT
*)lParam
);
2136 case WM_NOTIFYFORMAT
:
2137 return COMBOEX_NotifyFormat (infoPtr
, lParam
);
2140 return COMBOEX_Size (infoPtr
, LOWORD(lParam
), HIWORD(lParam
));
2143 return (LRESULT
)infoPtr
->font
;
2146 return COMBOEX_SetFont( infoPtr
, (HFONT
)wParam
, LOWORD(lParam
) != 0 );
2149 return COMBOEX_SetRedraw(infoPtr
, wParam
, lParam
);
2151 case WM_WINDOWPOSCHANGING
:
2152 return COMBOEX_WindowPosChanging (infoPtr
, (WINDOWPOS
*)lParam
);
2155 if (infoPtr
->hwndEdit
) SetFocus( infoPtr
->hwndEdit
);
2156 else SetFocus( infoPtr
->hwndCombo
);
2159 case WM_SYSCOLORCHANGE
:
2160 COMCTL32_RefreshSysColors();
2164 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
2165 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",uMsg
,wParam
,lParam
);
2166 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2171 void COMBOEX_Register (void)
2175 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2176 wndClass
.style
= CS_GLOBALCLASS
;
2177 wndClass
.lpfnWndProc
= COMBOEX_WindowProc
;
2178 wndClass
.cbClsExtra
= 0;
2179 wndClass
.cbWndExtra
= sizeof(COMBOEX_INFO
*);
2180 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
2181 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
2182 wndClass
.lpszClassName
= WC_COMBOBOXEXW
;
2184 RegisterClassW (&wndClass
);
2188 void COMBOEX_Unregister (void)
2190 UnregisterClassW (WC_COMBOBOXEXW
, NULL
);