[EXPLORER] -Fix a parameter of OnCreateTaskbarPage(). Fix by Mark Jansen
[reactos.git] / reactos / base / shell / explorer / precomp.h
1 #ifndef _EXPLORER_PRECOMP__H_
2 #define _EXPLORER_PRECOMP__H_
3
4 #define WIN7_COMPAT_MODE 0
5 #define WIN7_DEBUG_MODE 0
6
7 #if WIN7_DEBUG_MODE && !WIN7_COMPAT_MODE
8 #undef WIN7_COMPAT_MODE
9 #define WIN7_COMPAT_MODE 1
10 #endif
11
12 #include <stdio.h>
13 #include <tchar.h>
14
15 #define WIN32_NO_STATUS
16 #define _INC_WINDOWS
17 #define COM_NO_WINDOWS_H
18
19 #define COBJMACROS
20
21 #include <windef.h>
22 #include <winbase.h>
23 #include <winreg.h>
24 #include <wingdi.h>
25 #include <winnls.h>
26 #include <wincon.h>
27 #include <atlbase.h>
28 #include <atlcom.h>
29 #include <atlwin.h>
30 #include <shellapi.h>
31 #include <shlobj.h>
32 #include <shlwapi.h>
33 #include <uxtheme.h>
34 #include <strsafe.h>
35
36 #include <undocuser.h>
37 #include <shlwapi_undoc.h>
38 #include <shlobj_undoc.h>
39 #include <shlguid_undoc.h>
40 #include <undocshell.h>
41
42 #include <rosctrls.h>
43 #include <shellutils.h>
44
45 #include "tmschema.h"
46 #include "resource.h"
47
48 #include <wine/debug.h>
49
50 WINE_DEFAULT_DEBUG_CHANNEL(explorernew);
51
52 #define ASSERT(cond) \
53 do if (!(cond)) { \
54 Win32DbgPrint(__FILE__, __LINE__, "ASSERTION %s FAILED!\n", #cond); \
55 } while (0)
56
57 extern HINSTANCE hExplorerInstance;
58 extern HANDLE hProcessHeap;
59 extern HKEY hkExplorer;
60
61 /*
62 * explorer.c
63 */
64
65 static inline
66 LONG
67 SetWindowStyle(IN HWND hWnd,
68 IN LONG dwStyleMask,
69 IN LONG dwStyle)
70 {
71 return SHSetWindowBits(hWnd, GWL_STYLE, dwStyleMask, dwStyle);
72 }
73
74 static inline
75 LONG
76 SetWindowExStyle(IN HWND hWnd,
77 IN LONG dwStyleMask,
78 IN LONG dwStyle)
79 {
80 return SHSetWindowBits(hWnd, GWL_EXSTYLE, dwStyleMask, dwStyle);
81 }
82
83 HMENU
84 LoadPopupMenu(IN HINSTANCE hInstance,
85 IN LPCTSTR lpMenuName);
86
87 HMENU
88 FindSubMenu(IN HMENU hMenu,
89 IN UINT uItem,
90 IN BOOL fByPosition);
91
92 BOOL
93 GetCurrentLoggedOnUserName(OUT LPTSTR szBuffer,
94 IN DWORD dwBufferSize);
95
96 BOOL
97 FormatMenuString(IN HMENU hMenu,
98 IN UINT uPosition,
99 IN UINT uFlags,
100 ...);
101
102 BOOL
103 GetExplorerRegValueSet(IN HKEY hKey,
104 IN LPCTSTR lpSubKey,
105 IN LPCTSTR lpValue);
106
107 /*
108 * rshell.c
109 */
110
111 HRESULT WINAPI _CStartMenu_Constructor(REFIID riid, void **ppv);
112 HANDLE WINAPI _SHCreateDesktop(IShellDesktopTray *ShellDesk);
113 BOOL WINAPI _SHDesktopMessageLoop(HANDLE hDesktop);
114 DWORD WINAPI _WinList_Init(void);
115 void WINAPI _ShellDDEInit(BOOL bInit);
116
117 /*
118 * traywnd.c
119 */
120
121 #define TWM_OPENSTARTMENU (WM_USER + 260)
122
123 extern const GUID IID_IShellDesktopTray;
124
125 #define INTERFACE ITrayWindow
126 DECLARE_INTERFACE_(ITrayWindow, IUnknown)
127 {
128 /*** IUnknown methods ***/
129 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
130 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
131 STDMETHOD_(ULONG, Release) (THIS) PURE;
132 /*** ITrayWindow methods ***/
133 STDMETHOD_(HRESULT, Open) (THIS) PURE;
134 STDMETHOD_(HRESULT, Close) (THIS) PURE;
135 STDMETHOD_(HWND, GetHWND) (THIS) PURE;
136 STDMETHOD_(BOOL, IsSpecialHWND) (THIS_ HWND hWnd) PURE;
137 STDMETHOD_(BOOL, IsHorizontal) (THIS) PURE;
138 STDMETHOD_(HFONT, GetCaptionFonts) (THIS_ HFONT *phBoldCaption) PURE;
139 STDMETHOD_(HWND, DisplayProperties) (THIS) PURE;
140 STDMETHOD_(BOOL, ExecContextMenuCmd) (THIS_ UINT uiCmd) PURE;
141 STDMETHOD_(BOOL, Lock) (THIS_ BOOL bLock) PURE;
142 };
143 #undef INTERFACE
144
145 #if defined(COBJMACROS)
146 /*** IUnknown methods ***/
147 #define ITrayWindow_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
148 #define ITrayWindow_AddRef(p) (p)->lpVtbl->AddRef(p)
149 #define ITrayWindow_Release(p) (p)->lpVtbl->Release(p)
150 /*** ITrayWindow methods ***/
151 #define ITrayWindow_Open(p) (p)->lpVtbl->Open(p)
152 #define ITrayWindow_Close(p) (p)->lpVtbl->Close(p)
153 #define ITrayWindow_GetHWND(p) (p)->lpVtbl->GetHWND(p)
154 #define ITrayWindow_IsSpecialHWND(p,a) (p)->lpVtbl->IsSpecialHWND(p,a)
155 #define ITrayWindow_IsHorizontal(p) (p)->lpVtbl->IsHorizontal(p)
156 #define ITrayWindow_GetCaptionFonts(p,a) (p)->lpVtbl->GetCaptionFonts(p,a)
157 #define ITrayWindow_DisplayProperties(p) (p)->lpVtbl->DisplayProperties(p)
158 #define ITrayWindow_ExecContextMenuCmd(p,a) (p)->lpVtbl->ExecContextMenuCmd(p,a)
159 #define ITrayWindow_Lock(p,a) (p)->lpVtbl->Lock(p,a)
160 #endif
161
162 BOOL
163 RegisterTrayWindowClass(VOID);
164
165 VOID
166 UnregisterTrayWindowClass(VOID);
167
168 HRESULT CreateTrayWindow(ITrayWindow ** ppTray);
169
170 VOID
171 TrayProcessMessages(IN OUT ITrayWindow *Tray);
172
173 VOID
174 TrayMessageLoop(IN OUT ITrayWindow *Tray);
175
176 /*
177 * settings.c
178 */
179
180 /* Structure to hold non-default options*/
181 typedef struct _ADVANCED_SETTINGS
182 {
183 BOOL bShowSeconds;
184 } ADVANCED_SETTINGS, *PADVANCED_SETTINGS;
185
186 extern ADVANCED_SETTINGS AdvancedSettings;
187 extern const TCHAR szAdvancedSettingsKey [];
188
189 VOID
190 LoadAdvancedSettings(VOID);
191
192 BOOL
193 SaveSettingDword(IN PCTSTR pszKeyName,
194 IN PCTSTR pszValueName,
195 IN DWORD dwValue);
196
197 /*
198 * shellservice.cpp
199 */
200 HRESULT InitShellServices(HDPA * phdpa);
201 HRESULT ShutdownShellServices(HDPA hdpa);
202
203 /*
204 * startup.cpp
205 */
206
207 int
208 ProcessStartupItems(VOID);
209
210 /*
211 * trayprop.h
212 */
213
214 VOID
215 DisplayTrayProperties(IN HWND hwndOwner);
216
217 /*
218 * desktop.cpp
219 */
220 HANDLE
221 DesktopCreateWindow(IN OUT ITrayWindow *Tray);
222
223 VOID
224 DesktopDestroyShellWindow(IN HANDLE hDesktop);
225
226 /*
227 * taskband.cpp
228 */
229
230 /* Internal Task Band CLSID */
231 extern const GUID CLSID_ITaskBand;
232
233 #define INTERFACE ITaskBand
234 DECLARE_INTERFACE_(ITaskBand, IUnknown)
235 {
236 /*** IUnknown methods ***/
237 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
238 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
239 STDMETHOD_(ULONG, Release) (THIS) PURE;
240 /*** ITaskBand methods ***/
241 STDMETHOD_(HRESULT, GetRebarBandID)(THIS_ DWORD *pdwBandID) PURE;
242 };
243 #undef INTERFACE
244
245 #if defined(COBJMACROS)
246 /*** IUnknown methods ***/
247 #define ITaskBand_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
248 #define ITaskBand_AddRef(p) (p)->lpVtbl->AddRef(p)
249 #define ITaskBand_Release(p) (p)->lpVtbl->Release(p)
250 /*** ITaskBand methods ***/
251 #define ITaskBand_GetRebarBandID(p,a) (p)->lpVtbl->GetRebarBandID(p,a)
252 #endif
253
254 ITaskBand *
255 CreateTaskBand(IN OUT ITrayWindow *Tray);
256
257 /*
258 * tbsite.cpp
259 */
260
261 #define INTERFACE ITrayBandSite
262 DECLARE_INTERFACE_(ITrayBandSite, IUnknown)
263 {
264 /*** IUnknown methods ***/
265 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
266 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
267 STDMETHOD_(ULONG, Release) (THIS) PURE;
268 /*** IBandSiteStreamCallback ***/
269 STDMETHOD_(HRESULT, OnLoad)(THIS_ IStream *pStm, REFIID riid, PVOID *pvObj) PURE;
270 STDMETHOD_(HRESULT, OnSave)(THIS_ IUnknown *pUnk, IStream *pStm) PURE;
271 /*** ITrayBandSite methods ***/
272 STDMETHOD_(HRESULT, IsTaskBand) (THIS_ IUnknown *punk) PURE;
273 STDMETHOD_(HRESULT, ProcessMessage) (THIS_ HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *plResult) PURE;
274 STDMETHOD_(HRESULT, AddContextMenus) (THIS_ HMENU hmenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags, IContextMenu **ppcm) PURE;
275 STDMETHOD_(HRESULT, Lock) (THIS_ BOOL bLock) PURE;
276 };
277 #undef INTERFACE
278
279 #if defined(COBJMACROS)
280 /*** IUnknown methods ***/
281 #define ITrayBandSite_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
282 #define ITrayBandSite_AddRef(p) (p)->lpVtbl->AddRef(p)
283 #define ITrayBandSite_Release(p) (p)->lpVtbl->Release(p)
284 /*** IBandSiteStreamCallback methods ***/
285 #define ITrayBandSite_OnLoad(p,a,b,c) (p)->lpVtbl->OnLoad(p,a,b,c)
286 #define ITrayBandSite_OnSave(p,a,b) (p)->lpVtbl->OnSave(p,a,b)
287 /*** ITrayBandSite methods ***/
288 #define ITrayBandSite_IsTaskBand(p,a) (p)->lpVtbl->IsTaskBand(p,a)
289 #define ITrayBandSite_ProcessMessage(p,a,b,c,d,e) (p)->lpVtbl->ProcessMessage(p,a,b,c,d,e)
290 #define ITrayBandSite_AddContextMenus(p,a,b,c,d,e,f) (p)->lpVtbl->AddContextMenus(p,a,b,c,d,e,f)
291 #define ITrayBandSite_Lock(p,a) (p)->lpVtbl->Lock(p,a)
292 #endif
293
294 ITrayBandSite *
295 CreateTrayBandSite(IN OUT ITrayWindow *Tray,
296 OUT HWND *phWndRebar,
297 OUT HWND *phWndTaskSwitch);
298
299 /*
300 * startmnu.cpp
301 */
302
303 HRESULT StartMenuBtnCtxMenuCreator(ITrayWindow * TrayWnd, IN HWND hWndOwner, IContextMenu ** ppCtxMenu);
304
305 IMenuPopup*
306 CreateStartMenu(IN ITrayWindow *Tray,
307 OUT IMenuBand **ppMenuBand,
308 IN HBITMAP hbmBanner OPTIONAL,
309 IN BOOL bSmallIcons);
310
311 /*
312 * startmnucust.cpp
313 */
314 VOID
315 ShowCustomizeClassic(HINSTANCE, HWND);
316
317 /*
318 * startmnusite.cpp
319 */
320
321 HRESULT
322 CreateStartMenuSite(IN OUT ITrayWindow *Tray, const IID & riid, PVOID * ppv);
323
324 /*
325 * trayntfy.c
326 */
327
328 /* TrayClockWnd */
329 #define TCWM_GETMINIMUMSIZE (WM_USER + 0x100)
330 #define TCWM_UPDATETIME (WM_USER + 0x101)
331
332 /* TrayNotifyWnd */
333 #define TNWM_GETMINIMUMSIZE (WM_USER + 0x100)
334 #define TNWM_UPDATETIME (WM_USER + 0x101)
335 #define TNWM_SHOWCLOCK (WM_USER + 0x102)
336 #define TNWM_SHOWTRAY (WM_USER + 0x103)
337 #define TNWM_CHANGETRAYPOS (WM_USER + 0x104)
338
339 #define NTNWM_REALIGN (0x1)
340
341 class CTrayNotifyWnd;
342
343 BOOL
344 RegisterTrayNotifyWndClass(VOID);
345
346 VOID
347 UnregisterTrayNotifyWndClass(VOID);
348
349 HWND
350 CreateTrayNotifyWnd(IN OUT ITrayWindow *TrayWindow, IN BOOL bHideClock, CTrayNotifyWnd** ppTrayNotify);
351
352 BOOL
353 TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, IN WPARAM wParam, IN LPARAM lParam);
354
355 BOOL
356 TrayNotify_GetClockRect(CTrayNotifyWnd* pTrayNotify, OUT PRECT rcClock);
357
358 /*
359 * taskswnd.c
360 */
361
362 #define TSWM_ENABLEGROUPING (WM_USER + 1)
363 #define TSWM_UPDATETASKBARPOS (WM_USER + 2)
364
365 BOOL
366 RegisterTaskSwitchWndClass(VOID);
367
368 VOID
369 UnregisterTaskSwitchWndClass(VOID);
370
371 HWND
372 CreateTaskSwitchWnd(IN HWND hWndParent,
373 IN OUT ITrayWindow *Tray);
374
375 HRESULT
376 Tray_OnStartMenuDismissed(ITrayWindow* Tray);
377
378 HRESULT
379 IsSameObject(IN IUnknown *punk1, IN IUnknown *punk2);
380
381 #endif /* _EXPLORER_PRECOMP__H_ */