* Sync up to trunk head (r65270).
[reactos.git] / dll / win32 / shell32 / folders / CFontsFolder.h
1 /*
2 * Fonts folder
3 *
4 * Copyright 2008 Johannes Anderwald <johannes.anderwald@reactos.org>
5 * Copyright 2009 Andrew Hill
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #ifndef _SHFLDR_FONTS_H_
23 #define _SHFLDR_FONTS_H_
24
25 class CFontsFolder :
26 public CComCoClass<CFontsFolder, &CLSID_FontsFolderShortcut>,
27 public CComObjectRootEx<CComMultiThreadModelNoCS>,
28 public IShellFolder2,
29 public IPersistFolder2
30 {
31 private:
32 CComPtr<IShellFolder> m_pisfInner;
33 CComPtr<IShellFolder2> m_pisf2Inner;
34
35 /* both paths are parsible from the desktop */
36 LPITEMIDLIST pidlRoot; /* absolute pidl */
37 LPCITEMIDLIST apidl; /* currently focused font item */
38 public:
39 CFontsFolder();
40 ~CFontsFolder();
41 HRESULT WINAPI FinalConstruct();
42
43 // IShellFolder
44 virtual HRESULT WINAPI ParseDisplayName(HWND hwndOwner, LPBC pbc, LPOLESTR lpszDisplayName, DWORD *pchEaten, PIDLIST_RELATIVE *ppidl, DWORD *pdwAttributes);
45 virtual HRESULT WINAPI EnumObjects(HWND hwndOwner, DWORD dwFlags, LPENUMIDLIST *ppEnumIDList);
46 virtual HRESULT WINAPI BindToObject(PCUIDLIST_RELATIVE pidl, LPBC pbcReserved, REFIID riid, LPVOID *ppvOut);
47 virtual HRESULT WINAPI BindToStorage(PCUIDLIST_RELATIVE pidl, LPBC pbcReserved, REFIID riid, LPVOID *ppvOut);
48 virtual HRESULT WINAPI CompareIDs(LPARAM lParam, PCUIDLIST_RELATIVE pidl1, PCUIDLIST_RELATIVE pidl2);
49 virtual HRESULT WINAPI CreateViewObject(HWND hwndOwner, REFIID riid, LPVOID *ppvOut);
50 virtual HRESULT WINAPI GetAttributesOf(UINT cidl, PCUITEMID_CHILD_ARRAY apidl, DWORD *rgfInOut);
51 virtual HRESULT WINAPI GetUIObjectOf(HWND hwndOwner, UINT cidl, PCUITEMID_CHILD_ARRAY apidl, REFIID riid, UINT * prgfInOut, LPVOID * ppvOut);
52 virtual HRESULT WINAPI GetDisplayNameOf(PCUITEMID_CHILD pidl, DWORD dwFlags, LPSTRRET strRet);
53 virtual HRESULT WINAPI SetNameOf(HWND hwndOwner, PCUITEMID_CHILD pidl, LPCOLESTR lpName, DWORD dwFlags, PITEMID_CHILD *pPidlOut);
54
55 /* ShellFolder2 */
56 virtual HRESULT WINAPI GetDefaultSearchGUID(GUID *pguid);
57 virtual HRESULT WINAPI EnumSearches(IEnumExtraSearch **ppenum);
58 virtual HRESULT WINAPI GetDefaultColumn(DWORD dwRes, ULONG *pSort, ULONG *pDisplay);
59 virtual HRESULT WINAPI GetDefaultColumnState(UINT iColumn, DWORD *pcsFlags);
60 virtual HRESULT WINAPI GetDetailsEx(PCUITEMID_CHILD pidl, const SHCOLUMNID *pscid, VARIANT *pv);
61 virtual HRESULT WINAPI GetDetailsOf(PCUITEMID_CHILD pidl, UINT iColumn, SHELLDETAILS *psd);
62 virtual HRESULT WINAPI MapColumnToSCID(UINT column, SHCOLUMNID *pscid);
63
64 // IPersist
65 virtual HRESULT WINAPI GetClassID(CLSID *lpClassId);
66
67 // IPersistFolder
68 virtual HRESULT WINAPI Initialize(LPCITEMIDLIST pidl);
69
70 // IPersistFolder2
71 virtual HRESULT WINAPI GetCurFolder(LPITEMIDLIST *pidl);
72
73 DECLARE_REGISTRY_RESOURCEID(IDR_FONTSFOLDERSHORTCUT)
74 DECLARE_NOT_AGGREGATABLE(CFontsFolder)
75
76 DECLARE_PROTECT_FINAL_CONSTRUCT()
77
78 BEGIN_COM_MAP(CFontsFolder)
79 COM_INTERFACE_ENTRY_IID(IID_IShellFolder2, IShellFolder2)
80 COM_INTERFACE_ENTRY_IID(IID_IShellFolder, IShellFolder)
81 COM_INTERFACE_ENTRY_IID(IID_IPersistFolder, IPersistFolder)
82 COM_INTERFACE_ENTRY_IID(IID_IPersistFolder2, IPersistFolder2)
83 COM_INTERFACE_ENTRY_IID(IID_IPersist, IPersist)
84 END_COM_MAP()
85 };
86
87 #endif /* _SHFLDR_FONTS_H_ */