4 * Copyright 1997 Alex Korobka
6 * FIXME: roll up in Netscape 3.01.
15 #include "wine/winuser16.h"
21 #include "debugtools.h"
23 DEFAULT_DEBUG_CHANNEL(combo
);
25 /* bits in the dwKeyData */
26 #define KEYDATA_ALT 0x2000
27 #define KEYDATA_PREVSTATE 0x4000
30 * Additional combo box definitions
33 #define CB_GETPTR( wnd ) (*(LPHEADCOMBO*)((wnd)->wExtra))
34 #define CB_NOTIFY( lphc, code ) \
35 (SendMessageW((lphc)->owner, WM_COMMAND, \
36 MAKEWPARAM((lphc)->self->wIDmenu, (code)), (lphc)->self->hwndSelf))
37 #define CB_GETEDITTEXTLENGTH( lphc ) \
38 (SendMessageW((lphc)->hWndEdit, WM_GETTEXTLENGTH, 0, 0 ))
40 #define ISWIN31 (LOWORD(GetVersion()) == 0x0a03)
45 static HBITMAP hComboBmp
= 0;
46 static UINT CBitHeight
, CBitWidth
;
49 * Look and feel dependant "constants"
52 #define COMBO_YBORDERGAP 5
53 #define COMBO_XBORDERSIZE() ( (TWEAK_WineLook == WIN31_LOOK) ? 0 : 2 )
54 #define COMBO_YBORDERSIZE() ( (TWEAK_WineLook == WIN31_LOOK) ? 0 : 2 )
55 #define COMBO_EDITBUTTONSPACE() ( (TWEAK_WineLook == WIN31_LOOK) ? 8 : 0 )
56 #define EDIT_CONTROL_PADDING() ( (TWEAK_WineLook == WIN31_LOOK) ? 0 : 1 )
58 static LRESULT WINAPI
ComboWndProcA( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
);
59 static LRESULT WINAPI
ComboWndProcW( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
);
61 /*********************************************************************
62 * combo class descriptor
64 const struct builtin_class_descr COMBO_builtin_class
=
66 "ComboBox", /* name */
67 CS_GLOBALCLASS
| CS_PARENTDC
| CS_DBLCLKS
, /* style */
68 ComboWndProcA
, /* procA */
69 ComboWndProcW
, /* procW */
70 sizeof(HEADCOMBO
*), /* extra */
71 IDC_ARROWA
, /* cursor */
76 /***********************************************************************
79 * Load combo button bitmap.
81 static BOOL
COMBO_Init()
85 if( hComboBmp
) return TRUE
;
86 if( (hDC
= CreateCompatibleDC(0)) )
89 if( (hComboBmp
= LoadBitmapW(0, MAKEINTRESOURCEW(OBM_COMBO
))) )
95 GetObjectW( hComboBmp
, sizeof(bm
), &bm
);
96 CBitHeight
= bm
.bmHeight
;
97 CBitWidth
= bm
.bmWidth
;
99 TRACE("combo bitmap [%i,%i]\n", CBitWidth
, CBitHeight
);
101 hPrevB
= SelectObject( hDC
, hComboBmp
);
102 SetRect( &r
, 0, 0, CBitWidth
, CBitHeight
);
103 InvertRect( hDC
, &r
);
104 SelectObject( hDC
, hPrevB
);
113 /***********************************************************************
116 static LRESULT
COMBO_NCCreate(WND
* wnd
, LONG style
)
120 if ( wnd
&& COMBO_Init() &&
121 (lphc
= HeapAlloc(GetProcessHeap(), 0, sizeof(HEADCOMBO
))) )
123 memset( lphc
, 0, sizeof(HEADCOMBO
) );
124 *(LPHEADCOMBO
*)wnd
->wExtra
= lphc
;
126 /* some braindead apps do try to use scrollbar/border flags */
128 lphc
->dwStyle
= style
& ~(WS_BORDER
| WS_HSCROLL
| WS_VSCROLL
);
129 wnd
->dwStyle
&= ~(WS_BORDER
| WS_HSCROLL
| WS_VSCROLL
);
132 * We also have to remove the client edge style to make sure
133 * we don't end-up with a non client area.
135 wnd
->dwExStyle
&= ~(WS_EX_CLIENTEDGE
);
137 if( !(style
& (CBS_OWNERDRAWFIXED
| CBS_OWNERDRAWVARIABLE
)) )
138 lphc
->dwStyle
|= CBS_HASSTRINGS
;
139 if( !(wnd
->dwExStyle
& WS_EX_NOPARENTNOTIFY
) )
140 lphc
->wState
|= CBF_NOTIFY
;
142 TRACE("[0x%08x], style = %08x\n",
143 (UINT
)lphc
, lphc
->dwStyle
);
145 return (LRESULT
)(UINT
)wnd
->hwndSelf
;
147 return (LRESULT
)FALSE
;
150 /***********************************************************************
153 static LRESULT
COMBO_NCDestroy( LPHEADCOMBO lphc
)
158 WND
* wnd
= lphc
->self
;
160 TRACE("[%04x]: freeing storage\n", CB_HWND(lphc
));
162 if( (CB_GETTYPE(lphc
) != CBS_SIMPLE
) && lphc
->hWndLBox
)
163 DestroyWindow( lphc
->hWndLBox
);
165 HeapFree( GetProcessHeap(), 0, lphc
);
171 /***********************************************************************
172 * CBGetTextAreaHeight
174 * This method will calculate the height of the text area of the
176 * The height of the text area is set in two ways.
177 * It can be set explicitly through a combobox message or through a
178 * WM_MEASUREITEM callback.
179 * If this is not the case, the height is set to 13 dialog units.
180 * This height was determined through experimentation.
182 static INT
CBGetTextAreaHeight(
188 if( lphc
->editHeight
) /* explicitly set height */
190 iTextItemHeight
= lphc
->editHeight
;
195 HDC hDC
= GetDC(hwnd
);
200 hPrevFont
= SelectObject( hDC
, lphc
->hFont
);
202 GetTextMetricsW(hDC
, &tm
);
204 baseUnitY
= tm
.tmHeight
;
207 SelectObject( hDC
, hPrevFont
);
209 ReleaseDC(hwnd
, hDC
);
211 iTextItemHeight
= ((13 * baseUnitY
) / 8);
214 * This "formula" calculates the height of the complete control.
215 * To calculate the height of the text area, we have to remove the
218 iTextItemHeight
-= 2*COMBO_YBORDERSIZE();
222 * Check the ownerdraw case if we haven't asked the parent the size
225 if ( CB_OWNERDRAWN(lphc
) &&
226 (lphc
->wState
& CBF_MEASUREITEM
) )
228 MEASUREITEMSTRUCT measureItem
;
230 INT originalItemHeight
= iTextItemHeight
;
233 * We use the client rect for the width of the item.
235 GetClientRect(hwnd
, &clientRect
);
237 lphc
->wState
&= ~CBF_MEASUREITEM
;
240 * Send a first one to measure the size of the text area
242 measureItem
.CtlType
= ODT_COMBOBOX
;
243 measureItem
.CtlID
= lphc
->self
->wIDmenu
;
244 measureItem
.itemID
= -1;
245 measureItem
.itemWidth
= clientRect
.right
;
246 measureItem
.itemHeight
= iTextItemHeight
- 6; /* ownerdrawn cb is taller */
247 measureItem
.itemData
= 0;
248 SendMessageW(lphc
->owner
, WM_MEASUREITEM
,
249 (WPARAM
)measureItem
.CtlID
, (LPARAM
)&measureItem
);
250 iTextItemHeight
= 6 + measureItem
.itemHeight
;
253 * Send a second one in the case of a fixed ownerdraw list to calculate the
254 * size of the list items. (we basically do this on behalf of the listbox)
256 if (lphc
->dwStyle
& CBS_OWNERDRAWFIXED
)
258 measureItem
.CtlType
= ODT_COMBOBOX
;
259 measureItem
.CtlID
= lphc
->self
->wIDmenu
;
260 measureItem
.itemID
= 0;
261 measureItem
.itemWidth
= clientRect
.right
;
262 measureItem
.itemHeight
= originalItemHeight
;
263 measureItem
.itemData
= 0;
264 SendMessageW(lphc
->owner
, WM_MEASUREITEM
,
265 (WPARAM
)measureItem
.CtlID
, (LPARAM
)&measureItem
);
266 lphc
->fixedOwnerDrawHeight
= measureItem
.itemHeight
;
270 * Keep the size for the next time
272 lphc
->editHeight
= iTextItemHeight
;
275 return iTextItemHeight
;
278 /***********************************************************************
281 * The dummy resize is used for listboxes that have a popup to trigger
282 * a re-arranging of the contents of the combobox and the recalculation
283 * of the size of the "real" control window.
285 static void CBForceDummyResize(
291 newComboHeight
= CBGetTextAreaHeight(CB_HWND(lphc
),lphc
) + 2*COMBO_YBORDERSIZE();
293 GetWindowRect(CB_HWND(lphc
), &windowRect
);
296 * We have to be careful, resizing a combobox also has the meaning that the
297 * dropped rect will be resized. In this case, we want to trigger a resize
298 * to recalculate layout but we don't want to change the dropped rectangle
299 * So, we pass the height of text area of control as the height.
300 * this will cancel-out in the processing of the WM_WINDOWPOSCHANGING
303 SetWindowPos( CB_HWND(lphc
),
306 windowRect
.right
- windowRect
.left
,
308 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
311 /***********************************************************************
314 * Set up component coordinates given valid lphc->RectCombo.
316 static void CBCalcPlacement(
324 * Again, start with the client rectangle.
326 GetClientRect(hwnd
, lprEdit
);
331 InflateRect(lprEdit
, -COMBO_XBORDERSIZE(), -COMBO_YBORDERSIZE());
334 * Chop off the bottom part to fit with the height of the text area.
336 lprEdit
->bottom
= lprEdit
->top
+ CBGetTextAreaHeight(hwnd
, lphc
);
339 * The button starts the same vertical position as the text area.
341 CopyRect(lprButton
, lprEdit
);
344 * If the combobox is "simple" there is no button.
346 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
347 lprButton
->left
= lprButton
->right
= lprButton
->bottom
= 0;
351 * Let's assume the combobox button is the same width as the
353 * size the button horizontally and cut-off the text area.
355 lprButton
->left
= lprButton
->right
- GetSystemMetrics(SM_CXVSCROLL
);
356 lprEdit
->right
= lprButton
->left
;
360 * In the case of a dropdown, there is an additional spacing between the
361 * text area and the button.
363 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
365 lprEdit
->right
-= COMBO_EDITBUTTONSPACE();
369 * If we have an edit control, we space it away from the borders slightly.
371 if (CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
)
373 InflateRect(lprEdit
, -EDIT_CONTROL_PADDING(), -EDIT_CONTROL_PADDING());
377 * Adjust the size of the listbox popup.
379 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
382 * Use the client rectangle to initialize the listbox rectangle
384 GetClientRect(hwnd
, lprLB
);
387 * Then, chop-off the top part.
389 lprLB
->top
= lprEdit
->bottom
+ COMBO_YBORDERSIZE();
394 * Make sure the dropped width is as large as the combobox itself.
396 if (lphc
->droppedWidth
< (lprButton
->right
+ COMBO_XBORDERSIZE()))
398 lprLB
->right
= lprLB
->left
+ (lprButton
->right
+ COMBO_XBORDERSIZE());
401 * In the case of a dropdown, the popup listbox is offset to the right.
402 * so, we want to make sure it's flush with the right side of the
405 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
406 lprLB
->right
-= COMBO_EDITBUTTONSPACE();
409 lprLB
->right
= lprLB
->left
+ lphc
->droppedWidth
;
412 TRACE("\ttext\t= (%i,%i-%i,%i)\n",
413 lprEdit
->left
, lprEdit
->top
, lprEdit
->right
, lprEdit
->bottom
);
415 TRACE("\tbutton\t= (%i,%i-%i,%i)\n",
416 lprButton
->left
, lprButton
->top
, lprButton
->right
, lprButton
->bottom
);
418 TRACE("\tlbox\t= (%i,%i-%i,%i)\n",
419 lprLB
->left
, lprLB
->top
, lprLB
->right
, lprLB
->bottom
);
422 /***********************************************************************
423 * CBGetDroppedControlRect
425 static void CBGetDroppedControlRect( LPHEADCOMBO lphc
, LPRECT lpRect
)
427 /* In windows, CB_GETDROPPEDCONTROLRECT returns the upper left corner
428 of the combo box and the lower right corner of the listbox */
430 GetWindowRect(lphc
->self
->hwndSelf
, lpRect
);
432 lpRect
->right
= lpRect
->left
+ lphc
->droppedRect
.right
- lphc
->droppedRect
.left
;
433 lpRect
->bottom
= lpRect
->top
+ lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
;
437 /***********************************************************************
438 * COMBO_WindowPosChanging
440 static LRESULT
COMBO_WindowPosChanging(
443 WINDOWPOS
* posChanging
)
446 * We need to override the WM_WINDOWPOSCHANGING method to handle all
447 * the non-simple comboboxes. The problem is that those controls are
448 * always the same height. We have to make sure they are not resized
451 if ( ( CB_GETTYPE(lphc
) != CBS_SIMPLE
) &&
452 ((posChanging
->flags
& SWP_NOSIZE
) == 0) )
456 newComboHeight
= CBGetTextAreaHeight(hwnd
,lphc
) +
457 2*COMBO_YBORDERSIZE();
460 * Resizing a combobox has another side effect, it resizes the dropped
461 * rectangle as well. However, it does it only if the new height for the
462 * combobox is different from the height it should have. In other words,
463 * if the application resizing the combobox only had the intention to resize
464 * the actual control, for example, to do the layout of a dialog that is
465 * resized, the height of the dropdown is not changed.
467 if (posChanging
->cy
!= newComboHeight
)
469 TRACE("posChanging->cy=%d, newComboHeight=%d, oldbot=%d, oldtop=%d\n",
470 posChanging
->cy
, newComboHeight
, lphc
->droppedRect
.bottom
,
471 lphc
->droppedRect
.top
);
472 lphc
->droppedRect
.bottom
= lphc
->droppedRect
.top
+ posChanging
->cy
- newComboHeight
;
474 posChanging
->cy
= newComboHeight
;
481 /***********************************************************************
484 static LRESULT
COMBO_Create( LPHEADCOMBO lphc
, WND
* wnd
, HWND hwndParent
, LONG style
)
486 static const WCHAR clbName
[] = {'C','o','m','b','o','L','B','o','x',0};
487 static const WCHAR editName
[] = {'E','d','i','t',0};
489 if( !CB_GETTYPE(lphc
) ) lphc
->dwStyle
|= CBS_SIMPLE
;
490 if( CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
) lphc
->wState
|= CBF_EDIT
;
493 lphc
->owner
= hwndParent
;
496 * The item height and dropped width are not set when the control
499 lphc
->droppedWidth
= lphc
->editHeight
= 0;
502 * The first time we go through, we want to measure the ownerdraw item
504 lphc
->wState
|= CBF_MEASUREITEM
;
506 /* M$ IE 3.01 actually creates (and rapidly destroys) an ownerless combobox */
508 if( lphc
->owner
|| !(style
& WS_VISIBLE
) )
514 * Initialize the dropped rect to the size of the client area of the
515 * control and then, force all the areas of the combobox to be
518 GetClientRect( wnd
->hwndSelf
, &lphc
->droppedRect
);
520 CBCalcPlacement(wnd
->hwndSelf
,
524 &lphc
->droppedRect
);
527 * Adjust the position of the popup listbox if it's necessary
529 if ( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
531 lphc
->droppedRect
.top
= lphc
->textRect
.bottom
+ COMBO_YBORDERSIZE();
534 * If it's a dropdown, the listbox is offset
536 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
537 lphc
->droppedRect
.left
+= COMBO_EDITBUTTONSPACE();
539 ClientToScreen(wnd
->hwndSelf
, (LPPOINT
)&lphc
->droppedRect
);
540 ClientToScreen(wnd
->hwndSelf
, (LPPOINT
)&lphc
->droppedRect
.right
);
543 /* create listbox popup */
545 lbeStyle
= (LBS_NOTIFY
| WS_BORDER
| WS_CLIPSIBLINGS
| WS_CHILD
) |
546 (style
& (WS_VSCROLL
| CBS_OWNERDRAWFIXED
| CBS_OWNERDRAWVARIABLE
));
548 if( lphc
->dwStyle
& CBS_SORT
)
549 lbeStyle
|= LBS_SORT
;
550 if( lphc
->dwStyle
& CBS_HASSTRINGS
)
551 lbeStyle
|= LBS_HASSTRINGS
;
552 if( lphc
->dwStyle
& CBS_NOINTEGRALHEIGHT
)
553 lbeStyle
|= LBS_NOINTEGRALHEIGHT
;
554 if( lphc
->dwStyle
& CBS_DISABLENOSCROLL
)
555 lbeStyle
|= LBS_DISABLENOSCROLL
;
557 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
) /* child listbox */
559 lbeStyle
|= WS_VISIBLE
;
562 * In win 95 look n feel, the listbox in the simple combobox has
563 * the WS_EXCLIENTEDGE style instead of the WS_BORDER style.
565 if (TWEAK_WineLook
> WIN31_LOOK
)
567 lbeStyle
&= ~WS_BORDER
;
568 lbeExStyle
|= WS_EX_CLIENTEDGE
;
572 lphc
->hWndLBox
= CreateWindowExW(lbeExStyle
,
576 lphc
->droppedRect
.left
,
577 lphc
->droppedRect
.top
,
578 lphc
->droppedRect
.right
- lphc
->droppedRect
.left
,
579 lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
,
580 lphc
->self
->hwndSelf
,
581 (HMENU
)ID_CB_LISTBOX
,
582 lphc
->self
->hInstance
,
588 lbeStyle
= WS_CHILD
| WS_VISIBLE
| ES_NOHIDESEL
| ES_LEFT
| ES_COMBO
;
591 * In Win95 look, the border fo the edit control is
592 * provided by the combobox
594 if (TWEAK_WineLook
== WIN31_LOOK
)
595 lbeStyle
|= WS_BORDER
;
597 if( lphc
->wState
& CBF_EDIT
)
599 if( lphc
->dwStyle
& CBS_OEMCONVERT
)
600 lbeStyle
|= ES_OEMCONVERT
;
601 if( lphc
->dwStyle
& CBS_AUTOHSCROLL
)
602 lbeStyle
|= ES_AUTOHSCROLL
;
603 if( lphc
->dwStyle
& CBS_LOWERCASE
)
604 lbeStyle
|= ES_LOWERCASE
;
605 else if( lphc
->dwStyle
& CBS_UPPERCASE
)
606 lbeStyle
|= ES_UPPERCASE
;
608 if (wnd
->dwStyle
& WS_DISABLED
) lbeStyle
|= WS_DISABLED
;
610 lphc
->hWndEdit
= CreateWindowExW(0,
614 lphc
->textRect
.left
, lphc
->textRect
.top
,
615 lphc
->textRect
.right
- lphc
->textRect
.left
,
616 lphc
->textRect
.bottom
- lphc
->textRect
.top
,
617 lphc
->self
->hwndSelf
,
619 lphc
->self
->hInstance
,
622 if( !lphc
->hWndEdit
)
628 if( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
630 /* Now do the trick with parent */
631 SetParent(lphc
->hWndLBox
, HWND_DESKTOP
);
633 * If the combo is a dropdown, we must resize the control
634 * to fit only the text area and button. To do this,
635 * we send a dummy resize and the WM_WINDOWPOSCHANGING message
636 * will take care of setting the height for us.
638 CBForceDummyResize(lphc
);
641 TRACE("init done\n");
642 return wnd
->hwndSelf
;
644 ERR("edit control failure.\n");
645 } else ERR("listbox failure.\n");
646 } else ERR("no owner for visible combo.\n");
648 /* CreateWindow() will send WM_NCDESTROY to cleanup */
653 /***********************************************************************
656 * Paint combo button (normal, pressed, and disabled states).
658 static void CBPaintButton(
663 if( lphc
->wState
& CBF_NOREDRAW
)
666 if (TWEAK_WineLook
== WIN31_LOOK
)
672 COLORREF oldTextColor
, oldBkColor
;
675 hPrevBrush
= SelectObject(hdc
, GetSysColorBrush(COLOR_BTNFACE
));
678 * Draw the button background
683 rectButton
.right
-rectButton
.left
,
684 rectButton
.bottom
-rectButton
.top
,
687 if( (bBool
= lphc
->wState
& CBF_BUTTONDOWN
) )
689 DrawEdge( hdc
, &rectButton
, EDGE_SUNKEN
, BF_RECT
);
693 DrawEdge( hdc
, &rectButton
, EDGE_RAISED
, BF_RECT
);
697 * Remove the edge of the button from the rectangle
698 * and calculate the position of the bitmap.
700 InflateRect( &rectButton
, -2, -2);
702 x
= (rectButton
.left
+ rectButton
.right
- CBitWidth
) >> 1;
703 y
= (rectButton
.top
+ rectButton
.bottom
- CBitHeight
) >> 1;
706 hMemDC
= CreateCompatibleDC( hdc
);
707 SelectObject( hMemDC
, hComboBmp
);
708 oldTextColor
= SetTextColor( hdc
, GetSysColor(COLOR_BTNFACE
) );
709 oldBkColor
= SetBkColor( hdc
, CB_DISABLED(lphc
) ? RGB(128,128,128) :
711 BitBlt( hdc
, x
, y
, CBitWidth
, CBitHeight
, hMemDC
, 0, 0, SRCCOPY
);
712 SetBkColor( hdc
, oldBkColor
);
713 SetTextColor( hdc
, oldTextColor
);
715 SelectObject( hdc
, hPrevBrush
);
719 UINT buttonState
= DFCS_SCROLLCOMBOBOX
;
721 if (lphc
->wState
& CBF_BUTTONDOWN
)
723 buttonState
|= DFCS_PUSHED
;
726 if (CB_DISABLED(lphc
))
728 buttonState
|= DFCS_INACTIVE
;
731 DrawFrameControl(hdc
,
738 /***********************************************************************
741 * Paint CBS_DROPDOWNLIST text field / update edit control contents.
743 static void CBPaintText(
751 if( lphc
->wState
& CBF_NOREDRAW
) return;
755 /* follow Windows combobox that sends a bunch of text
756 * inquiries to its listbox while processing WM_PAINT. */
758 if( (id
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0) ) != LB_ERR
)
760 size
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, id
, 0);
761 if( (pText
= HeapAlloc( GetProcessHeap(), 0, (size
+ 1) * sizeof(WCHAR
))) )
763 SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, (WPARAM
)id
, (LPARAM
)pText
);
764 pText
[size
] = '\0'; /* just in case */
768 if( !CB_OWNERDRAWN(lphc
) )
771 if( lphc
->wState
& CBF_EDIT
)
773 static const WCHAR empty_stringW
[] = { 0 };
774 if( CB_HASSTRINGS(lphc
) ) SetWindowTextW( lphc
->hWndEdit
, pText
? pText
: empty_stringW
);
775 if( lphc
->wState
& CBF_FOCUSED
)
776 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, (LPARAM
)(-1));
778 else /* paint text field ourselves */
780 UINT itemState
= ODS_COMBOBOXEDIT
;
781 HFONT hPrevFont
= (lphc
->hFont
) ? SelectObject(hdc
, lphc
->hFont
) : 0;
784 * Give ourselves some space.
786 InflateRect( &rectEdit
, -1, -1 );
788 if( CB_OWNERDRAWN(lphc
) )
793 /* setup state for DRAWITEM message. Owner will highlight */
794 if ( (lphc
->wState
& CBF_FOCUSED
) &&
795 !(lphc
->wState
& CBF_DROPPED
) )
796 itemState
|= ODS_SELECTED
| ODS_FOCUS
;
799 * Save the current clip region.
800 * To retrieve the clip region, we need to create one "dummy"
803 clipRegion
= CreateRectRgnIndirect(&rectEdit
);
805 if (GetClipRgn(hdc
, clipRegion
)!=1)
807 DeleteObject(clipRegion
);
808 clipRegion
=(HRGN
)NULL
;
811 if ( lphc
->self
->dwStyle
& WS_DISABLED
)
812 itemState
|= ODS_DISABLED
;
814 dis
.CtlType
= ODT_COMBOBOX
;
815 dis
.CtlID
= lphc
->self
->wIDmenu
;
816 dis
.hwndItem
= lphc
->self
->hwndSelf
;
817 dis
.itemAction
= ODA_DRAWENTIRE
;
819 dis
.itemState
= itemState
;
821 dis
.rcItem
= rectEdit
;
822 dis
.itemData
= SendMessageW(lphc
->hWndLBox
, LB_GETITEMDATA
,
826 * Clip the DC and have the parent draw the item.
828 IntersectClipRect(hdc
,
829 rectEdit
.left
, rectEdit
.top
,
830 rectEdit
.right
, rectEdit
.bottom
);
832 SendMessageW(lphc
->owner
, WM_DRAWITEM
,
833 lphc
->self
->wIDmenu
, (LPARAM
)&dis
);
836 * Reset the clipping region.
838 SelectClipRgn(hdc
, clipRegion
);
842 static const WCHAR empty_stringW
[] = { 0 };
844 if ( (lphc
->wState
& CBF_FOCUSED
) &&
845 !(lphc
->wState
& CBF_DROPPED
) ) {
848 FillRect( hdc
, &rectEdit
, GetSysColorBrush(COLOR_HIGHLIGHT
) );
849 SetBkColor( hdc
, GetSysColor( COLOR_HIGHLIGHT
) );
850 SetTextColor( hdc
, GetSysColor( COLOR_HIGHLIGHTTEXT
) );
856 ETO_OPAQUE
| ETO_CLIPPED
,
858 pText
? pText
: empty_stringW
, size
, NULL
);
860 if(lphc
->wState
& CBF_FOCUSED
&& !(lphc
->wState
& CBF_DROPPED
))
861 DrawFocusRect( hdc
, &rectEdit
);
865 SelectObject(hdc
, hPrevFont
);
868 HeapFree( GetProcessHeap(), 0, pText
);
871 /***********************************************************************
874 static void CBPaintBorder(
881 if (CB_GETTYPE(lphc
) != CBS_SIMPLE
)
883 GetClientRect(hwnd
, &clientRect
);
887 CopyRect(&clientRect
, &lphc
->textRect
);
889 InflateRect(&clientRect
, EDIT_CONTROL_PADDING(), EDIT_CONTROL_PADDING());
890 InflateRect(&clientRect
, COMBO_XBORDERSIZE(), COMBO_YBORDERSIZE());
893 DrawEdge(hdc
, &clientRect
, EDGE_SUNKEN
, BF_RECT
);
896 /***********************************************************************
897 * COMBO_PrepareColors
899 * This method will sent the appropriate WM_CTLCOLOR message to
900 * prepare and setup the colors for the combo's DC.
902 * It also returns the brush to use for the background.
904 static HBRUSH
COMBO_PrepareColors(
911 * Get the background brush for this control.
913 if (CB_DISABLED(lphc
))
915 hBkgBrush
= SendMessageW(lphc
->owner
, WM_CTLCOLORSTATIC
,
916 hDC
, lphc
->self
->hwndSelf
);
919 * We have to change the text color since WM_CTLCOLORSTATIC will
920 * set it to the "enabled" color. This is the same behavior as the
923 SetTextColor(hDC
, GetSysColor(COLOR_GRAYTEXT
));
927 if (lphc
->wState
& CBF_EDIT
)
929 hBkgBrush
= SendMessageW(lphc
->owner
, WM_CTLCOLOREDIT
,
930 hDC
, lphc
->self
->hwndSelf
);
934 hBkgBrush
= SendMessageW(lphc
->owner
, WM_CTLCOLORLISTBOX
,
935 hDC
, lphc
->self
->hwndSelf
);
943 hBkgBrush
= GetSysColorBrush(COLOR_WINDOW
);
948 /***********************************************************************
949 * COMBO_EraseBackground
951 static LRESULT
COMBO_EraseBackground(
959 if(lphc
->wState
& CBF_EDIT
)
962 hDC
= (hParamDC
) ? hParamDC
965 * Retrieve the background brush
967 hBkgBrush
= COMBO_PrepareColors(lphc
, hDC
);
969 FillRect(hDC
, &lphc
->textRect
, hBkgBrush
);
972 ReleaseDC(hwnd
, hDC
);
977 /***********************************************************************
980 static LRESULT
COMBO_Paint(LPHEADCOMBO lphc
, HDC hParamDC
)
985 hDC
= (hParamDC
) ? hParamDC
986 : BeginPaint( lphc
->self
->hwndSelf
, &ps
);
988 TRACE("hdc=%04x\n", hDC
);
990 if( hDC
&& !(lphc
->wState
& CBF_NOREDRAW
) )
992 HBRUSH hPrevBrush
, hBkgBrush
;
995 * Retrieve the background brush and select it in the
998 hBkgBrush
= COMBO_PrepareColors(lphc
, hDC
);
1000 hPrevBrush
= SelectObject( hDC
, hBkgBrush
);
1003 * In non 3.1 look, there is a sunken border on the combobox
1005 if (TWEAK_WineLook
!= WIN31_LOOK
)
1007 CBPaintBorder(CB_HWND(lphc
), lphc
, hDC
);
1010 if( !IsRectEmpty(&lphc
->buttonRect
) )
1012 CBPaintButton(lphc
, hDC
, lphc
->buttonRect
);
1015 /* paint the edit control padding area */
1016 if (CB_GETTYPE(lphc
) != CBS_DROPDOWNLIST
)
1018 RECT rPadEdit
= lphc
->textRect
;
1020 InflateRect(&rPadEdit
, EDIT_CONTROL_PADDING(), EDIT_CONTROL_PADDING());
1022 FrameRect( hDC
, &rPadEdit
, GetSysColorBrush(COLOR_WINDOW
) );
1025 if( !(lphc
->wState
& CBF_EDIT
) )
1028 * The text area has a border only in Win 3.1 look.
1030 if (TWEAK_WineLook
== WIN31_LOOK
)
1032 HPEN hPrevPen
= SelectObject( hDC
, GetSysColorPen(COLOR_WINDOWFRAME
) );
1035 lphc
->textRect
.left
, lphc
->textRect
.top
,
1036 lphc
->textRect
.right
- 1, lphc
->textRect
.bottom
- 1);
1038 SelectObject( hDC
, hPrevPen
);
1041 CBPaintText( lphc
, hDC
, lphc
->textRect
);
1045 SelectObject( hDC
, hPrevBrush
);
1049 EndPaint(lphc
->self
->hwndSelf
, &ps
);
1054 /***********************************************************************
1057 * Select listbox entry according to the contents of the edit control.
1059 static INT
CBUpdateLBox( LPHEADCOMBO lphc
, BOOL bSelect
)
1062 LPWSTR pText
= NULL
;
1065 length
= CB_GETEDITTEXTLENGTH( lphc
);
1068 pText
= HeapAlloc( GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
));
1070 TRACE("\t edit text length %i\n", length
);
1074 if( length
) GetWindowTextW( lphc
->hWndEdit
, pText
, length
+ 1);
1075 else pText
[0] = '\0';
1076 idx
= SendMessageW(lphc
->hWndLBox
, LB_FINDSTRING
,
1077 (WPARAM
)(-1), (LPARAM
)pText
);
1078 HeapFree( GetProcessHeap(), 0, pText
);
1081 SendMessageW(lphc
->hWndLBox
, LB_SETCURSEL
, (WPARAM
)(bSelect
? idx
: -1), 0);
1083 /* probably superfluous but Windows sends this too */
1084 SendMessageW(lphc
->hWndLBox
, LB_SETCARETINDEX
, (WPARAM
)(idx
< 0 ? 0 : idx
), 0);
1085 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
, (WPARAM
)(idx
< 0 ? 0 : idx
), 0);
1090 /***********************************************************************
1093 * Copy a listbox entry to the edit control.
1095 static void CBUpdateEdit( LPHEADCOMBO lphc
, INT index
)
1098 LPWSTR pText
= NULL
;
1099 static const WCHAR empty_stringW
[] = { 0 };
1101 TRACE("\t %i\n", index
);
1103 if( index
>= 0 ) /* got an entry */
1105 length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, (WPARAM
)index
, 0);
1108 if( (pText
= HeapAlloc( GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
))) )
1110 SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
,
1111 (WPARAM
)index
, (LPARAM
)pText
);
1116 lphc
->wState
|= (CBF_NOEDITNOTIFY
| CBF_NOLBSELECT
);
1117 SendMessageW(lphc
->hWndEdit
, WM_SETTEXT
, 0, pText
? (LPARAM
)pText
: (LPARAM
)empty_stringW
);
1118 lphc
->wState
&= ~(CBF_NOEDITNOTIFY
| CBF_NOLBSELECT
);
1120 if( lphc
->wState
& CBF_FOCUSED
)
1121 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, (LPARAM
)(-1));
1124 HeapFree( GetProcessHeap(), 0, pText
);
1127 /***********************************************************************
1130 * Show listbox popup.
1132 static void CBDropDown( LPHEADCOMBO lphc
)
1138 TRACE("[%04x]: drop down\n", CB_HWND(lphc
));
1140 CB_NOTIFY( lphc
, CBN_DROPDOWN
);
1144 lphc
->wState
|= CBF_DROPPED
;
1145 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1147 lphc
->droppedIndex
= CBUpdateLBox( lphc
, TRUE
);
1149 /* Update edit only if item is in the list */
1150 if( !(lphc
->wState
& CBF_CAPTURE
) && lphc
->droppedIndex
>= 0)
1151 CBUpdateEdit( lphc
, lphc
->droppedIndex
);
1155 lphc
->droppedIndex
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1157 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
,
1158 (WPARAM
)(lphc
->droppedIndex
== LB_ERR
? 0 : lphc
->droppedIndex
), 0 );
1159 SendMessageW(lphc
->hWndLBox
, LB_CARETON
, 0, 0);
1162 /* now set popup position */
1163 GetWindowRect( lphc
->self
->hwndSelf
, &rect
);
1166 * If it's a dropdown, the listbox is offset
1168 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1169 rect
.left
+= COMBO_EDITBUTTONSPACE();
1171 /* if the dropped height is greater than the total height of the dropped
1172 items list, then force the drop down list height to be the total height
1173 of the items in the dropped list */
1175 /* And Remove any extra space (Best Fit) */
1176 nDroppedHeight
= lphc
->droppedRect
.bottom
- lphc
->droppedRect
.top
;
1177 /* if listbox length has been set directly by its handle */
1178 GetWindowRect(lphc
->hWndLBox
, &r
);
1179 if (nDroppedHeight
< r
.bottom
- r
.top
)
1180 nDroppedHeight
= r
.bottom
- r
.top
;
1181 nItems
= (int)SendMessageW(lphc
->hWndLBox
, LB_GETCOUNT
, 0, 0);
1187 nHeight
= (int)SendMessageW(lphc
->hWndLBox
, LB_GETITEMHEIGHT
, 0, 0);
1190 if (nHeight
< nDroppedHeight
- COMBO_YBORDERSIZE())
1191 nDroppedHeight
= nHeight
+ COMBO_YBORDERSIZE();
1194 /*If height of dropped rectangle gets beyond a screen size it should go up, otherwise down.*/
1195 if( (rect
.bottom
+ nDroppedHeight
) >= GetSystemMetrics( SM_CYSCREEN
) )
1196 rect
.bottom
= rect
.top
- nDroppedHeight
;
1198 SetWindowPos( lphc
->hWndLBox
, HWND_TOP
, rect
.left
, rect
.bottom
,
1199 lphc
->droppedRect
.right
- lphc
->droppedRect
.left
,
1201 SWP_NOACTIVATE
| SWP_SHOWWINDOW
);
1204 if( !(lphc
->wState
& CBF_NOREDRAW
) )
1205 RedrawWindow( lphc
->self
->hwndSelf
, NULL
, 0, RDW_INVALIDATE
|
1206 RDW_ERASE
| RDW_UPDATENOW
| RDW_NOCHILDREN
);
1208 EnableWindow( lphc
->hWndLBox
, TRUE
);
1209 if (GetCapture() != lphc
->self
->hwndSelf
)
1210 SetCapture(lphc
->hWndLBox
);
1213 /***********************************************************************
1216 * Hide listbox popup.
1218 static void CBRollUp( LPHEADCOMBO lphc
, BOOL ok
, BOOL bButton
)
1220 HWND hWnd
= lphc
->self
->hwndSelf
;
1222 TRACE("[%04x]: sel ok? [%i] dropped? [%i]\n",
1223 CB_HWND(lphc
), (INT
)ok
, (INT
)(lphc
->wState
& CBF_DROPPED
));
1225 CB_NOTIFY( lphc
, (ok
) ? CBN_SELENDOK
: CBN_SELENDCANCEL
);
1227 if( IsWindow( hWnd
) && CB_GETTYPE(lphc
) != CBS_SIMPLE
)
1230 if( lphc
->wState
& CBF_DROPPED
)
1234 lphc
->wState
&= ~CBF_DROPPED
;
1235 ShowWindow( lphc
->hWndLBox
, SW_HIDE
);
1237 if(GetCapture() == lphc
->hWndLBox
)
1242 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1244 rect
= lphc
->buttonRect
;
1255 rect
= lphc
->textRect
;
1260 if( bButton
&& !(lphc
->wState
& CBF_NOREDRAW
) )
1261 RedrawWindow( hWnd
, &rect
, 0, RDW_INVALIDATE
|
1262 RDW_ERASE
| RDW_UPDATENOW
| RDW_NOCHILDREN
);
1263 CB_NOTIFY( lphc
, CBN_CLOSEUP
);
1268 /***********************************************************************
1271 * Used by the ComboLBox to show/hide itself in response to VK_F4, etc...
1273 BOOL
COMBO_FlipListbox( LPHEADCOMBO lphc
, BOOL ok
, BOOL bRedrawButton
)
1275 if( lphc
->wState
& CBF_DROPPED
)
1277 CBRollUp( lphc
, ok
, bRedrawButton
);
1285 /***********************************************************************
1288 static void CBRepaintButton( LPHEADCOMBO lphc
)
1290 InvalidateRect(CB_HWND(lphc
), &lphc
->buttonRect
, TRUE
);
1291 UpdateWindow(CB_HWND(lphc
));
1294 /***********************************************************************
1297 static void COMBO_SetFocus( LPHEADCOMBO lphc
)
1299 if( !(lphc
->wState
& CBF_FOCUSED
) )
1301 if( CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
)
1302 SendMessageW(lphc
->hWndLBox
, LB_CARETON
, 0, 0);
1304 /* This is wrong. Message sequences seem to indicate that this
1305 is set *after* the notify. */
1306 /* lphc->wState |= CBF_FOCUSED; */
1308 if( !(lphc
->wState
& CBF_EDIT
) )
1309 InvalidateRect(CB_HWND(lphc
), &lphc
->textRect
, TRUE
);
1311 CB_NOTIFY( lphc
, CBN_SETFOCUS
);
1312 lphc
->wState
|= CBF_FOCUSED
;
1316 /***********************************************************************
1319 static void COMBO_KillFocus( LPHEADCOMBO lphc
)
1321 HWND hWnd
= lphc
->self
->hwndSelf
;
1323 if( lphc
->wState
& CBF_FOCUSED
)
1325 CBRollUp( lphc
, FALSE
, TRUE
);
1326 if( IsWindow( hWnd
) )
1328 if( CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
)
1329 SendMessageW(lphc
->hWndLBox
, LB_CARETOFF
, 0, 0);
1331 lphc
->wState
&= ~CBF_FOCUSED
;
1334 if( !(lphc
->wState
& CBF_EDIT
) )
1335 InvalidateRect(CB_HWND(lphc
), &lphc
->textRect
, TRUE
);
1337 CB_NOTIFY( lphc
, CBN_KILLFOCUS
);
1342 /***********************************************************************
1345 static LRESULT
COMBO_Command( LPHEADCOMBO lphc
, WPARAM wParam
, HWND hWnd
)
1347 if ( lphc
->wState
& CBF_EDIT
&& lphc
->hWndEdit
== hWnd
)
1349 /* ">> 8" makes gcc generate jump-table instead of cmp ladder */
1351 switch( HIWORD(wParam
) >> 8 )
1353 case (EN_SETFOCUS
>> 8):
1355 TRACE("[%04x]: edit [%04x] got focus\n",
1356 CB_HWND(lphc
), lphc
->hWndEdit
);
1358 COMBO_SetFocus( lphc
);
1361 case (EN_KILLFOCUS
>> 8):
1363 TRACE("[%04x]: edit [%04x] lost focus\n",
1364 CB_HWND(lphc
), lphc
->hWndEdit
);
1366 /* NOTE: it seems that Windows' edit control sends an
1367 * undocumented message WM_USER + 0x1B instead of this
1368 * notification (only when it happens to be a part of
1369 * the combo). ?? - AK.
1372 COMBO_KillFocus( lphc
);
1376 case (EN_CHANGE
>> 8):
1378 * In some circumstances (when the selection of the combobox
1379 * is changed for example) we don't wans the EN_CHANGE notification
1380 * to be forwarded to the parent of the combobox. This code
1381 * checks a flag that is set in these occasions and ignores the
1384 if (lphc
->wState
& CBF_NOLBSELECT
)
1386 lphc
->wState
&= ~CBF_NOLBSELECT
;
1390 CBUpdateLBox( lphc
, lphc
->wState
& CBF_DROPPED
);
1393 if (!(lphc
->wState
& CBF_NOEDITNOTIFY
))
1394 CB_NOTIFY( lphc
, CBN_EDITCHANGE
);
1397 case (EN_UPDATE
>> 8):
1398 if (!(lphc
->wState
& CBF_NOEDITNOTIFY
))
1399 CB_NOTIFY( lphc
, CBN_EDITUPDATE
);
1402 case (EN_ERRSPACE
>> 8):
1403 CB_NOTIFY( lphc
, CBN_ERRSPACE
);
1406 else if( lphc
->hWndLBox
== hWnd
)
1408 switch( HIWORD(wParam
) )
1411 CB_NOTIFY( lphc
, CBN_ERRSPACE
);
1415 CB_NOTIFY( lphc
, CBN_DBLCLK
);
1421 TRACE("[%04x]: lbox selection change [%04x]\n",
1422 CB_HWND(lphc
), lphc
->wState
);
1424 if( HIWORD(wParam
) == LBN_SELCHANGE
)
1426 if( lphc
->wState
& CBF_EDIT
)
1428 INT index
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1429 lphc
->wState
|= CBF_NOLBSELECT
;
1430 CBUpdateEdit( lphc
, index
);
1431 /* select text in edit, as Windows does */
1432 SendMessageW(lphc
->hWndEdit
, EM_SETSEL
, 0, (LPARAM
)(-1));
1435 InvalidateRect(CB_HWND(lphc
), &lphc
->textRect
, TRUE
);
1438 /* do not roll up if selection is being tracked
1439 * by arrowkeys in the dropdown listbox */
1440 if( ((lphc
->wState
& CBF_DROPPED
) && !(lphc
->wState
& CBF_NOROLLUP
)) )
1442 CBRollUp( lphc
, (HIWORD(wParam
) == LBN_SELCHANGE
), TRUE
);
1444 else lphc
->wState
&= ~CBF_NOROLLUP
;
1446 CB_NOTIFY( lphc
, CBN_SELCHANGE
);
1452 /* nothing to do here since ComboLBox always resets the focus to its
1453 * combo/edit counterpart */
1460 /***********************************************************************
1463 * Fixup an ownerdrawn item operation and pass it up to the combobox owner.
1465 static LRESULT
COMBO_ItemOp( LPHEADCOMBO lphc
, UINT msg
, LPARAM lParam
)
1467 HWND hWnd
= lphc
->self
->hwndSelf
;
1469 TRACE("[%04x]: ownerdraw op %04x\n", CB_HWND(lphc
), msg
);
1471 #define lpIS ((LPDELETEITEMSTRUCT)lParam)
1473 /* two first items are the same in all 4 structs */
1474 lpIS
->CtlType
= ODT_COMBOBOX
;
1475 lpIS
->CtlID
= lphc
->self
->wIDmenu
;
1477 switch( msg
) /* patch window handle */
1480 lpIS
->hwndItem
= hWnd
;
1484 #define lpIS ((LPDRAWITEMSTRUCT)lParam)
1485 lpIS
->hwndItem
= hWnd
;
1488 case WM_COMPAREITEM
:
1489 #define lpIS ((LPCOMPAREITEMSTRUCT)lParam)
1490 lpIS
->hwndItem
= hWnd
;
1495 return SendMessageW(lphc
->owner
, msg
, lphc
->self
->wIDmenu
, lParam
);
1498 /***********************************************************************
1501 * NOTE! LB_GETTEXT does not count terminating \0, WM_GETTEXT does.
1502 * also LB_GETTEXT might return values < 0, WM_GETTEXT doesn't.
1504 static LRESULT
COMBO_GetText( LPHEADCOMBO lphc
, INT N
, LPARAM lParam
, BOOL unicode
)
1506 if( lphc
->wState
& CBF_EDIT
)
1507 return unicode
? SendMessageW(lphc
->hWndEdit
, WM_GETTEXT
, (WPARAM
)N
, lParam
) :
1508 SendMessageA(lphc
->hWndEdit
, WM_GETTEXT
, (WPARAM
)N
, lParam
);
1510 /* get it from the listbox */
1512 if( lphc
->hWndLBox
)
1514 INT idx
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1518 INT length
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
,
1523 LPWSTR lpBuffer
, lpText
= (LPWSTR
)lParam
;
1525 /* 'length' is without the terminating character */
1527 lpBuffer
= HeapAlloc(GetProcessHeap(), 0, (length
+ 1) * sizeof(WCHAR
));
1533 n
= SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, (WPARAM
)idx
, (LPARAM
)lpBuffer
);
1535 /* truncate if buffer is too short */
1541 strncpyW(lpText
, lpBuffer
, (N
> n
) ? n
+1 : N
-1);
1542 lpText
[N
- 1] = '\0';
1544 HeapFree( GetProcessHeap(), 0, lpBuffer
);
1550 LPSTR lpBuffer
, lpText
= (LPSTR
)lParam
;
1552 /* 'length' is without the terminating character */
1554 lpBuffer
= HeapAlloc(GetProcessHeap(), 0, length
+ 1);
1560 n
= SendMessageA(lphc
->hWndLBox
, LB_GETTEXT
, (WPARAM
)idx
, (LPARAM
)lpBuffer
);
1562 /* truncate if buffer is too short */
1568 strncpy(lpText
, lpBuffer
, (N
> n
) ? n
+1 : N
-1);
1569 lpText
[N
- 1] = '\0';
1571 HeapFree( GetProcessHeap(), 0, lpBuffer
);
1586 /***********************************************************************
1589 * This function sets window positions according to the updated
1590 * component placement struct.
1592 static void CBResetPos(
1598 BOOL bDrop
= (CB_GETTYPE(lphc
) != CBS_SIMPLE
);
1600 /* NOTE: logs sometimes have WM_LBUTTONUP before a cascade of
1601 * sizing messages */
1603 if( lphc
->wState
& CBF_EDIT
)
1604 SetWindowPos( lphc
->hWndEdit
, 0,
1605 rectEdit
->left
, rectEdit
->top
,
1606 rectEdit
->right
- rectEdit
->left
,
1607 rectEdit
->bottom
- rectEdit
->top
,
1608 SWP_NOZORDER
| SWP_NOACTIVATE
| ((bDrop
) ? SWP_NOREDRAW
: 0) );
1610 SetWindowPos( lphc
->hWndLBox
, 0,
1611 rectLB
->left
, rectLB
->top
,
1612 rectLB
->right
- rectLB
->left
,
1613 rectLB
->bottom
- rectLB
->top
,
1614 SWP_NOACTIVATE
| SWP_NOZORDER
| ((bDrop
) ? SWP_NOREDRAW
: 0) );
1618 if( lphc
->wState
& CBF_DROPPED
)
1620 lphc
->wState
&= ~CBF_DROPPED
;
1621 ShowWindow( lphc
->hWndLBox
, SW_HIDE
);
1624 if( bRedraw
&& !(lphc
->wState
& CBF_NOREDRAW
) )
1625 RedrawWindow( lphc
->self
->hwndSelf
, NULL
, 0,
1626 RDW_INVALIDATE
| RDW_ERASE
| RDW_UPDATENOW
);
1631 /***********************************************************************
1634 static void COMBO_Size( LPHEADCOMBO lphc
)
1636 CBCalcPlacement(lphc
->self
->hwndSelf
,
1640 &lphc
->droppedRect
);
1642 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, TRUE
);
1646 /***********************************************************************
1649 static void COMBO_Font( LPHEADCOMBO lphc
, HFONT hFont
, BOOL bRedraw
)
1654 lphc
->hFont
= hFont
;
1657 * Propagate to owned windows.
1659 if( lphc
->wState
& CBF_EDIT
)
1660 SendMessageW(lphc
->hWndEdit
, WM_SETFONT
, (WPARAM
)hFont
, bRedraw
);
1661 SendMessageW(lphc
->hWndLBox
, WM_SETFONT
, (WPARAM
)hFont
, bRedraw
);
1664 * Redo the layout of the control.
1666 if ( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
1668 CBCalcPlacement(lphc
->self
->hwndSelf
,
1672 &lphc
->droppedRect
);
1674 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, TRUE
);
1678 CBForceDummyResize(lphc
);
1683 /***********************************************************************
1684 * COMBO_SetItemHeight
1686 static LRESULT
COMBO_SetItemHeight( LPHEADCOMBO lphc
, INT index
, INT height
)
1688 LRESULT lRet
= CB_ERR
;
1690 if( index
== -1 ) /* set text field height */
1692 if( height
< 32768 )
1694 lphc
->editHeight
= height
;
1697 * Redo the layout of the control.
1699 if ( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
1701 CBCalcPlacement(lphc
->self
->hwndSelf
,
1705 &lphc
->droppedRect
);
1707 CBResetPos( lphc
, &lphc
->textRect
, &lphc
->droppedRect
, TRUE
);
1711 CBForceDummyResize(lphc
);
1717 else if ( CB_OWNERDRAWN(lphc
) ) /* set listbox item height */
1718 lRet
= SendMessageW(lphc
->hWndLBox
, LB_SETITEMHEIGHT
,
1719 (WPARAM
)index
, (LPARAM
)height
);
1723 /***********************************************************************
1724 * COMBO_SelectString
1726 static LRESULT
COMBO_SelectString( LPHEADCOMBO lphc
, INT start
, LPARAM pText
, BOOL unicode
)
1728 INT index
= unicode
? SendMessageW(lphc
->hWndLBox
, LB_SELECTSTRING
, (WPARAM
)start
, pText
) :
1729 SendMessageA(lphc
->hWndLBox
, LB_SELECTSTRING
, (WPARAM
)start
, pText
);
1732 if( lphc
->wState
& CBF_EDIT
)
1733 CBUpdateEdit( lphc
, index
);
1736 InvalidateRect(CB_HWND(lphc
), &lphc
->textRect
, TRUE
);
1739 return (LRESULT
)index
;
1742 /***********************************************************************
1745 static void COMBO_LButtonDown( LPHEADCOMBO lphc
, LPARAM lParam
)
1749 HWND hWnd
= lphc
->self
->hwndSelf
;
1751 pt
.x
= LOWORD(lParam
);
1752 pt
.y
= HIWORD(lParam
);
1753 bButton
= PtInRect(&lphc
->buttonRect
, pt
);
1755 if( (CB_GETTYPE(lphc
) == CBS_DROPDOWNLIST
) ||
1756 (bButton
&& (CB_GETTYPE(lphc
) == CBS_DROPDOWN
)) )
1758 lphc
->wState
|= CBF_BUTTONDOWN
;
1759 if( lphc
->wState
& CBF_DROPPED
)
1761 /* got a click to cancel selection */
1763 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1764 CBRollUp( lphc
, TRUE
, FALSE
);
1765 if( !IsWindow( hWnd
) ) return;
1767 if( lphc
->wState
& CBF_CAPTURE
)
1769 lphc
->wState
&= ~CBF_CAPTURE
;
1775 /* drop down the listbox and start tracking */
1777 lphc
->wState
|= CBF_CAPTURE
;
1781 if( bButton
) CBRepaintButton( lphc
);
1785 /***********************************************************************
1788 * Release capture and stop tracking if needed.
1790 static void COMBO_LButtonUp( LPHEADCOMBO lphc
)
1792 if( lphc
->wState
& CBF_CAPTURE
)
1794 lphc
->wState
&= ~CBF_CAPTURE
;
1795 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
)
1797 INT index
= CBUpdateLBox( lphc
, TRUE
);
1798 /* Update edit only if item is in the list */
1801 lphc
->wState
|= CBF_NOLBSELECT
;
1802 CBUpdateEdit( lphc
, index
);
1803 lphc
->wState
&= ~CBF_NOLBSELECT
;
1807 SetCapture(lphc
->hWndLBox
);
1810 if( lphc
->wState
& CBF_BUTTONDOWN
)
1812 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1813 CBRepaintButton( lphc
);
1817 /***********************************************************************
1820 * Two things to do - track combo button and release capture when
1821 * pointer goes into the listbox.
1823 static void COMBO_MouseMove( LPHEADCOMBO lphc
, WPARAM wParam
, LPARAM lParam
)
1828 pt
.x
= LOWORD(lParam
);
1829 pt
.y
= HIWORD(lParam
);
1831 if( lphc
->wState
& CBF_BUTTONDOWN
)
1835 bButton
= PtInRect(&lphc
->buttonRect
, pt
);
1839 lphc
->wState
&= ~CBF_BUTTONDOWN
;
1840 CBRepaintButton( lphc
);
1844 GetClientRect( lphc
->hWndLBox
, &lbRect
);
1845 MapWindowPoints( lphc
->self
->hwndSelf
, lphc
->hWndLBox
, &pt
, 1 );
1846 if( PtInRect(&lbRect
, pt
) )
1848 lphc
->wState
&= ~CBF_CAPTURE
;
1850 if( CB_GETTYPE(lphc
) == CBS_DROPDOWN
) CBUpdateLBox( lphc
, TRUE
);
1852 /* hand over pointer tracking */
1853 SendMessageW(lphc
->hWndLBox
, WM_LBUTTONDOWN
, wParam
, lParam
);
1858 /***********************************************************************
1859 * ComboWndProc_locked
1861 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/ctrl/src/combobox_15.htm
1863 static LRESULT
ComboWndProc_locked( WND
* pWnd
, UINT message
,
1864 WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
1867 LPHEADCOMBO lphc
= CB_GETPTR(pWnd
);
1868 HWND hwnd
= pWnd
->hwndSelf
;
1870 TRACE("[%04x]: msg %s wp %08x lp %08lx\n",
1871 pWnd
->hwndSelf
, SPY_GetMsgName(message
), wParam
, lParam
);
1873 if( lphc
|| message
== WM_NCCREATE
)
1877 /* System messages */
1881 LONG style
= unicode
? ((LPCREATESTRUCTW
)lParam
)->style
:
1882 ((LPCREATESTRUCTA
)lParam
)->style
;
1883 return COMBO_NCCreate(pWnd
, style
);
1886 COMBO_NCDestroy(lphc
);
1887 break;/* -> DefWindowProc */
1895 hwndParent
= ((LPCREATESTRUCTW
)lParam
)->hwndParent
;
1896 style
= ((LPCREATESTRUCTW
)lParam
)->style
;
1900 hwndParent
= ((LPCREATESTRUCTA
)lParam
)->hwndParent
;
1901 style
= ((LPCREATESTRUCTA
)lParam
)->style
;
1903 return COMBO_Create(lphc
, pWnd
, hwndParent
, style
);
1906 case WM_PRINTCLIENT
:
1907 if (lParam
& PRF_ERASEBKGND
)
1908 COMBO_EraseBackground(hwnd
, lphc
, wParam
);
1912 /* wParam may contain a valid HDC! */
1913 return COMBO_Paint(lphc
, wParam
);
1915 return COMBO_EraseBackground(hwnd
, lphc
, wParam
);
1918 LRESULT result
= DLGC_WANTARROWS
| DLGC_WANTCHARS
;
1919 if (lParam
&& (((LPMSG
)lParam
)->message
== WM_KEYDOWN
))
1921 int vk
= (int)((LPMSG
)lParam
)->wParam
;
1923 if ((vk
== VK_RETURN
|| vk
== VK_ESCAPE
) && (lphc
->wState
& CBF_DROPPED
))
1924 result
|= DLGC_WANTMESSAGE
;
1928 case WM_WINDOWPOSCHANGING
:
1929 return COMBO_WindowPosChanging(hwnd
, lphc
, (LPWINDOWPOS
)lParam
);
1930 case WM_WINDOWPOSCHANGED
:
1931 /* SetWindowPos can be called on a Combobox to resize its Listbox.
1932 * In that case, the Combobox itself will not be resized, so we won't
1933 * get a WM_SIZE. Since we still want to update the Listbox, we have to
1938 if( lphc
->hWndLBox
&&
1939 !(lphc
->wState
& CBF_NORESIZE
) ) COMBO_Size( lphc
);
1942 COMBO_Font( lphc
, (HFONT16
)wParam
, (BOOL
)lParam
);
1945 return (LRESULT
)lphc
->hFont
;
1947 if( lphc
->wState
& CBF_EDIT
)
1948 SetFocus( lphc
->hWndEdit
);
1950 COMBO_SetFocus( lphc
);
1953 #define hwndFocus ((HWND16)wParam)
1955 (hwndFocus
!= lphc
->hWndEdit
&& hwndFocus
!= lphc
->hWndLBox
))
1956 COMBO_KillFocus( lphc
);
1960 return COMBO_Command( lphc
, wParam
, (HWND
)lParam
);
1962 return COMBO_GetText( lphc
, (INT
)wParam
, lParam
, unicode
);
1964 case WM_GETTEXTLENGTH
:
1966 if ((message
== WM_GETTEXTLENGTH
) && !ISWIN31
&& !(lphc
->wState
& CBF_EDIT
))
1968 int j
= SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
1969 if (j
== -1) return 0;
1970 return SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, j
, 0);
1972 else if( lphc
->wState
& CBF_EDIT
)
1975 lphc
->wState
|= CBF_NOEDITNOTIFY
;
1976 ret
= unicode
? SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
) :
1977 SendMessageA(lphc
->hWndEdit
, message
, wParam
, lParam
);
1978 lphc
->wState
&= ~CBF_NOEDITNOTIFY
;
1985 if( lphc
->wState
& CBF_EDIT
)
1987 return unicode
? SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
) :
1988 SendMessageA(lphc
->hWndEdit
, message
, wParam
, lParam
);
1994 case WM_COMPAREITEM
:
1995 case WM_MEASUREITEM
:
1996 return COMBO_ItemOp(lphc
, message
, lParam
);
1998 if( lphc
->wState
& CBF_EDIT
)
1999 EnableWindow( lphc
->hWndEdit
, (BOOL
)wParam
);
2000 EnableWindow( lphc
->hWndLBox
, (BOOL
)wParam
);
2002 /* Force the control to repaint when the enabled state changes. */
2003 InvalidateRect(CB_HWND(lphc
), NULL
, TRUE
);
2007 lphc
->wState
&= ~CBF_NOREDRAW
;
2009 lphc
->wState
|= CBF_NOREDRAW
;
2011 if( lphc
->wState
& CBF_EDIT
)
2012 SendMessageW(lphc
->hWndEdit
, message
, wParam
, lParam
);
2013 SendMessageW(lphc
->hWndLBox
, message
, wParam
, lParam
);
2016 if( KEYDATA_ALT
& HIWORD(lParam
) )
2017 if( wParam
== VK_UP
|| wParam
== VK_DOWN
)
2018 COMBO_FlipListbox( lphc
, FALSE
, FALSE
);
2026 if ((wParam
== VK_RETURN
|| wParam
== VK_ESCAPE
) &&
2027 (lphc
->wState
& CBF_DROPPED
))
2029 CBRollUp( lphc
, wParam
== VK_RETURN
, FALSE
);
2033 if( lphc
->wState
& CBF_EDIT
)
2034 hwndTarget
= lphc
->hWndEdit
;
2036 hwndTarget
= lphc
->hWndLBox
;
2038 return unicode
? SendMessageW(hwndTarget
, message
, wParam
, lParam
) :
2039 SendMessageA(hwndTarget
, message
, wParam
, lParam
);
2041 case WM_LBUTTONDOWN
:
2042 if( !(lphc
->wState
& CBF_FOCUSED
) ) SetFocus( lphc
->self
->hwndSelf
);
2043 if( lphc
->wState
& CBF_FOCUSED
) COMBO_LButtonDown( lphc
, lParam
);
2046 COMBO_LButtonUp( lphc
);
2049 if( lphc
->wState
& CBF_CAPTURE
)
2050 COMBO_MouseMove( lphc
, wParam
, lParam
);
2054 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
2055 return unicode
? DefWindowProcW(hwnd
, message
, wParam
, lParam
) :
2056 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
2057 if (SHIWORD(wParam
) > 0) return SendMessageW(hwnd
, WM_KEYDOWN
, VK_UP
, 0);
2058 if (SHIWORD(wParam
) < 0) return SendMessageW(hwnd
, WM_KEYDOWN
, VK_DOWN
, 0);
2061 /* Combo messages */
2063 case CB_ADDSTRING16
:
2064 if( CB_HASSTRINGS(lphc
) ) lParam
= (LPARAM
)MapSL(lParam
);
2067 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_ADDSTRING
, 0, lParam
) :
2068 SendMessageA(lphc
->hWndLBox
, LB_ADDSTRING
, 0, lParam
);
2069 case CB_INSERTSTRING16
:
2070 wParam
= (INT
)(INT16
)wParam
;
2071 if( CB_HASSTRINGS(lphc
) ) lParam
= (LPARAM
)MapSL(lParam
);
2073 case CB_INSERTSTRING
:
2074 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_INSERTSTRING
, wParam
, lParam
) :
2075 SendMessageA(lphc
->hWndLBox
, LB_INSERTSTRING
, wParam
, lParam
);
2076 case CB_DELETESTRING16
:
2077 case CB_DELETESTRING
:
2078 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_DELETESTRING
, wParam
, 0) :
2079 SendMessageA(lphc
->hWndLBox
, LB_DELETESTRING
, wParam
, 0);
2080 case CB_SELECTSTRING16
:
2081 wParam
= (INT
)(INT16
)wParam
;
2082 if( CB_HASSTRINGS(lphc
) ) lParam
= (LPARAM
)MapSL(lParam
);
2084 case CB_SELECTSTRING
:
2085 return COMBO_SelectString(lphc
, (INT
)wParam
, lParam
, unicode
);
2086 case CB_FINDSTRING16
:
2087 wParam
= (INT
)(INT16
)wParam
;
2088 if( CB_HASSTRINGS(lphc
) ) lParam
= (LPARAM
)MapSL(lParam
);
2091 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_FINDSTRING
, wParam
, lParam
) :
2092 SendMessageA(lphc
->hWndLBox
, LB_FINDSTRING
, wParam
, lParam
);
2093 case CB_FINDSTRINGEXACT16
:
2094 wParam
= (INT
)(INT16
)wParam
;
2095 if( CB_HASSTRINGS(lphc
) ) lParam
= (LPARAM
)MapSL(lParam
);
2097 case CB_FINDSTRINGEXACT
:
2098 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_FINDSTRINGEXACT
, wParam
, lParam
) :
2099 SendMessageA(lphc
->hWndLBox
, LB_FINDSTRINGEXACT
, wParam
, lParam
);
2100 case CB_SETITEMHEIGHT16
:
2101 wParam
= (INT
)(INT16
)wParam
; /* signed integer */
2103 case CB_SETITEMHEIGHT
:
2104 return COMBO_SetItemHeight( lphc
, (INT
)wParam
, (INT
)lParam
);
2105 case CB_GETITEMHEIGHT16
:
2106 wParam
= (INT
)(INT16
)wParam
;
2108 case CB_GETITEMHEIGHT
:
2109 if( (INT
)wParam
>= 0 ) /* listbox item */
2110 return SendMessageW(lphc
->hWndLBox
, LB_GETITEMHEIGHT
, wParam
, 0);
2111 return CBGetTextAreaHeight(hwnd
, lphc
);
2112 case CB_RESETCONTENT16
:
2113 case CB_RESETCONTENT
:
2114 SendMessageW(lphc
->hWndLBox
, LB_RESETCONTENT
, 0, 0);
2115 if( (lphc
->wState
& CBF_EDIT
) && CB_HASSTRINGS(lphc
) )
2117 static const WCHAR empty_stringW
[] = { 0 };
2118 SendMessageW(lphc
->hWndEdit
, WM_SETTEXT
, 0, (LPARAM
)empty_stringW
);
2121 InvalidateRect(CB_HWND(lphc
), NULL
, TRUE
);
2123 case CB_INITSTORAGE
:
2124 return SendMessageW(lphc
->hWndLBox
, LB_INITSTORAGE
, wParam
, lParam
);
2125 case CB_GETHORIZONTALEXTENT
:
2126 return SendMessageW(lphc
->hWndLBox
, LB_GETHORIZONTALEXTENT
, 0, 0);
2127 case CB_SETHORIZONTALEXTENT
:
2128 return SendMessageW(lphc
->hWndLBox
, LB_SETHORIZONTALEXTENT
, wParam
, 0);
2129 case CB_GETTOPINDEX
:
2130 return SendMessageW(lphc
->hWndLBox
, LB_GETTOPINDEX
, 0, 0);
2132 return SendMessageW(lphc
->hWndLBox
, LB_GETLOCALE
, 0, 0);
2134 return SendMessageW(lphc
->hWndLBox
, LB_SETLOCALE
, wParam
, 0);
2135 case CB_GETDROPPEDWIDTH
:
2136 if( lphc
->droppedWidth
)
2137 return lphc
->droppedWidth
;
2138 return lphc
->droppedRect
.right
- lphc
->droppedRect
.left
;
2139 case CB_SETDROPPEDWIDTH
:
2140 if( (CB_GETTYPE(lphc
) != CBS_SIMPLE
) &&
2141 (INT
)wParam
< 32768 ) lphc
->droppedWidth
= (INT
)wParam
;
2143 case CB_GETDROPPEDCONTROLRECT16
:
2144 lParam
= (LPARAM
)MapSL(lParam
);
2148 CBGetDroppedControlRect( lphc
, &r
);
2149 CONV_RECT32TO16( &r
, (LPRECT16
)lParam
);
2152 case CB_GETDROPPEDCONTROLRECT
:
2153 if( lParam
) CBGetDroppedControlRect(lphc
, (LPRECT
)lParam
);
2155 case CB_GETDROPPEDSTATE16
:
2156 case CB_GETDROPPEDSTATE
:
2157 return (lphc
->wState
& CBF_DROPPED
) ? TRUE
: FALSE
;
2159 lParam
= (LPARAM
)MapSL(lParam
);
2163 if(message
== CB_DIR
) message
= LB_DIR
;
2164 return unicode
? SendMessageW(lphc
->hWndLBox
, message
, wParam
, lParam
) :
2165 SendMessageA(lphc
->hWndLBox
, message
, wParam
, lParam
);
2167 case CB_SHOWDROPDOWN16
:
2168 case CB_SHOWDROPDOWN
:
2169 if( CB_GETTYPE(lphc
) != CBS_SIMPLE
)
2173 if( !(lphc
->wState
& CBF_DROPPED
) )
2177 if( lphc
->wState
& CBF_DROPPED
)
2178 CBRollUp( lphc
, FALSE
, TRUE
);
2183 return SendMessageW(lphc
->hWndLBox
, LB_GETCOUNT
, 0, 0);
2184 case CB_GETCURSEL16
:
2186 return SendMessageW(lphc
->hWndLBox
, LB_GETCURSEL
, 0, 0);
2187 case CB_SETCURSEL16
:
2188 wParam
= (INT
)(INT16
)wParam
;
2191 lParam
= SendMessageW(lphc
->hWndLBox
, LB_SETCURSEL
, wParam
, 0);
2193 SendMessageW(lphc
->hWndLBox
, LB_SETTOPINDEX
, wParam
, 0);
2195 /* no LBN_SELCHANGE in this case, update manually */
2196 if( lphc
->wState
& CBF_EDIT
)
2197 CBUpdateEdit( lphc
, (INT
)wParam
);
2199 InvalidateRect(CB_HWND(lphc
), &lphc
->textRect
, TRUE
);
2200 lphc
->wState
&= ~CBF_SELCHANGE
;
2202 case CB_GETLBTEXT16
:
2203 wParam
= (INT
)(INT16
)wParam
;
2204 lParam
= (LPARAM
)MapSL(lParam
);
2207 return unicode
? SendMessageW(lphc
->hWndLBox
, LB_GETTEXT
, wParam
, lParam
) :
2208 SendMessageA(lphc
->hWndLBox
, LB_GETTEXT
, wParam
, lParam
);
2209 case CB_GETLBTEXTLEN16
:
2210 wParam
= (INT
)(INT16
)wParam
;
2212 case CB_GETLBTEXTLEN
:
2213 return SendMessageW(lphc
->hWndLBox
, LB_GETTEXTLEN
, wParam
, 0);
2214 case CB_GETITEMDATA16
:
2215 wParam
= (INT
)(INT16
)wParam
;
2217 case CB_GETITEMDATA
:
2218 return SendMessageW(lphc
->hWndLBox
, LB_GETITEMDATA
, wParam
, 0);
2219 case CB_SETITEMDATA16
:
2220 wParam
= (INT
)(INT16
)wParam
;
2222 case CB_SETITEMDATA
:
2223 return SendMessageW(lphc
->hWndLBox
, LB_SETITEMDATA
, wParam
, lParam
);
2224 case CB_GETEDITSEL16
:
2225 wParam
= lParam
= 0; /* just in case */
2228 /* Edit checks passed parameters itself */
2229 if( lphc
->wState
& CBF_EDIT
)
2230 return SendMessageW(lphc
->hWndEdit
, EM_GETSEL
, wParam
, lParam
);
2232 case CB_SETEDITSEL16
:
2234 if( lphc
->wState
& CBF_EDIT
)
2235 return SendMessageW(lphc
->hWndEdit
, EM_SETSEL
,
2236 (INT
)(INT16
)LOWORD(lParam
), (INT
)(INT16
)HIWORD(lParam
) );
2238 case CB_SETEXTENDEDUI16
:
2239 case CB_SETEXTENDEDUI
:
2240 if( CB_GETTYPE(lphc
) == CBS_SIMPLE
)
2243 lphc
->wState
|= CBF_EUI
;
2244 else lphc
->wState
&= ~CBF_EUI
;
2246 case CB_GETEXTENDEDUI16
:
2247 case CB_GETEXTENDEDUI
:
2248 return (lphc
->wState
& CBF_EUI
) ? TRUE
: FALSE
;
2251 if (message
>= WM_USER
)
2252 WARN("unknown msg WM_USER+%04x wp=%04x lp=%08lx\n",
2253 message
- WM_USER
, wParam
, lParam
);
2256 return unicode
? DefWindowProcW(hwnd
, message
, wParam
, lParam
) :
2257 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
2262 /***********************************************************************
2265 * This is just a wrapper for the real ComboWndProc which locks/unlocks
2268 static LRESULT WINAPI
ComboWndProcA( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2270 WND
* pWnd
= WIN_FindWndPtr(hwnd
);
2271 LRESULT retvalue
= ComboWndProc_locked(pWnd
, message
, wParam
, lParam
, FALSE
);
2273 WIN_ReleaseWndPtr(pWnd
);
2277 /***********************************************************************
2280 static LRESULT WINAPI
ComboWndProcW( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2282 WND
* pWnd
= WIN_FindWndPtr(hwnd
);
2283 LRESULT retvalue
= ComboWndProc_locked(pWnd
, message
, wParam
, lParam
, TRUE
);
2285 WIN_ReleaseWndPtr(pWnd
);