2 * AutoComplete interfaces implementation.
4 * Copyright 2004 Maxime Bellengé <maxime.bellenge@laposte.net>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 - ACO_AUTOAPPEND style
24 - ACO_AUTOSUGGEST style
25 - ACO_UPDOWNKEYDROPSLIST style
27 - Handle pwzsRegKeyPath and pwszQuickComplete in Init
30 - implement ACO_SEARCH style
31 - implement ACO_FILTERPREFIXES style
32 - implement ACO_USETAB style
33 - implement ACO_RTLREADING style
41 #include "wine/debug.h"
45 #include "undocshell.h"
56 #include "wine/unicode.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
62 IAutoCompleteVtbl
*lpVtbl
;
63 IAutoComplete2Vtbl
*lpvtblAutoComplete2
;
68 WNDPROC wpOrigEditProc
;
69 WNDPROC wpOrigLBoxProc
;
73 AUTOCOMPLETEOPTIONS options
;
76 static struct IAutoCompleteVtbl acvt
;
77 static struct IAutoComplete2Vtbl ac2vt
;
79 #define _IAutoComplete2_Offset ((int)(&(((IAutoCompleteImpl*)0)->lpvtblAutoComplete2)))
80 #define _ICOM_THIS_From_IAutoComplete2(class, name) class* This = (class*)(((char*)name)-_IAutoComplete2_Offset);
83 converts This to a interface pointer
85 #define _IUnknown_(This) (IUnknown*)&(This->lpVtbl)
86 #define _IAutoComplete2_(This) (IAutoComplete2*)&(This->lpvtblAutoComplete2)
88 static LRESULT APIENTRY
ACEditSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
89 static LRESULT APIENTRY
ACLBoxSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
91 /**************************************************************************
92 * IAutoComplete_Constructor
94 HRESULT WINAPI
IAutoComplete_Constructor(IUnknown
* pUnkOuter
, REFIID riid
, LPVOID
* ppv
)
96 IAutoCompleteImpl
*lpac
;
98 if (pUnkOuter
&& !IsEqualIID (riid
, &IID_IUnknown
))
99 return CLASS_E_NOAGGREGATION
;
101 lpac
= (IAutoCompleteImpl
*)HeapAlloc(GetProcessHeap(),
102 HEAP_ZERO_MEMORY
, sizeof(IAutoCompleteImpl
));
104 return E_OUTOFMEMORY
;
107 lpac
->lpVtbl
= &acvt
;
108 lpac
->lpvtblAutoComplete2
= &ac2vt
;
109 lpac
->enabled
= TRUE
;
110 lpac
->enumstr
= NULL
;
111 lpac
->options
= ACO_AUTOAPPEND
;
112 lpac
->wpOrigEditProc
= NULL
;
113 lpac
->hwndListBox
= NULL
;
114 lpac
->txtbackup
= NULL
;
115 lpac
->quickComplete
= NULL
;
117 if (!SUCCEEDED (IUnknown_QueryInterface (_IUnknown_ (lpac
), riid
, ppv
))) {
118 IUnknown_Release (_IUnknown_ (lpac
));
119 return E_NOINTERFACE
;
122 TRACE("-- (%p)->\n",lpac
);
127 /**************************************************************************
128 * AutoComplete_QueryInterface
130 static HRESULT WINAPI
IAutoComplete_fnQueryInterface(
131 IAutoComplete
* iface
,
135 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)iface
;
137 TRACE("(%p)->(\n\tIID:\t%s,%p)\n", This
, shdebugstr_guid(riid
), ppvObj
);
140 if(IsEqualIID(riid
, &IID_IUnknown
))
144 else if(IsEqualIID(riid
, &IID_IAutoComplete
))
146 *ppvObj
= (IAutoComplete
*)This
;
148 else if(IsEqualIID(riid
, &IID_IAutoComplete2
))
150 *ppvObj
= _IAutoComplete2_ (This
);
155 IAutoComplete_AddRef((IAutoComplete
*)*ppvObj
);
156 TRACE("-- Interface: (%p)->(%p)\n", ppvObj
, *ppvObj
);
159 TRACE("-- Interface: E_NOINTERFACE\n");
160 return E_NOINTERFACE
;
163 /******************************************************************************
164 * IAutoComplete_fnAddRef
166 static ULONG WINAPI
IAutoComplete_fnAddRef(
167 IAutoComplete
* iface
)
169 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)iface
;
171 TRACE("(%p)->(%lu)\n",This
,This
->ref
);
172 return ++(This
->ref
);
175 /******************************************************************************
176 * IAutoComplete_fnRelease
178 static ULONG WINAPI
IAutoComplete_fnRelease(
179 IAutoComplete
* iface
)
181 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)iface
;
183 TRACE("(%p)->(%lu)\n",This
,This
->ref
);
185 if (!--(This
->ref
)) {
186 TRACE(" destroying IAutoComplete(%p)\n",This
);
187 if (This
->quickComplete
)
188 HeapFree(GetProcessHeap(), 0, This
->quickComplete
);
190 HeapFree(GetProcessHeap(), 0, This
->txtbackup
);
191 if (This
->hwndListBox
)
192 DestroyWindow(This
->hwndListBox
);
194 IEnumString_Release(This
->enumstr
);
195 HeapFree(GetProcessHeap(), 0, This
);
201 /******************************************************************************
202 * IAutoComplete_fnEnable
204 static HRESULT WINAPI
IAutoComplete_fnEnable(
205 IAutoComplete
* iface
,
208 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)iface
;
212 TRACE("(%p)->(%s)\n", This
, (fEnable
)?"true":"false");
214 This
->enabled
= fEnable
;
219 /******************************************************************************
220 * IAutoComplete_fnInit
222 static HRESULT WINAPI
IAutoComplete_fnInit(
223 IAutoComplete
* iface
,
226 LPCOLESTR pwzsRegKeyPath
,
227 LPCOLESTR pwszQuickComplete
)
229 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)iface
;
230 static const WCHAR lbName
[] = {'L','i','s','t','B','o','x',0};
232 TRACE("(%p)->(0x%08lx, %p, %s, %s)\n",
233 This
, (long)hwndEdit
, punkACL
, debugstr_w(pwzsRegKeyPath
), debugstr_w(pwszQuickComplete
));
235 if (This
->options
& ACO_AUTOSUGGEST
) TRACE(" ACO_AUTOSUGGEST\n");
236 if (This
->options
& ACO_AUTOAPPEND
) TRACE(" ACO_AUTOAPPEND\n");
237 if (This
->options
& ACO_SEARCH
) FIXME(" ACO_SEARCH not supported\n");
238 if (This
->options
& ACO_FILTERPREFIXES
) FIXME(" ACO_FILTERPREFIXES not supported\n");
239 if (This
->options
& ACO_USETAB
) FIXME(" ACO_USETAB not supported\n");
240 if (This
->options
& ACO_UPDOWNKEYDROPSLIST
) TRACE(" ACO_UPDOWNKEYDROPSLIST\n");
241 if (This
->options
& ACO_RTLREADING
) FIXME(" ACO_RTLREADING not supported\n");
243 This
->hwndEdit
= hwndEdit
;
245 if (!SUCCEEDED (IUnknown_QueryInterface (punkACL
, &IID_IEnumString
, (LPVOID
*)&This
->enumstr
))) {
246 TRACE("No IEnumString interface\n");
247 return E_NOINTERFACE
;
250 This
->wpOrigEditProc
= (WNDPROC
) SetWindowLongPtrW( hwndEdit
, GWLP_WNDPROC
, (LONG_PTR
) ACEditSubclassProc
);
251 SetWindowLongPtrW( hwndEdit
, GWLP_USERDATA
, (LONG_PTR
)This
);
253 if (This
->options
& ACO_AUTOSUGGEST
) {
256 hwndParent
= GetParent(This
->hwndEdit
);
258 /* FIXME : The listbox should be resizable with the mouse. WS_THICKFRAME looks ugly */
259 This
->hwndListBox
= CreateWindowExW(0, lbName
, NULL
,
260 WS_BORDER
| WS_CHILD
| WS_VSCROLL
| LBS_HASSTRINGS
| LBS_NOTIFY
| LBS_NOINTEGRALHEIGHT
,
261 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
263 (HINSTANCE
)GetWindowLongA( hwndParent
, GWL_HINSTANCE
), NULL
);
265 if (This
->hwndListBox
) {
266 This
->wpOrigLBoxProc
= (WNDPROC
) SetWindowLongPtrW( This
->hwndListBox
, GWLP_WNDPROC
, (LONG_PTR
) ACLBoxSubclassProc
);
267 SetWindowLongPtrW( This
->hwndListBox
, GWLP_USERDATA
, (LONG_PTR
)This
);
271 if (pwzsRegKeyPath
) {
273 WCHAR result
[MAX_PATH
];
279 /* pwszRegKeyPath contains the key as well as the value, so we split */
280 key
= (WCHAR
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (lstrlenW(pwzsRegKeyPath
)+1)*sizeof(WCHAR
));
281 strcpyW(key
, pwzsRegKeyPath
);
282 value
= strrchrW(key
, '\\');
285 /* Now value contains the value and buffer the key */
286 res
= RegOpenKeyExW(HKEY_CURRENT_USER
, key
, 0, KEY_READ
, &hKey
);
287 if (res
!= ERROR_SUCCESS
) {
288 /* if the key is not found, MSDN states we must seek in HKEY_LOCAL_MACHINE */
289 res
= RegOpenKeyExW(HKEY_LOCAL_MACHINE
, key
, 0, KEY_READ
, &hKey
);
291 if (res
== ERROR_SUCCESS
) {
292 res
= RegQueryValueW(hKey
, value
, result
, &len
);
293 if (res
== ERROR_SUCCESS
) {
294 This
->quickComplete
= (WCHAR
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
*sizeof(WCHAR
));
295 strcpyW(This
->quickComplete
, result
);
299 HeapFree(GetProcessHeap(), 0, key
);
302 if ((pwszQuickComplete
) && (!This
->quickComplete
)) {
303 This
->quickComplete
= (WCHAR
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (lstrlenW(pwszQuickComplete
)+1)*sizeof(WCHAR
));
304 lstrcpyW(This
->quickComplete
, pwszQuickComplete
);
310 /**************************************************************************
311 * IAutoComplete_fnVTable
313 static IAutoCompleteVtbl acvt
=
315 IAutoComplete_fnQueryInterface
,
316 IAutoComplete_fnAddRef
,
317 IAutoComplete_fnRelease
,
318 IAutoComplete_fnInit
,
319 IAutoComplete_fnEnable
,
322 /**************************************************************************
323 * AutoComplete2_QueryInterface
325 static HRESULT WINAPI
IAutoComplete2_fnQueryInterface(
326 IAutoComplete2
* iface
,
330 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
, iface
);
332 TRACE ("(%p)->(%s,%p)\n", This
, shdebugstr_guid (riid
), ppvObj
);
334 return IAutoComplete_QueryInterface((IAutoComplete
*)This
, riid
, ppvObj
);
337 /******************************************************************************
338 * IAutoComplete2_fnAddRef
340 static ULONG WINAPI
IAutoComplete2_fnAddRef(
341 IAutoComplete2
* iface
)
343 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
,iface
);
345 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
347 return IAutoComplete2_AddRef((IAutoComplete
*)This
);
350 /******************************************************************************
351 * IAutoComplete2_fnRelease
353 static ULONG WINAPI
IAutoComplete2_fnRelease(
354 IAutoComplete2
* iface
)
356 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
,iface
);
358 TRACE ("(%p)->(count=%lu)\n", This
, This
->ref
);
360 return IAutoComplete_Release((IAutoComplete
*)This
);
363 /******************************************************************************
364 * IAutoComplete2_fnEnable
366 static HRESULT WINAPI
IAutoComplete2_fnEnable(
367 IAutoComplete2
* iface
,
370 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
, iface
);
372 TRACE ("(%p)->(%s)\n", This
, (fEnable
)?"true":"false");
374 return IAutoComplete_Enable((IAutoComplete
*)This
, fEnable
);
377 /******************************************************************************
378 * IAutoComplete2_fnInit
380 static HRESULT WINAPI
IAutoComplete2_fnInit(
381 IAutoComplete2
* iface
,
384 LPCOLESTR pwzsRegKeyPath
,
385 LPCOLESTR pwszQuickComplete
)
387 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
, iface
);
389 TRACE("(%p)\n", This
);
391 return IAutoComplete_Init((IAutoComplete
*)This
, hwndEdit
, punkACL
, pwzsRegKeyPath
, pwszQuickComplete
);
394 /**************************************************************************
395 * IAutoComplete_fnGetOptions
397 static HRESULT WINAPI
IAutoComplete2_fnGetOptions(
398 IAutoComplete2
* iface
,
403 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
, iface
);
405 TRACE("(%p) -> (%p)\n", This
, pdwFlag
);
407 *pdwFlag
= This
->options
;
412 /**************************************************************************
413 * IAutoComplete_fnSetOptions
415 static HRESULT WINAPI
IAutoComplete2_fnSetOptions(
416 IAutoComplete2
* iface
,
421 _ICOM_THIS_From_IAutoComplete2(IAutoCompleteImpl
, iface
);
423 TRACE("(%p) -> (0x%lx)\n", This
, dwFlag
);
425 This
->options
= dwFlag
;
430 /**************************************************************************
431 * IAutoComplete2_fnVTable
433 static IAutoComplete2Vtbl ac2vt
=
435 IAutoComplete2_fnQueryInterface
,
436 IAutoComplete2_fnAddRef
,
437 IAutoComplete2_fnRelease
,
438 IAutoComplete2_fnInit
,
439 IAutoComplete2_fnEnable
,
441 IAutoComplete2_fnSetOptions
,
442 IAutoComplete2_fnGetOptions
,
446 Window procedure for autocompletion
448 static LRESULT APIENTRY
ACEditSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
450 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
456 BOOL control
, filled
, displayall
= FALSE
;
457 int cpt
, height
, sel
;
459 if (!This
->enabled
) return CallWindowProcW(This
->wpOrigEditProc
, hwnd
, uMsg
, wParam
, lParam
);
463 case CB_SHOWDROPDOWN
:
464 ShowWindow(This
->hwndListBox
, SW_HIDE
);
467 if ((This
->options
&& ACO_AUTOSUGGEST
) &&
468 ((HWND
)wParam
!= This
->hwndListBox
))
470 ShowWindow(This
->hwndListBox
, SW_HIDE
);
475 GetWindowTextW( hwnd
, (LPWSTR
)hwndText
, 255);
479 /* If quickComplete is set and control is pressed, replace the string */
480 control
= GetKeyState(VK_CONTROL
) & 0x8000;
481 if (control
&& This
->quickComplete
) {
482 hwndQCText
= (WCHAR
*)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
483 (lstrlenW(This
->quickComplete
)+lstrlenW(hwndText
))*sizeof(WCHAR
));
484 sel
= sprintfW(hwndQCText
, This
->quickComplete
, hwndText
);
485 SendMessageW(hwnd
, WM_SETTEXT
, 0, (LPARAM
)hwndQCText
);
486 SendMessageW(hwnd
, EM_SETSEL
, 0, sel
);
487 HeapFree(GetProcessHeap(), 0, hwndQCText
);
490 ShowWindow(This
->hwndListBox
, SW_HIDE
);
498 - if the listbox is not visible, displays it
499 with all the entries if the style ACO_UPDOWNKEYDROPSLIST
500 is present but does not select anything.
501 - if the listbox is visible, change the selection
503 if ( (This
->options
& (ACO_AUTOSUGGEST
| ACO_UPDOWNKEYDROPSLIST
))
504 && (!IsWindowVisible(This
->hwndListBox
) && (! *hwndText
)) )
506 /* We must dispays all the entries */
509 if (IsWindowVisible(This
->hwndListBox
)) {
512 count
= SendMessageW(This
->hwndListBox
, LB_GETCOUNT
, 0, 0);
513 /* Change the selection */
514 sel
= SendMessageW(This
->hwndListBox
, LB_GETCURSEL
, 0, 0);
516 sel
= ((sel
-1)<0)?count
-1:sel
-1;
518 sel
= ((sel
+1)>= count
)?-1:sel
+1;
519 SendMessageW(This
->hwndListBox
, LB_SETCURSEL
, sel
, 0);
524 len
= SendMessageW(This
->hwndListBox
, LB_GETTEXTLEN
, sel
, (LPARAM
)NULL
);
525 msg
= (WCHAR
*) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (len
+1)*sizeof(WCHAR
));
526 SendMessageW(This
->hwndListBox
, LB_GETTEXT
, sel
, (LPARAM
)msg
);
527 SendMessageW(hwnd
, WM_SETTEXT
, 0, (LPARAM
)msg
);
528 SendMessageW(hwnd
, EM_SETSEL
, lstrlenW(msg
), lstrlenW(msg
));
529 HeapFree(GetProcessHeap(), 0, msg
);
531 SendMessageW(hwnd
, WM_SETTEXT
, 0, (LPARAM
)This
->txtbackup
);
532 SendMessageW(hwnd
, EM_SETSEL
, lstrlenW(This
->txtbackup
), lstrlenW(This
->txtbackup
));
540 if ((! *hwndText
) && (This
->options
& ACO_AUTOSUGGEST
)) {
541 ShowWindow(This
->hwndListBox
, SW_HIDE
);
542 return CallWindowProcW(This
->wpOrigEditProc
, hwnd
, uMsg
, wParam
, lParam
);
544 if (This
->options
& ACO_AUTOAPPEND
) {
546 SendMessageW(hwnd
, EM_GETSEL
, (WPARAM
)&b
, (LPARAM
)NULL
);
548 hwndText
[b
-1] = '\0';
551 SetWindowTextW(hwnd
, hwndText
);
559 SendMessageW(This
->hwndListBox
, LB_RESETCONTENT
, 0, 0);
561 HeapFree(GetProcessHeap(), 0, This
->txtbackup
);
562 This
->txtbackup
= (WCHAR
*) HeapAlloc(GetProcessHeap(),
563 HEAP_ZERO_MEMORY
, (lstrlenW(hwndText
)+1)*sizeof(WCHAR
));
564 lstrcpyW(This
->txtbackup
, hwndText
);
566 /* Returns if there is no text to search and we doesn't want to display all the entries */
567 if ((!displayall
) && (! *hwndText
) )
570 IEnumString_Reset(This
->enumstr
);
573 hr
= IEnumString_Next(This
->enumstr
, 1, &strs
, NULL
);
577 if ((LPWSTR
)strstrW(strs
, hwndText
) == strs
) {
579 if (This
->options
& ACO_AUTOAPPEND
) {
580 SetWindowTextW(hwnd
, strs
);
581 SendMessageW(hwnd
, EM_SETSEL
, lstrlenW(hwndText
), lstrlenW(strs
));
585 if (This
->options
& ACO_AUTOSUGGEST
) {
586 SendMessageW(This
->hwndListBox
, LB_ADDSTRING
, 0, (LPARAM
)strs
);
593 if (This
->options
& ACO_AUTOSUGGEST
) {
595 height
= SendMessageW(This
->hwndListBox
, LB_GETITEMHEIGHT
, 0, 0);
596 SendMessageW(This
->hwndListBox
, LB_CARETOFF
, 0, 0);
597 GetWindowRect(hwnd
, &r
);
598 SetParent(This
->hwndListBox
, HWND_DESKTOP
);
599 /* It seems that Windows XP displays 7 lines at most
600 and otherwise displays a vertical scroll bar */
601 SetWindowPos(This
->hwndListBox
, HWND_TOP
,
602 r
.left
, r
.bottom
+ 1, r
.right
- r
.left
, min(height
* 7, height
*(cpt
+1)),
605 ShowWindow(This
->hwndListBox
, SW_HIDE
);
611 return CallWindowProcW(This
->wpOrigEditProc
, hwnd
, uMsg
, wParam
, lParam
);
618 static LRESULT APIENTRY
ACLBoxSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
620 IAutoCompleteImpl
*This
= (IAutoCompleteImpl
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
626 sel
= SendMessageW(hwnd
, LB_ITEMFROMPOINT
, 0, lParam
);
627 SendMessageW(hwnd
, LB_SETCURSEL
, (WPARAM
)sel
, (LPARAM
)0);
630 len
= SendMessageW(This
->hwndListBox
, LB_GETTEXTLEN
, sel
, (LPARAM
)NULL
);
631 msg
= (WCHAR
*) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (len
+1)*sizeof(WCHAR
));
632 sel
= (INT
)SendMessageW(hwnd
, LB_GETCURSEL
, 0, 0);
633 SendMessageW(hwnd
, LB_GETTEXT
, sel
, (LPARAM
)msg
);
634 SendMessageW(This
->hwndEdit
, WM_SETTEXT
, 0, (LPARAM
)msg
);
635 SendMessageW(This
->hwndEdit
, EM_SETSEL
, 0, lstrlenW(msg
));
636 ShowWindow(hwnd
, SW_HIDE
);
637 HeapFree(GetProcessHeap(), 0, msg
);
640 return CallWindowProcW(This
->wpOrigLBoxProc
, hwnd
, uMsg
, wParam
, lParam
);