4 * Copyright 1997 Alex Korobka
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * This code was audited for completeness against the documented features
23 * of Comctl32.dll version 6.0 on Oct. 4, 2004, by Dimitrie O. Paun.
25 * Unless otherwise noted, we believe this code to be complete, as per
26 * the specification mentioned above.
27 * If you discover missing features, or bugs, please note them below.
30 * - ComboBox_[GS]etMinVisible()
31 * - CB_GETMINVISIBLE, CB_SETMINVISIBLE
44 #include "wine/unicode.h"
45 #include "user_private.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(combo
);
53 /* bits in the dwKeyData */
54 #define KEYDATA_ALT 0x2000
55 #define KEYDATA_PREVSTATE 0x4000
58 * Additional combo box definitions
61 #define CB_NOTIFY( lphc, code ) \
62 (SendMessageW((lphc)->owner, WM_COMMAND, \
63 MAKEWPARAM(GetWindowLongPtrW((lphc)->self,GWLP_ID), (code)), (LPARAM)(lphc)->self))
65 #define CB_DISABLED( lphc ) (!IsWindowEnabled((lphc)->self))
66 #define CB_OWNERDRAWN( lphc ) ((lphc)->dwStyle & (CBS_OWNERDRAWFIXED | CBS_OWNERDRAWVARIABLE))
67 #define CB_HASSTRINGS( lphc ) ((lphc)->dwStyle & CBS_HASSTRINGS)
68 #define CB_HWND( lphc ) ((lphc)->self)
69 #define CB_GETTYPE( lphc ) ((lphc)->dwStyle & (CBS_DROPDOWNLIST))
71 #define ISWIN31 (LOWORD(GetVersion()) == 0x0a03)
76 static HBITMAP hComboBmp
= 0;
77 static UINT CBitHeight
, CBitWidth
;
80 * Look and feel dependent "constants"
83 #define COMBO_YBORDERGAP 5
84 #define COMBO_XBORDERSIZE() 2
85 #define COMBO_YBORDERSIZE() 2
86 #define COMBO_EDITBUTTONSPACE() 0
87 #define EDIT_CONTROL_PADDING() 1
89 /*********************************************************************
90 * combo class descriptor
92 static const WCHAR comboboxW
[] = {'C','o','m','b','o','B','o','x',0};
93 const struct builtin_class_descr COMBO_builtin_class
=
96 CS_PARENTDC
| CS_DBLCLKS
| CS_HREDRAW
| CS_VREDRAW
, /* style */
97 WINPROC_COMBO
, /* proc */
98 sizeof(HEADCOMBO
*), /* extra */
99 IDC_ARROW
, /* cursor */
104 /***********************************************************************
107 * Load combo button bitmap.
109 static BOOL
COMBO_Init(void)
113 if( hComboBmp
) return TRUE
;
114 if( (hDC
= CreateCompatibleDC(0)) )
117 if( (hComboBmp
= LoadBitmapW(0, MAKEINTRESOURCEW(OBM_COMBO
))) )
123 GetObjectW( hComboBmp
, sizeof(bm
), &bm
);
124 CBitHeight
= bm
.bmHeight
;
125 CBitWidth
= bm
.bmWidth
;
127 TRACE("combo bitmap [%i,%i]\n", CBitWidth
, CBitHeight
);
129 hPrevB
= SelectObject( hDC
, hComboBmp
);
130 SetRect( &r
, 0, 0, CBitWidth
, CBitHeight
);
131 InvertRect( hDC
, &r
);
132 SelectObject( hDC
, hPrevB
);
141 /***********************************************************************
144 static LRESULT
COMBO_NCCreate(HWND hwnd
, LONG style
)
148 if (COMBO_Init() && (lphc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(HEADCOMBO
))) )
151 SetWindowLongPtrW( hwnd
, 0, (LONG_PTR
)lphc
);
153 /* some braindead apps do try to use scrollbar/border flags */
155 lphc
->dwStyle
= style
& ~(WS_BORDER
| WS_HSCROLL
| WS_VSCROLL
);
156 SetWindowLongW( hwnd
, GWL_STYLE
, style
& ~(WS_BORDER
| WS_HSCROLL
| WS_VSCROLL
) );
159 * We also have to remove the client edge style to make sure
160 * we don't end-up with a non client area.
162 SetWindowLongW( hwnd
, GWL_EXSTYLE
,
163 GetWindowLongW( hwnd
, GWL_EXSTYLE
) & ~WS_EX_CLIENTEDGE
);
165 if( !(style
& (CBS_OWNERDRAWFIXED
| CBS_OWNERDRAWVARIABLE
)) )
166 lphc
->dwStyle
|= CBS_HASSTRINGS
;
167 if( !(GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_NOPARENTNOTIFY
) )
168 lphc
->wState
|= CBF_NOTIFY
;
170 TRACE("[%p], style = %08x\n", lphc
, lphc
->dwStyle
);
176 /***********************************************************************
179 static LRESULT
COMBO_NCDestroy( LPHEADCOMBO lphc
)
184 TRACE("[%p]: freeing storage\n", lphc
->self
);
186 if( (CB_GETTYPE(lphc
) != CBS_SIMPLE
) && lphc
->hWndLBox
)
187 DestroyWindow( lphc
->hWndLBox
);
189 SetWindowLongPtrW( lphc
->self
, 0, 0 );
190 HeapFree( GetProcessHeap(), 0, lphc
);
195 /***********************************************************************
196 * CBGetTextAreaHeight
198 * This method will calculate the height of the text area of the
200 * The height of the text area is set in two ways.
201 * It can be set explicitly through a combobox message or through a
202 * WM_MEASUREITEM callback.
203 * If this is not the case, the height is set to font height + 4px
204 * This height was determined through experimentation.
205 * CBCalcPlacement will add 2*COMBO_YBORDERSIZE pixels for the border
207 static INT
CBGetTextAreaHeight(
213 if( lphc
->editHeight
) /* explicitly set height */
215 iTextItemHeight
= lphc
->editHeight
;
220 HDC hDC
= GetDC(hwnd
);
225 hPrevFont
= SelectObject( hDC
, lphc
->hFont
);
227 GetTextMetricsW(hDC
, &tm
);
229 baseUnitY
= tm
.tmHeight
;
232 SelectObject( hDC
, hPrevFont
);
234 ReleaseDC(hwnd
, hDC
);
236 iTextItemHeight
= baseUnitY
+ 4;
240 * Check the ownerdraw case if we haven't asked the parent the size
243 if ( CB_OWNERDRAWN(lphc
) &&
244 (lphc
->wState
& CBF_MEASUREITEM
) )
246 MEASUREITEMSTRUCT measureItem
;
248 INT originalItemHeight
= iTextItemHeight
;
249 UINT id
= (UINT
)GetWindowLongPtrW( lphc
->self
, GWLP_ID
);
252 * We use the client rect for the width of the item.
254 GetClientRect(hwnd
, &clientRect
);
256 lphc
->wState
&= ~CBF_MEASUREITEM
;
259 * Send a first one to measure the size of the text area
261 measureItem
.CtlType
= ODT_COMBOBOX
;
262 measureItem
.CtlID
= id
;
263 measureItem
.itemID
= -1;
264 measureItem
.itemWidth
= clientRect
.right
;
265 measureItem
.itemHeight
= iTextItemHeight
- 6; /* ownerdrawn cb is taller */
266 measureItem
.itemData
= 0;
267 SendMessageW(lphc
->owner
, WM_MEASUREITEM
, id
, (LPARAM
)&measureItem
);
268 iTextItemHeight
= 6 + measureItem
.itemHeight
;
271 * Send a second one in the case of a fixed ownerdraw list to calculate the
272 * size of the list items. (we basically do this on behalf of the listbox)
274 if (lphc
->dwStyle
& CBS_OWNERDRAWFIXED
)
276 measureItem
.CtlType
= ODT_COMBOBOX
;
277 measureItem
.CtlID
= id
;
278 measureItem
.itemID
= 0;
279 measureItem
.itemWidth
= clientRect
.right
;
280 measureItem
.itemHeight
= originalItemHeight
;
281 measureItem
.itemData
= 0;
282 SendMessageW(lphc
->owner
, WM_MEASUREITEM
, id
, (LPARAM
)&measureItem
);
283 lphc
->fixedOwnerDrawHeight
= measureItem
.itemHeight
;
287 * Keep the size for the next time
289 lphc
->editHeight
= iTextItemHeight
;
292 return iTextItemHeight
;
295 /***********************************************************************
298 * The dummy resize is used for listboxes that have a popup to trigger
299 * a re-arranging of the contents of the combobox and the recalculation
300 * of the size of the "real" control window.
302 static void CBForceDummyResize(
308 newComboHeight
= CBGetTextAreaHeight(lphc
->self
,lphc
) + 2*COMBO_YBORDERSIZE();
310 GetWindowRect(lphc
->self
, &windowRect
);
313 * We have to be careful, resizing a combobox also has the meaning that the
314 * dropped rect will be resized. In this case, we want to trigger a resize
315 * to recalculate layout but we don't want to change the dropped rectangle
316 * So, we pass the height of text area of control as the height.
317 * this will cancel-out in the processing of the WM_WINDOWPOSCHANGING
320 SetWindowPos( lphc
->self
,
323 windowRect
.right
- windowRect
.left
,
325 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
328 /***********************************************************************
331 * Set up component coordinates given valid lphc->RectCombo.
333 static void CBCalcPlacement(
341 * Again, start with the client rectangle.
343 GetClientRect(hwnd
, lprEdit
);
348 InflateRect(lprEdit
, -COMBO_XBORDERSIZE(), -COMBO_YBORDERSIZE());
351 * Chop off the bottom part to fit with the height of the text area.
353 lprEdit
->bottom
= lprEdit
->top
+ CBGetTextAreaHeight(hwnd
, lphc
);
356 * The button starts the same vertical position as the text area.
358 CopyRect(lprButton
, lprEdit
);
361 * If the combobox is "simple" there is no button.
363 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
364 lprButton
->left
= lprButton
->right
= lprButton
->bottom
= 0;
368 * Let's assume the combobox button is the same width as the
370 * size the button horizontally and cut-off the text area.
372 lprButton
->left
= lprButton
->right
- GetSystemMetrics(SM_CXVSCROLL
);
373 lprEdit
->right
= lprButton
->left
;
377 * In the case of a dropdown, there is an additional spacing between the
378 * text area and the button.
380 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
382 lprEdit
->right
-= COMBO_EDITBUTTONSPACE();
386 * If we have an edit control, we space it away from the borders slightly.
388 if (CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
)
390 InflateRect(lprEdit
, -EDIT_CONTROL_PADDING(), -EDIT_CONTROL_PADDING());
394 * Adjust the size of the listbox popup.
396 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
399 * Use the client rectangle to initialize the listbox rectangle
401 GetClientRect(hwnd
, lprLB
);
404 * Then, chop-off the top part.
406 lprLB
->top
= lprEdit
->bottom
+ COMBO_YBORDERSIZE();
411 * Make sure the dropped width is as large as the combobox itself.
413 if (lphc
->droppedWidth
< (lprButton
->right
+ COMBO_XBORDERSIZE()))
415 lprLB
->right
= lprLB
->left
+ (lprButton
->right
+ COMBO_XBORDERSIZE());
418 * In the case of a dropdown, the popup listbox is offset to the right.
419 * so, we want to make sure it's flush with the right side of the
422 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
423 lprLB
->right
-= COMBO_EDITBUTTONSPACE();
426 lprLB
->right
= lprLB
->left
+ lphc
->droppedWidth
;
429 /* don't allow negative window width */
430 if (lprEdit
->right
< lprEdit
->left
)
431 lprEdit
->right
= lprEdit
->left
;
433 TRACE("\ttext\t= (%s)\n", wine_dbgstr_rect(lprEdit
));
435 TRACE("\tbutton\t= (%s)\n", wine_dbgstr_rect(lprButton
));
437 TRACE("\tlbox\t= (%s)\n", wine_dbgstr_rect(lprLB
));
440 /***********************************************************************
441 * CBGetDroppedControlRect
443 static void CBGetDroppedControlRect( LPHEADCOMBO lphc
, LPRECT lpRect
)
445 /* In windows, CB_GETDROPPEDCONTROLRECT returns the upper left corner
446 of the combo box and the lower right corner of the listbox */
448 GetWindowRect(lphc
->self
, lpRect
);
450 lpRect
->right
= lpRect
->left
+ lphc
->droppedRect
.right
- lphc
->droppedRect
.left
;
451 lpRect
->bottom
= lpRect
->top
+ lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
;
455 /***********************************************************************
456 * COMBO_WindowPosChanging
458 static LRESULT
COMBO_WindowPosChanging(
461 WINDOWPOS
* posChanging
)
464 * We need to override the WM_WINDOWPOSCHANGING method to handle all
465 * the non-simple comboboxes. The problem is that those controls are
466 * always the same height. We have to make sure they are not resized
469 if ( ( CB_GETTYPE(lphc
) != CBS_SIMPLE
) &&
470 ((posChanging
->flags
& SWP_NOSIZE
) == 0) )
474 newComboHeight
= CBGetTextAreaHeight(hwnd
,lphc
) +
475 2*COMBO_YBORDERSIZE();
478 * Resizing a combobox has another side effect, it resizes the dropped
479 * rectangle as well. However, it does it only if the new height for the
480 * combobox is more than the height it should have. In other words,
481 * if the application resizing the combobox only had the intention to resize
482 * the actual control, for example, to do the layout of a dialog that is
483 * resized, the height of the dropdown is not changed.
485 if (posChanging
->cy
> newComboHeight
)
487 TRACE("posChanging->cy=%d, newComboHeight=%d, oldbot=%d, oldtop=%d\n",
488 posChanging
->cy
, newComboHeight
, lphc
->droppedRect
.bottom
,
489 lphc
->droppedRect
.top
);
490 lphc
->droppedRect
.bottom
= lphc
->droppedRect
.top
+ posChanging
->cy
- newComboHeight
;
493 posChanging
->cy
= newComboHeight
;
499 /***********************************************************************
502 static LRESULT
COMBO_Create( HWND hwnd
, LPHEADCOMBO lphc
, HWND hwndParent
, LONG style
,
505 static const WCHAR clbName
[] = {'C','o','m','b','o','L','B','o','x',0};
506 static const WCHAR editName
[] = {'E','d','i','t',0};
508 if( !CB_GETTYPE(lphc
) ) lphc
->dwStyle
|= CBS_SIMPLE
;
509 if( CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
) lphc
->wState
|= CBF_EDIT
;
511 lphc
->owner
= hwndParent
;
514 * The item height and dropped width are not set when the control
517 lphc
->droppedWidth
= lphc
->editHeight
= 0;
520 * The first time we go through, we want to measure the ownerdraw item
522 lphc
->wState
|= CBF_MEASUREITEM
;
524 /* M$ IE 3.01 actually creates (and rapidly destroys) an ownerless combobox */
526 if( lphc
->owner
|| !(style
& WS_VISIBLE
) )
532 * Initialize the dropped rect to the size of the client area of the
533 * control and then, force all the areas of the combobox to be
536 GetClientRect( hwnd
, &lphc
->droppedRect
);
537 CBCalcPlacement(hwnd
, lphc
, &lphc
->textRect
, &lphc
->buttonRect
, &lphc
->droppedRect
);
540 * Adjust the position of the popup listbox if it's necessary
542 if ( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
544 lphc
->droppedRect
.top
= lphc
->textRect
.bottom
+ COMBO_YBORDERSIZE();
547 * If it's a dropdown, the listbox is offset
549 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
550 lphc
->droppedRect
.left
+= COMBO_EDITBUTTONSPACE();
552 if (lphc
->droppedRect
.bottom
< lphc
->droppedRect
.top
)
553 lphc
->droppedRect
.bottom
= lphc
->droppedRect
.top
;
554 if (lphc
->droppedRect
.right
< lphc
->droppedRect
.left
)
555 lphc
->droppedRect
.right
= lphc
->droppedRect
.left
;
556 MapWindowPoints( hwnd
, 0, (LPPOINT
)&lphc
->droppedRect
, 2 );
559 /* create listbox popup */
561 lbeStyle
= (LBS_NOTIFY
| LBS_COMBOBOX
| WS_BORDER
| WS_CLIPSIBLINGS
| WS_CHILD
) |
562 (style
& (WS_VSCROLL
| CBS_OWNERDRAWFIXED
| CBS_OWNERDRAWVARIABLE
));
564 if( lphc
->dwStyle
& CBS_SORT
)
565 lbeStyle
|= LBS_SORT
;
566 if( lphc
->dwStyle
& CBS_HASSTRINGS
)
567 lbeStyle
|= LBS_HASSTRINGS
;
568 if( lphc
->dwStyle
& CBS_NOINTEGRALHEIGHT
)
569 lbeStyle
|= LBS_NOINTEGRALHEIGHT
;
570 if( lphc
->dwStyle
& CBS_DISABLENOSCROLL
)
571 lbeStyle
|= LBS_DISABLENOSCROLL
;
573 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
) /* child listbox */
575 lbeStyle
|= WS_VISIBLE
;
578 * In win 95 look n feel, the listbox in the simple combobox has
579 * the WS_EXCLIENTEDGE style instead of the WS_BORDER style.
581 lbeStyle
&= ~WS_BORDER
;
582 lbeExStyle
|= WS_EX_CLIENTEDGE
;
586 lbeExStyle
|= (WS_EX_TOPMOST
| WS_EX_TOOLWINDOW
);
590 lphc
->hWndLBox
= CreateWindowExW(lbeExStyle
, clbName
, NULL
, lbeStyle
,
591 lphc
->droppedRect
.left
,
592 lphc
->droppedRect
.top
,
593 lphc
->droppedRect
.right
- lphc
->droppedRect
.left
,
594 lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
,
595 hwnd
, (HMENU
)ID_CB_LISTBOX
,
596 (HINSTANCE
)GetWindowLongPtrW( hwnd
, GWLP_HINSTANCE
), lphc
);
598 lphc
->hWndLBox
= CreateWindowExA(lbeExStyle
, "ComboLBox", NULL
, lbeStyle
,
599 lphc
->droppedRect
.left
,
600 lphc
->droppedRect
.top
,
601 lphc
->droppedRect
.right
- lphc
->droppedRect
.left
,
602 lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
,
603 hwnd
, (HMENU
)ID_CB_LISTBOX
,
604 (HINSTANCE
)GetWindowLongPtrW( hwnd
, GWLP_HINSTANCE
), lphc
);
609 lbeStyle
= WS_CHILD
| WS_VISIBLE
| ES_NOHIDESEL
| ES_LEFT
| ES_COMBO
;
611 if( lphc
->wState
& CBF_EDIT
)
613 if( lphc
->dwStyle
& CBS_OEMCONVERT
)
614 lbeStyle
|= ES_OEMCONVERT
;
615 if( lphc
->dwStyle
& CBS_AUTOHSCROLL
)
616 lbeStyle
|= ES_AUTOHSCROLL
;
617 if( lphc
->dwStyle
& CBS_LOWERCASE
)
618 lbeStyle
|= ES_LOWERCASE
;
619 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
620 lbeStyle
|= ES_UPPERCASE
;
622 if (!IsWindowEnabled(hwnd
)) lbeStyle
|= WS_DISABLED
;
625 lphc
->hWndEdit
= CreateWindowExW(0, editName
, NULL
, lbeStyle
,
626 lphc
->textRect
.left
, lphc
->textRect
.top
,
627 lphc
->textRect
.right
- lphc
->textRect
.left
,
628 lphc
->textRect
.bottom
- lphc
->textRect
.top
,
629 hwnd
, (HMENU
)ID_CB_EDIT
,
630 (HINSTANCE
)GetWindowLongPtrW( hwnd
, GWLP_HINSTANCE
), NULL
);
632 lphc
->hWndEdit
= CreateWindowExA(0, "Edit", NULL
, lbeStyle
,
633 lphc
->textRect
.left
, lphc
->textRect
.top
,
634 lphc
->textRect
.right
- lphc
->textRect
.left
,
635 lphc
->textRect
.bottom
- lphc
->textRect
.top
,
636 hwnd
, (HMENU
)ID_CB_EDIT
,
637 (HINSTANCE
)GetWindowLongPtrW( hwnd
, GWLP_HINSTANCE
), NULL
);
639 if( !lphc
->hWndEdit
)
645 if( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
647 /* Now do the trick with parent */
648 SetParent(lphc
->hWndLBox
, HWND_DESKTOP
);
650 * If the combo is a dropdown, we must resize the control
651 * to fit only the text area and button. To do this,
652 * we send a dummy resize and the WM_WINDOWPOSCHANGING message
653 * will take care of setting the height for us.
655 CBForceDummyResize(lphc
);
658 TRACE("init done\n");
661 ERR("edit control failure.\n");
662 } else ERR("listbox failure.\n");
663 } else ERR("no owner for visible combo.\n");
665 /* CreateWindow() will send WM_NCDESTROY to cleanup */
670 /***********************************************************************
673 * Paint combo button (normal, pressed, and disabled states).
675 static void CBPaintButton( LPHEADCOMBO lphc
, HDC hdc
, RECT rectButton
)
677 UINT buttonState
= DFCS_SCROLLCOMBOBOX
;
679 if( lphc
->wState
& CBF_NOREDRAW
)
683 if (lphc
->wState
& CBF_BUTTONDOWN
)
684 buttonState
|= DFCS_PUSHED
;
686 if (CB_DISABLED(lphc
))
687 buttonState
|= DFCS_INACTIVE
;
689 DrawFrameControl(hdc
, &rectButton
, DFC_SCROLL
, buttonState
);
692 /***********************************************************************
695 * Paint CBS_DROPDOWNLIST text field / update edit control contents.
697 static void CBPaintText(
705 if( lphc
->wState
& CBF_NOREDRAW
) return;
709 /* follow Windows combobox that sends a bunch of text
710 * inquiries to its listbox while processing WM_PAINT. */
712 if( (id
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0) ) != LB_ERR
)
714 size
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, id
, 0);
716 FIXME("LB_ERR probably not handled yet\n");
717 if( (pText
= HeapAlloc( GetProcessHeap(), 0, (size
+ 1) * sizeof(WCHAR
))) )
719 /* size from LB_GETTEXTLEN may be too large, from LB_GETTEXT is accurate */
720 size
=SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, id
, (LPARAM
)pText
);
721 pText
[size
] = '\0'; /* just in case */
725 if( !CB_OWNERDRAWN(lphc
) )
728 if( lphc
->wState
& CBF_EDIT
)
730 static const WCHAR empty_stringW
[] = { 0 };
731 if( CB_HASSTRINGS(lphc
) ) SetWindowTextW( lphc
->hWndEdit
, pText
? pText
: empty_stringW
);
732 if( lphc
->wState
& CBF_FOCUSED
)
733 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, -1);
735 else /* paint text field ourselves */
737 UINT itemState
= ODS_COMBOBOXEDIT
;
738 HFONT hPrevFont
= (lphc
->hFont
) ? SelectObject(hdc
, lphc
->hFont
) : 0;
741 * Give ourselves some space.
743 InflateRect( &rectEdit
, -1, -1 );
745 if( CB_OWNERDRAWN(lphc
) )
749 UINT ctlid
= (UINT
)GetWindowLongPtrW( lphc
->self
, GWLP_ID
);
751 /* setup state for DRAWITEM message. Owner will highlight */
752 if ( (lphc
->wState
& CBF_FOCUSED
) &&
753 !(lphc
->wState
& CBF_DROPPED
) )
754 itemState
|= ODS_SELECTED
| ODS_FOCUS
;
757 * Save the current clip region.
758 * To retrieve the clip region, we need to create one "dummy"
761 clipRegion
= CreateRectRgnIndirect(&rectEdit
);
763 if (GetClipRgn(hdc
, clipRegion
)!=1)
765 DeleteObject(clipRegion
);
769 if (!IsWindowEnabled(lphc
->self
)) itemState
|= ODS_DISABLED
;
771 dis
.CtlType
= ODT_COMBOBOX
;
773 dis
.hwndItem
= lphc
->self
;
774 dis
.itemAction
= ODA_DRAWENTIRE
;
776 dis
.itemState
= itemState
;
778 dis
.rcItem
= rectEdit
;
779 dis
.itemData
= SendMessageW(lphc
->hWndLBox
, LB_GETITEMDATA
, id
, 0);
782 * Clip the DC and have the parent draw the item.
784 IntersectClipRect(hdc
,
785 rectEdit
.left
, rectEdit
.top
,
786 rectEdit
.right
, rectEdit
.bottom
);
788 SendMessageW(lphc
->owner
, WM_DRAWITEM
, ctlid
, (LPARAM
)&dis
);
791 * Reset the clipping region.
793 SelectClipRgn(hdc
, clipRegion
);
797 static const WCHAR empty_stringW
[] = { 0 };
799 if ( (lphc
->wState
& CBF_FOCUSED
) &&
800 !(lphc
->wState
& CBF_DROPPED
) ) {
803 FillRect( hdc
, &rectEdit
, GetSysColorBrush(COLOR_HIGHLIGHT
) );
804 SetBkColor( hdc
, GetSysColor( COLOR_HIGHLIGHT
) );
805 SetTextColor( hdc
, GetSysColor( COLOR_HIGHLIGHTTEXT
) );
811 ETO_OPAQUE
| ETO_CLIPPED
,
813 pText
? pText
: empty_stringW
, size
, NULL
);
815 if(lphc
->wState
& CBF_FOCUSED
&& !(lphc
->wState
& CBF_DROPPED
))
816 DrawFocusRect( hdc
, &rectEdit
);
820 SelectObject(hdc
, hPrevFont
);
822 HeapFree( GetProcessHeap(), 0, pText
);
825 /***********************************************************************
828 static void CBPaintBorder(
830 const HEADCOMBO
*lphc
,
835 if (CB_GETTYPE(lphc
) != CBS_SIMPLE
)
837 GetClientRect(hwnd
, &clientRect
);
841 CopyRect(&clientRect
, &lphc
->textRect
);
843 InflateRect(&clientRect
, EDIT_CONTROL_PADDING(), EDIT_CONTROL_PADDING());
844 InflateRect(&clientRect
, COMBO_XBORDERSIZE(), COMBO_YBORDERSIZE());
847 DrawEdge(hdc
, &clientRect
, EDGE_SUNKEN
, BF_RECT
);
850 /***********************************************************************
851 * COMBO_PrepareColors
853 * This method will sent the appropriate WM_CTLCOLOR message to
854 * prepare and setup the colors for the combo's DC.
856 * It also returns the brush to use for the background.
858 static HBRUSH
COMBO_PrepareColors(
865 * Get the background brush for this control.
867 if (CB_DISABLED(lphc
))
869 hBkgBrush
= (HBRUSH
)SendMessageW(lphc
->owner
, WM_CTLCOLORSTATIC
,
870 (WPARAM
)hDC
, (LPARAM
)lphc
->self
);
873 * We have to change the text color since WM_CTLCOLORSTATIC will
874 * set it to the "enabled" color. This is the same behavior as the
877 SetTextColor(hDC
, GetSysColor(COLOR_GRAYTEXT
));
881 /* FIXME: In which cases WM_CTLCOLORLISTBOX should be sent? */
882 hBkgBrush
= (HBRUSH
)SendMessageW(lphc
->owner
, WM_CTLCOLOREDIT
,
883 (WPARAM
)hDC
, (LPARAM
)lphc
->self
);
890 hBkgBrush
= GetSysColorBrush(COLOR_WINDOW
);
896 /***********************************************************************
899 static LRESULT
COMBO_Paint(LPHEADCOMBO lphc
, HDC hParamDC
)
904 hDC
= (hParamDC
) ? hParamDC
905 : BeginPaint( lphc
->self
, &ps
);
907 TRACE("hdc=%p\n", hDC
);
909 if( hDC
&& !(lphc
->wState
& CBF_NOREDRAW
) )
911 HBRUSH hPrevBrush
, hBkgBrush
;
914 * Retrieve the background brush and select it in the
917 hBkgBrush
= COMBO_PrepareColors(lphc
, hDC
);
919 hPrevBrush
= SelectObject( hDC
, hBkgBrush
);
920 if (!(lphc
->wState
& CBF_EDIT
))
921 FillRect(hDC
, &lphc
->textRect
, hBkgBrush
);
924 * In non 3.1 look, there is a sunken border on the combobox
926 CBPaintBorder(lphc
->self
, lphc
, hDC
);
928 if( !IsRectEmpty(&lphc
->buttonRect
) )
930 CBPaintButton(lphc
, hDC
, lphc
->buttonRect
);
933 /* paint the edit control padding area */
934 if (CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
)
936 RECT rPadEdit
= lphc
->textRect
;
938 InflateRect(&rPadEdit
, EDIT_CONTROL_PADDING(), EDIT_CONTROL_PADDING());
940 FrameRect( hDC
, &rPadEdit
, GetSysColorBrush(COLOR_WINDOW
) );
943 if( !(lphc
->wState
& CBF_EDIT
) )
944 CBPaintText( lphc
, hDC
, lphc
->textRect
);
947 SelectObject( hDC
, hPrevBrush
);
951 EndPaint(lphc
->self
, &ps
);
956 /***********************************************************************
959 * Select listbox entry according to the contents of the edit control.
961 static INT
CBUpdateLBox( LPHEADCOMBO lphc
, BOOL bSelect
)
967 length
= SendMessageW( lphc
->hWndEdit
, WM_GETTEXTLENGTH
, 0, 0 );
970 pText
= HeapAlloc( GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
));
972 TRACE("\t edit text length %i\n", length
);
976 GetWindowTextW( lphc
->hWndEdit
, pText
, length
+ 1);
977 idx
= SendMessageW(lphc
->hWndLBox
, LB_FINDSTRING
, -1, (LPARAM
)pText
);
978 HeapFree( GetProcessHeap(), 0, pText
);
981 SendMessageW(lphc
->hWndLBox
, LB_SETCURSEL
, bSelect
? idx
: -1, 0);
983 /* probably superfluous but Windows sends this too */
984 SendMessageW(lphc
->hWndLBox
, LB_SETCARETINDEX
, idx
< 0 ? 0 : idx
, 0);
985 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
, idx
< 0 ? 0 : idx
, 0);
990 /***********************************************************************
993 * Copy a listbox entry to the edit control.
995 static void CBUpdateEdit( LPHEADCOMBO lphc
, INT index
)
999 static const WCHAR empty_stringW
[] = { 0 };
1001 TRACE("\t %i\n", index
);
1003 if( index
>= 0 ) /* got an entry */
1005 length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, index
, 0);
1006 if( length
!= LB_ERR
)
1008 if( (pText
= HeapAlloc( GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
))) )
1010 SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, index
, (LPARAM
)pText
);
1015 if( CB_HASSTRINGS(lphc
) )
1017 lphc
->wState
|= (CBF_NOEDITNOTIFY
| CBF_NOLBSELECT
);
1018 SendMessageW(lphc
->hWndEdit
, WM_SETTEXT
, 0, pText
? (LPARAM
)pText
: (LPARAM
)empty_stringW
);
1019 lphc
->wState
&= ~(CBF_NOEDITNOTIFY
| CBF_NOLBSELECT
);
1022 if( lphc
->wState
& CBF_FOCUSED
)
1023 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, -1);
1025 HeapFree( GetProcessHeap(), 0, pText
);
1028 /***********************************************************************
1031 * Show listbox popup.
1033 static void CBDropDown( LPHEADCOMBO lphc
)
1036 MONITORINFO mon_info
;
1041 TRACE("[%p]: drop down\n", lphc
->self
);
1043 CB_NOTIFY( lphc
, CBN_DROPDOWN
);
1047 lphc
->wState
|= CBF_DROPPED
;
1048 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1050 lphc
->droppedIndex
= CBUpdateLBox( lphc
, TRUE
);
1052 /* Update edit only if item is in the list */
1053 if( !(lphc
->wState
& CBF_CAPTURE
) && lphc
->droppedIndex
>= 0)
1054 CBUpdateEdit( lphc
, lphc
->droppedIndex
);
1058 lphc
->droppedIndex
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1060 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
,
1061 lphc
->droppedIndex
== LB_ERR
? 0 : lphc
->droppedIndex
, 0);
1062 SendMessageW(lphc
->hWndLBox
, LB_CARETON
, 0, 0);
1065 /* now set popup position */
1066 GetWindowRect( lphc
->self
, &rect
);
1069 * If it's a dropdown, the listbox is offset
1071 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1072 rect
.left
+= COMBO_EDITBUTTONSPACE();
1074 /* if the dropped height is greater than the total height of the dropped
1075 items list, then force the drop down list height to be the total height
1076 of the items in the dropped list */
1078 /* And Remove any extra space (Best Fit) */
1079 nDroppedHeight
= lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
;
1080 /* if listbox length has been set directly by its handle */
1081 GetWindowRect(lphc
->hWndLBox
, &r
);
1082 if (nDroppedHeight
< r
.bottom
- r
.top
)
1083 nDroppedHeight
= r
.bottom
- r
.top
;
1084 nItems
= (int)SendMessageW(lphc
->hWndLBox
, LB_GETCOUNT
, 0, 0);
1091 nIHeight
= (int)SendMessageW(lphc
->hWndLBox
, LB_GETITEMHEIGHT
, 0, 0);
1093 nHeight
= nIHeight
*nItems
;
1095 if (nHeight
< nDroppedHeight
- COMBO_YBORDERSIZE())
1096 nDroppedHeight
= nHeight
+ COMBO_YBORDERSIZE();
1098 if (nDroppedHeight
< nHeight
)
1101 nDroppedHeight
= (nItems
+1)*nIHeight
;
1102 else if (nDroppedHeight
< 6*nIHeight
)
1103 nDroppedHeight
= 6*nIHeight
;
1107 /*If height of dropped rectangle gets beyond a screen size it should go up, otherwise down.*/
1108 monitor
= MonitorFromRect( &rect
, MONITOR_DEFAULTTOPRIMARY
);
1109 mon_info
.cbSize
= sizeof(mon_info
);
1110 GetMonitorInfoW( monitor
, &mon_info
);
1112 if( (rect
.bottom
+ nDroppedHeight
) >= mon_info
.rcWork
.bottom
)
1113 rect
.bottom
= rect
.top
- nDroppedHeight
;
1115 SetWindowPos( lphc
->hWndLBox
, HWND_TOP
, rect
.left
, rect
.bottom
,
1116 lphc
->droppedRect
.right
- lphc
->droppedRect
.left
,
1118 SWP_NOACTIVATE
| SWP_SHOWWINDOW
);
1121 if( !(lphc
->wState
& CBF_NOREDRAW
) )
1122 RedrawWindow( lphc
->self
, NULL
, 0, RDW_INVALIDATE
|
1123 RDW_ERASE
| RDW_UPDATENOW
| RDW_NOCHILDREN
);
1125 EnableWindow( lphc
->hWndLBox
, TRUE
);
1126 if (GetCapture() != lphc
->self
)
1127 SetCapture(lphc
->hWndLBox
);
1130 /***********************************************************************
1133 * Hide listbox popup.
1135 static void CBRollUp( LPHEADCOMBO lphc
, BOOL ok
, BOOL bButton
)
1137 HWND hWnd
= lphc
->self
;
1139 TRACE("[%p]: sel ok? [%i] dropped? [%i]\n",
1140 lphc
->self
, ok
, (INT
)(lphc
->wState
& CBF_DROPPED
));
1142 CB_NOTIFY( lphc
, (ok
) ? CBN_SELENDOK
: CBN_SELENDCANCEL
);
1144 if( IsWindow( hWnd
) && CB_GETTYPE(lphc
) != CBS_SIMPLE
)
1147 if( lphc
->wState
& CBF_DROPPED
)
1151 lphc
->wState
&= ~CBF_DROPPED
;
1152 ShowWindow( lphc
->hWndLBox
, SW_HIDE
);
1154 if(GetCapture() == lphc
->hWndLBox
)
1159 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1161 rect
= lphc
->buttonRect
;
1172 rect
= lphc
->textRect
;
1177 if( bButton
&& !(lphc
->wState
& CBF_NOREDRAW
) )
1178 RedrawWindow( hWnd
, &rect
, 0, RDW_INVALIDATE
|
1179 RDW_ERASE
| RDW_UPDATENOW
| RDW_NOCHILDREN
);
1180 CB_NOTIFY( lphc
, CBN_CLOSEUP
);
1185 /***********************************************************************
1188 * Used by the ComboLBox to show/hide itself in response to VK_F4, etc...
1190 BOOL
COMBO_FlipListbox( LPHEADCOMBO lphc
, BOOL ok
, BOOL bRedrawButton
)
1192 if( lphc
->wState
& CBF_DROPPED
)
1194 CBRollUp( lphc
, ok
, bRedrawButton
);
1202 /***********************************************************************
1205 static void CBRepaintButton( LPHEADCOMBO lphc
)
1207 InvalidateRect(lphc
->self
, &lphc
->buttonRect
, TRUE
);
1208 UpdateWindow(lphc
->self
);
1211 /***********************************************************************
1214 static void COMBO_SetFocus( LPHEADCOMBO lphc
)
1216 if( !(lphc
->wState
& CBF_FOCUSED
) )
1218 if( CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
)
1219 SendMessageW(lphc
->hWndLBox
, LB_CARETON
, 0, 0);
1221 /* This is wrong. Message sequences seem to indicate that this
1222 is set *after* the notify. */
1223 /* lphc->wState |= CBF_FOCUSED; */
1225 if( !(lphc
->wState
& CBF_EDIT
) )
1226 InvalidateRect(lphc
->self
, &lphc
->textRect
, TRUE
);
1228 CB_NOTIFY( lphc
, CBN_SETFOCUS
);
1229 lphc
->wState
|= CBF_FOCUSED
;
1233 /***********************************************************************
1236 static void COMBO_KillFocus( LPHEADCOMBO lphc
)
1238 HWND hWnd
= lphc
->self
;
1240 if( lphc
->wState
& CBF_FOCUSED
)
1242 CBRollUp( lphc
, FALSE
, TRUE
);
1243 if( IsWindow( hWnd
) )
1245 if( CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
)
1246 SendMessageW(lphc
->hWndLBox
, LB_CARETOFF
, 0, 0);
1248 lphc
->wState
&= ~CBF_FOCUSED
;
1251 if( !(lphc
->wState
& CBF_EDIT
) )
1252 InvalidateRect(lphc
->self
, &lphc
->textRect
, TRUE
);
1254 CB_NOTIFY( lphc
, CBN_KILLFOCUS
);
1259 /***********************************************************************
1262 static LRESULT
COMBO_Command( LPHEADCOMBO lphc
, WPARAM wParam
, HWND hWnd
)
1264 if ( lphc
->wState
& CBF_EDIT
&& lphc
->hWndEdit
== hWnd
)
1266 /* ">> 8" makes gcc generate jump-table instead of cmp ladder */
1268 switch( HIWORD(wParam
) >> 8 )
1270 case (EN_SETFOCUS
>> 8):
1272 TRACE("[%p]: edit [%p] got focus\n", lphc
->self
, lphc
->hWndEdit
);
1274 COMBO_SetFocus( lphc
);
1277 case (EN_KILLFOCUS
>> 8):
1279 TRACE("[%p]: edit [%p] lost focus\n", lphc
->self
, lphc
->hWndEdit
);
1281 /* NOTE: it seems that Windows' edit control sends an
1282 * undocumented message WM_USER + 0x1B instead of this
1283 * notification (only when it happens to be a part of
1284 * the combo). ?? - AK.
1287 COMBO_KillFocus( lphc
);
1291 case (EN_CHANGE
>> 8):
1293 * In some circumstances (when the selection of the combobox
1294 * is changed for example) we don't want the EN_CHANGE notification
1295 * to be forwarded to the parent of the combobox. This code
1296 * checks a flag that is set in these occasions and ignores the
1299 if (lphc
->wState
& CBF_NOLBSELECT
)
1301 lphc
->wState
&= ~CBF_NOLBSELECT
;
1305 CBUpdateLBox( lphc
, lphc
->wState
& CBF_DROPPED
);
1308 if (!(lphc
->wState
& CBF_NOEDITNOTIFY
))
1309 CB_NOTIFY( lphc
, CBN_EDITCHANGE
);
1312 case (EN_UPDATE
>> 8):
1313 if (!(lphc
->wState
& CBF_NOEDITNOTIFY
))
1314 CB_NOTIFY( lphc
, CBN_EDITUPDATE
);
1317 case (EN_ERRSPACE
>> 8):
1318 CB_NOTIFY( lphc
, CBN_ERRSPACE
);
1321 else if( lphc
->hWndLBox
== hWnd
)
1323 switch( (short)HIWORD(wParam
) )
1326 CB_NOTIFY( lphc
, CBN_ERRSPACE
);
1330 CB_NOTIFY( lphc
, CBN_DBLCLK
);
1336 TRACE("[%p]: lbox selection change [%x]\n", lphc
->self
, lphc
->wState
);
1338 /* do not roll up if selection is being tracked
1339 * by arrow keys in the dropdown listbox */
1340 if (!(lphc
->wState
& CBF_NOROLLUP
))
1342 CBRollUp( lphc
, (HIWORD(wParam
) == LBN_SELCHANGE
), TRUE
);
1344 else lphc
->wState
&= ~CBF_NOROLLUP
;
1346 CB_NOTIFY( lphc
, CBN_SELCHANGE
);
1348 if( HIWORD(wParam
) == LBN_SELCHANGE
)
1350 if( lphc
->wState
& CBF_EDIT
)
1352 INT index
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1353 lphc
->wState
|= CBF_NOLBSELECT
;
1354 CBUpdateEdit( lphc
, index
);
1355 /* select text in edit, as Windows does */
1356 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, -1);
1360 InvalidateRect(lphc
->self
, &lphc
->textRect
, TRUE
);
1361 UpdateWindow(lphc
->self
);
1368 /* nothing to do here since ComboLBox always resets the focus to its
1369 * combo/edit counterpart */
1376 /***********************************************************************
1379 * Fixup an ownerdrawn item operation and pass it up to the combobox owner.
1381 static LRESULT
COMBO_ItemOp( LPHEADCOMBO lphc
, UINT msg
, LPARAM lParam
)
1383 HWND hWnd
= lphc
->self
;
1384 UINT id
= (UINT
)GetWindowLongPtrW( hWnd
, GWLP_ID
);
1386 TRACE("[%p]: ownerdraw op %04x\n", lphc
->self
, msg
);
1392 DELETEITEMSTRUCT
*lpIS
= (DELETEITEMSTRUCT
*)lParam
;
1393 lpIS
->CtlType
= ODT_COMBOBOX
;
1395 lpIS
->hwndItem
= hWnd
;
1400 DRAWITEMSTRUCT
*lpIS
= (DRAWITEMSTRUCT
*)lParam
;
1401 lpIS
->CtlType
= ODT_COMBOBOX
;
1403 lpIS
->hwndItem
= hWnd
;
1406 case WM_COMPAREITEM
:
1408 COMPAREITEMSTRUCT
*lpIS
= (COMPAREITEMSTRUCT
*)lParam
;
1409 lpIS
->CtlType
= ODT_COMBOBOX
;
1411 lpIS
->hwndItem
= hWnd
;
1414 case WM_MEASUREITEM
:
1416 MEASUREITEMSTRUCT
*lpIS
= (MEASUREITEMSTRUCT
*)lParam
;
1417 lpIS
->CtlType
= ODT_COMBOBOX
;
1422 return SendMessageW(lphc
->owner
, msg
, id
, lParam
);
1426 /***********************************************************************
1429 static LRESULT
COMBO_GetTextW( LPHEADCOMBO lphc
, INT count
, LPWSTR buf
)
1433 if( lphc
->wState
& CBF_EDIT
)
1434 return SendMessageW( lphc
->hWndEdit
, WM_GETTEXT
, count
, (LPARAM
)buf
);
1436 /* get it from the listbox */
1438 if (!count
|| !buf
) return 0;
1439 if( lphc
->hWndLBox
)
1441 INT idx
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1442 if (idx
== LB_ERR
) goto error
;
1443 length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, idx
, 0 );
1444 if (length
== LB_ERR
) goto error
;
1446 /* 'length' is without the terminating character */
1447 if (length
>= count
)
1449 LPWSTR lpBuffer
= HeapAlloc(GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
));
1450 if (!lpBuffer
) goto error
;
1451 length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, idx
, (LPARAM
)lpBuffer
);
1453 /* truncate if buffer is too short */
1454 if (length
!= LB_ERR
)
1456 lstrcpynW( buf
, lpBuffer
, count
);
1459 HeapFree( GetProcessHeap(), 0, lpBuffer
);
1461 else length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, idx
, (LPARAM
)buf
);
1463 if (length
== LB_ERR
) return 0;
1467 error
: /* error - truncate string, return zero */
1473 /***********************************************************************
1476 * NOTE! LB_GETTEXT does not count terminating \0, WM_GETTEXT does.
1477 * also LB_GETTEXT might return values < 0, WM_GETTEXT doesn't.
1479 static LRESULT
COMBO_GetTextA( LPHEADCOMBO lphc
, INT count
, LPSTR buf
)
1483 if( lphc
->wState
& CBF_EDIT
)
1484 return SendMessageA( lphc
->hWndEdit
, WM_GETTEXT
, count
, (LPARAM
)buf
);
1486 /* get it from the listbox */
1488 if (!count
|| !buf
) return 0;
1489 if( lphc
->hWndLBox
)
1491 INT idx
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1492 if (idx
== LB_ERR
) goto error
;
1493 length
= SendMessageA(lphc
->hWndLBox
, LB_GETTEXTLEN
, idx
, 0 );
1494 if (length
== LB_ERR
) goto error
;
1496 /* 'length' is without the terminating character */
1497 if (length
>= count
)
1499 LPSTR lpBuffer
= HeapAlloc(GetProcessHeap(), 0, (length
+ 1) );
1500 if (!lpBuffer
) goto error
;
1501 length
= SendMessageA(lphc
->hWndLBox
, LB_GETTEXT
, idx
, (LPARAM
)lpBuffer
);
1503 /* truncate if buffer is too short */
1504 if (length
!= LB_ERR
)
1506 lstrcpynA( buf
, lpBuffer
, count
);
1509 HeapFree( GetProcessHeap(), 0, lpBuffer
);
1511 else length
= SendMessageA(lphc
->hWndLBox
, LB_GETTEXT
, idx
, (LPARAM
)buf
);
1513 if (length
== LB_ERR
) return 0;
1517 error
: /* error - truncate string, return zero */
1523 /***********************************************************************
1526 * This function sets window positions according to the updated
1527 * component placement struct.
1529 static void CBResetPos(
1531 const RECT
*rectEdit
,
1535 BOOL bDrop
= (CB_GETTYPE(lphc
) != CBS_SIMPLE
);
1537 /* NOTE: logs sometimes have WM_LBUTTONUP before a cascade of
1538 * sizing messages */
1540 if( lphc
->wState
& CBF_EDIT
)
1541 SetWindowPos( lphc
->hWndEdit
, 0,
1542 rectEdit
->left
, rectEdit
->top
,
1543 rectEdit
->right
- rectEdit
->left
,
1544 rectEdit
->bottom
- rectEdit
->top
,
1545 SWP_NOZORDER
| SWP_NOACTIVATE
| ((bDrop
) ? SWP_NOREDRAW
: 0) );
1547 SetWindowPos( lphc
->hWndLBox
, 0,
1548 rectLB
->left
, rectLB
->top
,
1549 rectLB
->right
- rectLB
->left
,
1550 rectLB
->bottom
- rectLB
->top
,
1551 SWP_NOACTIVATE
| SWP_NOZORDER
| ((bDrop
) ? SWP_NOREDRAW
: 0) );
1555 if( lphc
->wState
& CBF_DROPPED
)
1557 lphc
->wState
&= ~CBF_DROPPED
;
1558 ShowWindow( lphc
->hWndLBox
, SW_HIDE
);
1561 if( bRedraw
&& !(lphc
->wState
& CBF_NOREDRAW
) )
1562 RedrawWindow( lphc
->self
, NULL
, 0,
1563 RDW_INVALIDATE
| RDW_ERASE
| RDW_UPDATENOW
);
1568 /***********************************************************************
1571 static void COMBO_Size( LPHEADCOMBO lphc
, BOOL bRedraw
)
1573 CBCalcPlacement(lphc
->self
,
1577 &lphc
->droppedRect
);
1579 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, bRedraw
);
1583 /***********************************************************************
1586 static void COMBO_Font( LPHEADCOMBO lphc
, HFONT hFont
, BOOL bRedraw
)
1591 lphc
->hFont
= hFont
;
1594 * Propagate to owned windows.
1596 if( lphc
->wState
& CBF_EDIT
)
1597 SendMessageW(lphc
->hWndEdit
, WM_SETFONT
, (WPARAM
)hFont
, bRedraw
);
1598 SendMessageW(lphc
->hWndLBox
, WM_SETFONT
, (WPARAM
)hFont
, bRedraw
);
1601 * Redo the layout of the control.
1603 if ( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
1605 CBCalcPlacement(lphc
->self
,
1609 &lphc
->droppedRect
);
1611 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, TRUE
);
1615 CBForceDummyResize(lphc
);
1620 /***********************************************************************
1621 * COMBO_SetItemHeight
1623 static LRESULT
COMBO_SetItemHeight( LPHEADCOMBO lphc
, INT index
, INT height
)
1625 LRESULT lRet
= CB_ERR
;
1627 if( index
== -1 ) /* set text field height */
1629 if( height
< 32768 )
1631 lphc
->editHeight
= height
+ 2; /* Is the 2 for 2*EDIT_CONTROL_PADDING? */
1634 * Redo the layout of the control.
1636 if ( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
1638 CBCalcPlacement(lphc
->self
,
1642 &lphc
->droppedRect
);
1644 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, TRUE
);
1648 CBForceDummyResize(lphc
);
1654 else if ( CB_OWNERDRAWN(lphc
) ) /* set listbox item height */
1655 lRet
= SendMessageW(lphc
->hWndLBox
, LB_SETITEMHEIGHT
, index
, height
);
1659 /***********************************************************************
1660 * COMBO_SelectString
1662 static LRESULT
COMBO_SelectString( LPHEADCOMBO lphc
, INT start
, LPARAM pText
, BOOL unicode
)
1664 INT index
= unicode
? SendMessageW(lphc
->hWndLBox
, LB_SELECTSTRING
, start
, pText
) :
1665 SendMessageA(lphc
->hWndLBox
, LB_SELECTSTRING
, start
, pText
);
1668 if( lphc
->wState
& CBF_EDIT
)
1669 CBUpdateEdit( lphc
, index
);
1672 InvalidateRect(lphc
->self
, &lphc
->textRect
, TRUE
);
1675 return (LRESULT
)index
;
1678 /***********************************************************************
1681 static void COMBO_LButtonDown( LPHEADCOMBO lphc
, LPARAM lParam
)
1685 HWND hWnd
= lphc
->self
;
1687 pt
.x
= (short)LOWORD(lParam
);
1688 pt
.y
= (short)HIWORD(lParam
);
1689 bButton
= PtInRect(&lphc
->buttonRect
, pt
);
1691 if( (CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
) ||
1692 (bButton
&& (CB_GETTYPE(lphc
) == CBS_DROPDOWN
)) )
1694 lphc
->wState
|= CBF_BUTTONDOWN
;
1695 if( lphc
->wState
& CBF_DROPPED
)
1697 /* got a click to cancel selection */
1699 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1700 CBRollUp( lphc
, TRUE
, FALSE
);
1701 if( !IsWindow( hWnd
) ) return;
1703 if( lphc
->wState
& CBF_CAPTURE
)
1705 lphc
->wState
&= ~CBF_CAPTURE
;
1711 /* drop down the listbox and start tracking */
1713 lphc
->wState
|= CBF_CAPTURE
;
1717 if( bButton
) CBRepaintButton( lphc
);
1721 /***********************************************************************
1724 * Release capture and stop tracking if needed.
1726 static void COMBO_LButtonUp( LPHEADCOMBO lphc
)
1728 if( lphc
->wState
& CBF_CAPTURE
)
1730 lphc
->wState
&= ~CBF_CAPTURE
;
1731 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1733 INT index
= CBUpdateLBox( lphc
, TRUE
);
1734 /* Update edit only if item is in the list */
1737 lphc
->wState
|= CBF_NOLBSELECT
;
1738 CBUpdateEdit( lphc
, index
);
1739 lphc
->wState
&= ~CBF_NOLBSELECT
;
1743 SetCapture(lphc
->hWndLBox
);
1746 if( lphc
->wState
& CBF_BUTTONDOWN
)
1748 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1749 CBRepaintButton( lphc
);
1753 /***********************************************************************
1756 * Two things to do - track combo button and release capture when
1757 * pointer goes into the listbox.
1759 static void COMBO_MouseMove( LPHEADCOMBO lphc
, WPARAM wParam
, LPARAM lParam
)
1764 pt
.x
= (short)LOWORD(lParam
);
1765 pt
.y
= (short)HIWORD(lParam
);
1767 if( lphc
->wState
& CBF_BUTTONDOWN
)
1771 bButton
= PtInRect(&lphc
->buttonRect
, pt
);
1775 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1776 CBRepaintButton( lphc
);
1780 GetClientRect( lphc
->hWndLBox
, &lbRect
);
1781 MapWindowPoints( lphc
->self
, lphc
->hWndLBox
, &pt
, 1 );
1782 if( PtInRect(&lbRect
, pt
) )
1784 lphc
->wState
&= ~CBF_CAPTURE
;
1786 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
) CBUpdateLBox( lphc
, TRUE
);
1788 /* hand over pointer tracking */
1789 SendMessageW(lphc
->hWndLBox
, WM_LBUTTONDOWN
, wParam
, lParam
);
1793 static LRESULT
COMBO_GetComboBoxInfo(const HEADCOMBO
*lphc
, COMBOBOXINFO
*pcbi
)
1795 if (!pcbi
|| (pcbi
->cbSize
< sizeof(COMBOBOXINFO
)))
1798 pcbi
->rcItem
= lphc
->textRect
;
1799 pcbi
->rcButton
= lphc
->buttonRect
;
1800 pcbi
->stateButton
= 0;
1801 if (lphc
->wState
& CBF_BUTTONDOWN
)
1802 pcbi
->stateButton
|= STATE_SYSTEM_PRESSED
;
1803 if (IsRectEmpty(&lphc
->buttonRect
))
1804 pcbi
->stateButton
|= STATE_SYSTEM_INVISIBLE
;
1805 pcbi
->hwndCombo
= lphc
->self
;
1806 pcbi
->hwndItem
= lphc
->hWndEdit
;
1807 pcbi
->hwndList
= lphc
->hWndLBox
;
1811 static char *strdupA(LPCSTR str
)
1816 if(!str
) return NULL
;
1819 ret
= HeapAlloc(GetProcessHeap(), 0, len
+ 1);
1820 memcpy(ret
, str
, len
+ 1);
1824 /***********************************************************************
1825 * ComboWndProc_common
1827 LRESULT
ComboWndProc_common( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
1829 LPHEADCOMBO lphc
= (LPHEADCOMBO
)GetWindowLongPtrW( hwnd
, 0 );
1831 TRACE("[%p]: msg %s wp %08lx lp %08lx\n",
1832 hwnd
, SPY_GetMsgName(message
, hwnd
), wParam
, lParam
);
1834 if (!IsWindow(hwnd
)) return 0;
1836 if( lphc
|| message
== WM_NCCREATE
)
1840 /* System messages */
1844 LONG style
= unicode
? ((LPCREATESTRUCTW
)lParam
)->style
:
1845 ((LPCREATESTRUCTA
)lParam
)->style
;
1846 return COMBO_NCCreate(hwnd
, style
);
1849 COMBO_NCDestroy(lphc
);
1850 break;/* -> DefWindowProc */
1858 hwndParent
= ((LPCREATESTRUCTW
)lParam
)->hwndParent
;
1859 style
= ((LPCREATESTRUCTW
)lParam
)->style
;
1863 hwndParent
= ((LPCREATESTRUCTA
)lParam
)->hwndParent
;
1864 style
= ((LPCREATESTRUCTA
)lParam
)->style
;
1866 return COMBO_Create(hwnd
, lphc
, hwndParent
, style
, unicode
);
1869 case WM_PRINTCLIENT
:
1872 /* wParam may contain a valid HDC! */
1873 return COMBO_Paint(lphc
, (HDC
)wParam
);
1876 /* do all painting in WM_PAINT like Windows does */
1881 LRESULT result
= DLGC_WANTARROWS
| DLGC_WANTCHARS
;
1882 if (lParam
&& (((LPMSG
)lParam
)->message
== WM_KEYDOWN
))
1884 int vk
= (int)((LPMSG
)lParam
)->wParam
;
1886 if ((vk
== VK_RETURN
|| vk
== VK_ESCAPE
) && (lphc
->wState
& CBF_DROPPED
))
1887 result
|= DLGC_WANTMESSAGE
;
1891 case WM_WINDOWPOSCHANGING
:
1892 return COMBO_WindowPosChanging(hwnd
, lphc
, (LPWINDOWPOS
)lParam
);
1893 case WM_WINDOWPOSCHANGED
:
1894 /* SetWindowPos can be called on a Combobox to resize its Listbox.
1895 * In that case, the Combobox itself will not be resized, so we won't
1896 * get a WM_SIZE. Since we still want to update the Listbox, we have to
1899 /* we should not force repainting on WM_WINDOWPOSCHANGED, it breaks
1900 * Z-order based painting.
1904 if( lphc
->hWndLBox
&&
1905 !(lphc
->wState
& CBF_NORESIZE
) ) COMBO_Size( lphc
, message
== WM_SIZE
);
1908 COMBO_Font( lphc
, (HFONT
)wParam
, (BOOL
)lParam
);
1911 return (LRESULT
)lphc
->hFont
;
1913 if( lphc
->wState
& CBF_EDIT
) {
1914 SetFocus( lphc
->hWndEdit
);
1915 /* The first time focus is received, select all the text */
1916 if( !(lphc
->wState
& CBF_BEENFOCUSED
) ) {
1917 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, -1);
1918 lphc
->wState
|= CBF_BEENFOCUSED
;
1922 COMBO_SetFocus( lphc
);
1926 HWND hwndFocus
= WIN_GetFullHandle( (HWND
)wParam
);
1928 (hwndFocus
!= lphc
->hWndEdit
&& hwndFocus
!= lphc
->hWndLBox
))
1929 COMBO_KillFocus( lphc
);
1933 return COMBO_Command( lphc
, wParam
, WIN_GetFullHandle( (HWND
)lParam
) );
1935 return unicode
? COMBO_GetTextW( lphc
, wParam
, (LPWSTR
)lParam
)
1936 : COMBO_GetTextA( lphc
, wParam
, (LPSTR
)lParam
);
1938 case WM_GETTEXTLENGTH
:
1940 if ((message
== WM_GETTEXTLENGTH
) && !ISWIN31
&& !(lphc
->wState
& CBF_EDIT
))
1942 int j
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1943 if (j
== -1) return 0;
1944 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, j
, 0) :
1945 SendMessageA(lphc
->hWndLBox
, LB_GETTEXTLEN
, j
, 0);
1947 else if( lphc
->wState
& CBF_EDIT
)
1950 lphc
->wState
|= CBF_NOEDITNOTIFY
;
1951 ret
= unicode
? SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
) :
1952 SendMessageA(lphc
->hWndEdit
, message
, wParam
, lParam
);
1953 lphc
->wState
&= ~CBF_NOEDITNOTIFY
;
1960 if( lphc
->wState
& CBF_EDIT
)
1962 return unicode
? SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
) :
1963 SendMessageA(lphc
->hWndEdit
, message
, wParam
, lParam
);
1969 case WM_COMPAREITEM
:
1970 case WM_MEASUREITEM
:
1971 return COMBO_ItemOp(lphc
, message
, lParam
);
1973 if( lphc
->wState
& CBF_EDIT
)
1974 EnableWindow( lphc
->hWndEdit
, (BOOL
)wParam
);
1975 EnableWindow( lphc
->hWndLBox
, (BOOL
)wParam
);
1977 /* Force the control to repaint when the enabled state changes. */
1978 InvalidateRect(lphc
->self
, NULL
, TRUE
);
1982 lphc
->wState
&= ~CBF_NOREDRAW
;
1984 lphc
->wState
|= CBF_NOREDRAW
;
1986 if( lphc
->wState
& CBF_EDIT
)
1987 SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
);
1988 SendMessageW(lphc
->hWndLBox
, message
, wParam
, lParam
);
1991 if( KEYDATA_ALT
& HIWORD(lParam
) )
1992 if( wParam
== VK_UP
|| wParam
== VK_DOWN
)
1993 COMBO_FlipListbox( lphc
, FALSE
, FALSE
);
1997 if ((wParam
== VK_RETURN
|| wParam
== VK_ESCAPE
) &&
1998 (lphc
->wState
& CBF_DROPPED
))
2000 CBRollUp( lphc
, wParam
== VK_RETURN
, FALSE
);
2003 else if ((wParam
== VK_F4
) && !(lphc
->wState
& CBF_EUI
))
2005 COMBO_FlipListbox( lphc
, FALSE
, FALSE
);
2014 if( lphc
->wState
& CBF_EDIT
)
2015 hwndTarget
= lphc
->hWndEdit
;
2017 hwndTarget
= lphc
->hWndLBox
;
2019 return unicode
? SendMessageW(hwndTarget
, message
, wParam
, lParam
) :
2020 SendMessageA(hwndTarget
, message
, wParam
, lParam
);
2022 case WM_LBUTTONDOWN
:
2023 if( !(lphc
->wState
& CBF_FOCUSED
) ) SetFocus( lphc
->self
);
2024 if( lphc
->wState
& CBF_FOCUSED
) COMBO_LButtonDown( lphc
, lParam
);
2027 COMBO_LButtonUp( lphc
);
2030 if( lphc
->wState
& CBF_CAPTURE
)
2031 COMBO_MouseMove( lphc
, wParam
, lParam
);
2035 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
2036 return unicode
? DefWindowProcW(hwnd
, message
, wParam
, lParam
) :
2037 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
2039 if (GET_WHEEL_DELTA_WPARAM(wParam
) > 0) return SendMessageW(hwnd
, WM_KEYDOWN
, VK_UP
, 0);
2040 if (GET_WHEEL_DELTA_WPARAM(wParam
) < 0) return SendMessageW(hwnd
, WM_KEYDOWN
, VK_DOWN
, 0);
2043 /* Combo messages */
2048 if( lphc
->dwStyle
& CBS_LOWERCASE
)
2049 CharLowerW((LPWSTR
)lParam
);
2050 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
2051 CharUpperW((LPWSTR
)lParam
);
2052 return SendMessageW(lphc
->hWndLBox
, LB_ADDSTRING
, 0, lParam
);
2054 else /* unlike the unicode version, the ansi version does not overwrite
2055 the string if converting case */
2057 char *string
= NULL
;
2059 if( lphc
->dwStyle
& CBS_LOWERCASE
)
2061 string
= strdupA((LPSTR
)lParam
);
2065 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
2067 string
= strdupA((LPSTR
)lParam
);
2071 ret
= SendMessageA(lphc
->hWndLBox
, LB_ADDSTRING
, 0, string
? (LPARAM
)string
: lParam
);
2072 HeapFree(GetProcessHeap(), 0, string
);
2075 case CB_INSERTSTRING
:
2078 if( lphc
->dwStyle
& CBS_LOWERCASE
)
2079 CharLowerW((LPWSTR
)lParam
);
2080 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
2081 CharUpperW((LPWSTR
)lParam
);
2082 return SendMessageW(lphc
->hWndLBox
, LB_INSERTSTRING
, wParam
, lParam
);
2086 if( lphc
->dwStyle
& CBS_LOWERCASE
)
2087 CharLowerA((LPSTR
)lParam
);
2088 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
2089 CharUpperA((LPSTR
)lParam
);
2091 return SendMessageA(lphc
->hWndLBox
, LB_INSERTSTRING
, wParam
, lParam
);
2093 case CB_DELETESTRING
:
2094 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_DELETESTRING
, wParam
, 0) :
2095 SendMessageA(lphc
->hWndLBox
, LB_DELETESTRING
, wParam
, 0);
2096 case CB_SELECTSTRING
:
2097 return COMBO_SelectString(lphc
, (INT
)wParam
, lParam
, unicode
);
2099 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_FINDSTRING
, wParam
, lParam
) :
2100 SendMessageA(lphc
->hWndLBox
, LB_FINDSTRING
, wParam
, lParam
);
2101 case CB_FINDSTRINGEXACT
:
2102 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_FINDSTRINGEXACT
, wParam
, lParam
) :
2103 SendMessageA(lphc
->hWndLBox
, LB_FINDSTRINGEXACT
, wParam
, lParam
);
2104 case CB_SETITEMHEIGHT
:
2105 return COMBO_SetItemHeight( lphc
, (INT
)wParam
, (INT
)lParam
);
2106 case CB_GETITEMHEIGHT
:
2107 if( (INT
)wParam
>= 0 ) /* listbox item */
2108 return SendMessageW(lphc
->hWndLBox
, LB_GETITEMHEIGHT
, wParam
, 0);
2109 return CBGetTextAreaHeight(hwnd
, lphc
);
2110 case CB_RESETCONTENT
:
2111 SendMessageW(lphc
->hWndLBox
, LB_RESETCONTENT
, 0, 0);
2112 if( (lphc
->wState
& CBF_EDIT
) && CB_HASSTRINGS(lphc
) )
2114 static const WCHAR empty_stringW
[] = { 0 };
2115 SendMessageW(lphc
->hWndEdit
, WM_SETTEXT
, 0, (LPARAM
)empty_stringW
);
2118 InvalidateRect(lphc
->self
, NULL
, TRUE
);
2120 case CB_INITSTORAGE
:
2121 return SendMessageW(lphc
->hWndLBox
, LB_INITSTORAGE
, wParam
, lParam
);
2122 case CB_GETHORIZONTALEXTENT
:
2123 return SendMessageW(lphc
->hWndLBox
, LB_GETHORIZONTALEXTENT
, 0, 0);
2124 case CB_SETHORIZONTALEXTENT
:
2125 return SendMessageW(lphc
->hWndLBox
, LB_SETHORIZONTALEXTENT
, wParam
, 0);
2126 case CB_GETTOPINDEX
:
2127 return SendMessageW(lphc
->hWndLBox
, LB_GETTOPINDEX
, 0, 0);
2129 return SendMessageW(lphc
->hWndLBox
, LB_GETLOCALE
, 0, 0);
2131 return SendMessageW(lphc
->hWndLBox
, LB_SETLOCALE
, wParam
, 0);
2132 case CB_GETDROPPEDWIDTH
:
2133 if( lphc
->droppedWidth
)
2134 return lphc
->droppedWidth
;
2135 return lphc
->droppedRect
.right
- lphc
->droppedRect
.left
;
2136 case CB_SETDROPPEDWIDTH
:
2137 if( (CB_GETTYPE(lphc
) != CBS_SIMPLE
) &&
2138 (INT
)wParam
< 32768 ) lphc
->droppedWidth
= (INT
)wParam
;
2140 case CB_GETDROPPEDCONTROLRECT
:
2141 if( lParam
) CBGetDroppedControlRect(lphc
, (LPRECT
)lParam
);
2143 case CB_GETDROPPEDSTATE
:
2144 return (lphc
->wState
& CBF_DROPPED
) ? TRUE
: FALSE
;
2146 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_DIR
, wParam
, lParam
) :
2147 SendMessageA(lphc
->hWndLBox
, LB_DIR
, wParam
, lParam
);
2149 case CB_SHOWDROPDOWN
:
2150 if( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
2154 if( !(lphc
->wState
& CBF_DROPPED
) )
2158 if( lphc
->wState
& CBF_DROPPED
)
2159 CBRollUp( lphc
, FALSE
, TRUE
);
2163 return SendMessageW(lphc
->hWndLBox
, LB_GETCOUNT
, 0, 0);
2165 return SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
2167 lParam
= SendMessageW(lphc
->hWndLBox
, LB_SETCURSEL
, wParam
, 0);
2169 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
, wParam
, 0);
2171 /* no LBN_SELCHANGE in this case, update manually */
2172 if( lphc
->wState
& CBF_EDIT
)
2173 CBUpdateEdit( lphc
, (INT
)wParam
);
2175 InvalidateRect(lphc
->self
, &lphc
->textRect
, TRUE
);
2176 lphc
->wState
&= ~CBF_SELCHANGE
;
2179 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, wParam
, lParam
) :
2180 SendMessageA(lphc
->hWndLBox
, LB_GETTEXT
, wParam
, lParam
);
2181 case CB_GETLBTEXTLEN
:
2182 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, wParam
, 0) :
2183 SendMessageA(lphc
->hWndLBox
, LB_GETTEXTLEN
, wParam
, 0);
2184 case CB_GETITEMDATA
:
2185 return SendMessageW(lphc
->hWndLBox
, LB_GETITEMDATA
, wParam
, 0);
2186 case CB_SETITEMDATA
:
2187 return SendMessageW(lphc
->hWndLBox
, LB_SETITEMDATA
, wParam
, lParam
);
2189 /* Edit checks passed parameters itself */
2190 if( lphc
->wState
& CBF_EDIT
)
2191 return SendMessageW(lphc
->hWndEdit
, EM_GETSEL
, wParam
, lParam
);
2194 if( lphc
->wState
& CBF_EDIT
)
2195 return SendMessageW(lphc
->hWndEdit
, EM_SETSEL
,
2196 (INT
)(SHORT
)LOWORD(lParam
), (INT
)(SHORT
)HIWORD(lParam
) );
2198 case CB_SETEXTENDEDUI
:
2199 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
2202 lphc
->wState
|= CBF_EUI
;
2203 else lphc
->wState
&= ~CBF_EUI
;
2205 case CB_GETEXTENDEDUI
:
2206 return (lphc
->wState
& CBF_EUI
) ? TRUE
: FALSE
;
2207 case CB_GETCOMBOBOXINFO
:
2208 return COMBO_GetComboBoxInfo(lphc
, (COMBOBOXINFO
*)lParam
);
2210 if( lphc
->wState
& CBF_EDIT
)
2211 return SendMessageW(lphc
->hWndEdit
, EM_LIMITTEXT
, wParam
, lParam
);
2213 if (message
>= WM_USER
)
2214 WARN("unknown msg WM_USER+%04x wp=%04lx lp=%08lx\n",
2215 message
- WM_USER
, wParam
, lParam
);
2218 return unicode
? DefWindowProcW(hwnd
, message
, wParam
, lParam
) :
2219 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
2222 /*************************************************************************
2223 * GetComboBoxInfo (USER32.@)
2225 BOOL WINAPI
GetComboBoxInfo(HWND hwndCombo
, /* [in] handle to combo box */
2226 PCOMBOBOXINFO pcbi
/* [in/out] combo box information */)
2228 TRACE("(%p, %p)\n", hwndCombo
, pcbi
);
2229 return SendMessageW(hwndCombo
, CB_GETCOMBOBOXINFO
, 0, (LPARAM
)pcbi
);