Unicode fixes.
[wine] / include / shldisp.idl
1 /*
2  * COM interfaces for shell objects
3  *
4  * Copyright (C) 2004 Maxime Bellengé
5  *
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.
10  *
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.
15  *
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
19  */
20
21 import "objidl.idl";
22 import "oleidl.idl";
23 import "oaidl.idl";
24 import "shtypes.idl";
25 import "servprov.idl";
26 import "comcat.idl";
27
28 /*****************************************************************************
29  * IAutoComplete interface
30  */
31 [
32     object,
33     uuid(00bb2762-6a77-11d0-a535-00c04fd7d062),
34     pointer_default(unique)
35 ]
36 interface IAutoComplete : IUnknown
37 {
38     typedef IAutoComplete *LPAUTOCOMPLETE;
39
40     HRESULT Init( [in] HWND hwndEdit,
41                   [in] IUnknown *punkACL,
42                   [in] LPCOLESTR pwszRegKeyPath,
43                   [in] LPCOLESTR pwszQuickComplete);
44     
45     HRESULT Enable( [in] BOOL fEnable );
46 }
47
48 /*****************************************************************************
49  * IAutoComplete2 interface
50  */
51 [
52     object,
53     uuid(eac04bc0-3791-11d2-bb95-0060977b464c),
54     pointer_default(unique)
55 ]
56 interface IAutoComplete2 : IAutoComplete
57 {
58     typedef IAutoComplete2 *LPAUTOCOMPLETE2;
59
60     typedef enum _tagAUTOCOMPLETEOPTIONS
61         {
62             ACO_NONE           = 0x00,      /* No AutoComplete */
63             ACO_AUTOSUGGEST    = 0x01,      /* enable autosuggest dropdown */
64             ACO_AUTOAPPEND     = 0x02,      /* enable autoappend */
65             ACO_SEARCH         = 0x04,      /* add search entry to completion list */
66             ACO_FILTERPREFIXES = 0x08,      /* don't match common prefixes (www., http://, etc) */
67             ACO_USETAB         = 0x10,      /* use tab to select autosuggest entries */
68             ACO_UPDOWNKEYDROPSLIST = 0x20,  /* up/down arrow key invokes autosuggest dropdown (if enabled) */
69             ACO_RTLREADING     = 0x40,      /* enable RTL reading order for dropdown */
70         } AUTOCOMPLETEOPTIONS;
71
72     HRESULT SetOptions( [in] DWORD dwFlag);
73
74     HRESULT GetOptions( [out] DWORD *pdwFlag);
75 }
76
77 [
78     object,
79     uuid(9ba05970-f6a8-11cf-a442-00a0c90a8f39),
80     pointer_default(unique)
81 ]
82 interface IFolderViewOC : IDispatch
83 {
84     HRESULT SetFolderView( [in] IDispatch *pdisp );
85 }