[EXPLORER]
[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 LPCWSTR lpMenuName);
86
87 HMENU
88 FindSubMenu(IN HMENU hMenu,
89 IN UINT uItem,
90 IN BOOL fByPosition);
91
92 BOOL
93 GetCurrentLoggedOnUserName(OUT LPWSTR 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 LPCWSTR lpSubKey,
105 IN LPCWSTR 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_(HWND, DisplayProperties) (THIS) PURE;
139 STDMETHOD_(BOOL, ExecContextMenuCmd) (THIS_ UINT uiCmd) PURE;
140 STDMETHOD_(BOOL, Lock) (THIS_ BOOL bLock) PURE;
141 };
142 #undef INTERFACE
143
144 #if defined(COBJMACROS)
145 /*** IUnknown methods ***/
146 #define ITrayWindow_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
147 #define ITrayWindow_AddRef(p) (p)->lpVtbl->AddRef(p)
148 #define ITrayWindow_Release(p) (p)->lpVtbl->Release(p)
149 /*** ITrayWindow methods ***/
150 #define ITrayWindow_Open(p) (p)->lpVtbl->Open(p)
151 #define ITrayWindow_Close(p) (p)->lpVtbl->Close(p)
152 #define ITrayWindow_GetHWND(p) (p)->lpVtbl->GetHWND(p)
153 #define ITrayWindow_IsSpecialHWND(p,a) (p)->lpVtbl->IsSpecialHWND(p,a)
154 #define ITrayWindow_IsHorizontal(p) (p)->lpVtbl->IsHorizontal(p)
155 #define ITrayWindow_DisplayProperties(p) (p)->lpVtbl->DisplayProperties(p)
156 #define ITrayWindow_ExecContextMenuCmd(p,a) (p)->lpVtbl->ExecContextMenuCmd(p,a)
157 #define ITrayWindow_Lock(p,a) (p)->lpVtbl->Lock(p,a)
158 #endif
159
160 BOOL
161 RegisterTrayWindowClass(VOID);
162
163 VOID
164 UnregisterTrayWindowClass(VOID);
165
166 HRESULT CreateTrayWindow(ITrayWindow ** ppTray);
167
168 VOID
169 TrayProcessMessages(IN OUT ITrayWindow *Tray);
170
171 VOID
172 TrayMessageLoop(IN OUT ITrayWindow *Tray);
173
174 /*
175 * settings.c
176 */
177
178 /* Structure to hold non-default options*/
179 typedef struct _ADVANCED_SETTINGS
180 {
181 BOOL bShowSeconds;
182 } ADVANCED_SETTINGS, *PADVANCED_SETTINGS;
183
184 extern ADVANCED_SETTINGS AdvancedSettings;
185 extern const TCHAR szAdvancedSettingsKey [];
186
187 VOID
188 LoadAdvancedSettings(VOID);
189
190 BOOL
191 SaveSettingDword(IN LPCWSTR pszKeyName,
192 IN LPCWSTR pszValueName,
193 IN DWORD dwValue);
194
195 /*
196 * shellservice.cpp
197 */
198 HRESULT InitShellServices(HDPA * phdpa);
199 HRESULT ShutdownShellServices(HDPA hdpa);
200
201 /*
202 * startup.cpp
203 */
204
205 int
206 ProcessStartupItems(VOID);
207
208 /*
209 * trayprop.h
210 */
211
212 VOID
213 DisplayTrayProperties(IN HWND hwndOwner);
214
215 /*
216 * desktop.cpp
217 */
218 HANDLE
219 DesktopCreateWindow(IN OUT ITrayWindow *Tray);
220
221 VOID
222 DesktopDestroyShellWindow(IN HANDLE hDesktop);
223
224
225 /*
226 * notifyiconscust.cpp
227 */
228 VOID
229 ShowCustomizeNotifyIcons(HINSTANCE, HWND);
230
231 /*
232 * taskband.cpp
233 */
234
235 /* Internal Task Band CLSID */
236 extern const GUID CLSID_ITaskBand;
237
238 #define INTERFACE ITaskBand
239 DECLARE_INTERFACE_(ITaskBand, IUnknown)
240 {
241 /*** IUnknown methods ***/
242 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
243 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
244 STDMETHOD_(ULONG, Release) (THIS) PURE;
245 /*** ITaskBand methods ***/
246 STDMETHOD_(HRESULT, GetRebarBandID)(THIS_ DWORD *pdwBandID) PURE;
247 };
248 #undef INTERFACE
249
250 #if defined(COBJMACROS)
251 /*** IUnknown methods ***/
252 #define ITaskBand_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
253 #define ITaskBand_AddRef(p) (p)->lpVtbl->AddRef(p)
254 #define ITaskBand_Release(p) (p)->lpVtbl->Release(p)
255 /*** ITaskBand methods ***/
256 #define ITaskBand_GetRebarBandID(p,a) (p)->lpVtbl->GetRebarBandID(p,a)
257 #endif
258
259 ITaskBand *
260 CreateTaskBand(IN OUT ITrayWindow *Tray);
261
262 /*
263 * tbsite.cpp
264 */
265
266 #define INTERFACE ITrayBandSite
267 DECLARE_INTERFACE_(ITrayBandSite, IUnknown)
268 {
269 /*** IUnknown methods ***/
270 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
271 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
272 STDMETHOD_(ULONG, Release) (THIS) PURE;
273 /*** IBandSiteStreamCallback ***/
274 STDMETHOD_(HRESULT, OnLoad)(THIS_ IStream *pStm, REFIID riid, PVOID *pvObj) PURE;
275 STDMETHOD_(HRESULT, OnSave)(THIS_ IUnknown *pUnk, IStream *pStm) PURE;
276 /*** ITrayBandSite methods ***/
277 STDMETHOD_(HRESULT, IsTaskBand) (THIS_ IUnknown *punk) PURE;
278 STDMETHOD_(HRESULT, ProcessMessage) (THIS_ HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *plResult) PURE;
279 STDMETHOD_(HRESULT, AddContextMenus) (THIS_ HMENU hmenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags, IContextMenu **ppcm) PURE;
280 STDMETHOD_(HRESULT, Lock) (THIS_ BOOL bLock) PURE;
281 };
282 #undef INTERFACE
283
284 #if defined(COBJMACROS)
285 /*** IUnknown methods ***/
286 #define ITrayBandSite_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
287 #define ITrayBandSite_AddRef(p) (p)->lpVtbl->AddRef(p)
288 #define ITrayBandSite_Release(p) (p)->lpVtbl->Release(p)
289 /*** IBandSiteStreamCallback methods ***/
290 #define ITrayBandSite_OnLoad(p,a,b,c) (p)->lpVtbl->OnLoad(p,a,b,c)
291 #define ITrayBandSite_OnSave(p,a,b) (p)->lpVtbl->OnSave(p,a,b)
292 /*** ITrayBandSite methods ***/
293 #define ITrayBandSite_IsTaskBand(p,a) (p)->lpVtbl->IsTaskBand(p,a)
294 #define ITrayBandSite_ProcessMessage(p,a,b,c,d,e) (p)->lpVtbl->ProcessMessage(p,a,b,c,d,e)
295 #define ITrayBandSite_AddContextMenus(p,a,b,c,d,e,f) (p)->lpVtbl->AddContextMenus(p,a,b,c,d,e,f)
296 #define ITrayBandSite_Lock(p,a) (p)->lpVtbl->Lock(p,a)
297 #endif
298
299 ITrayBandSite *
300 CreateTrayBandSite(IN OUT ITrayWindow *Tray,
301 OUT HWND *phWndRebar,
302 OUT HWND *phWndTaskSwitch);
303
304 /*
305 * startmnu.cpp
306 */
307
308 HRESULT StartMenuBtnCtxMenuCreator(ITrayWindow * TrayWnd, IN HWND hWndOwner, IContextMenu ** ppCtxMenu);
309
310 IMenuPopup*
311 CreateStartMenu(IN ITrayWindow *Tray,
312 OUT IMenuBand **ppMenuBand,
313 IN HBITMAP hbmBanner OPTIONAL,
314 IN BOOL bSmallIcons);
315
316 /*
317 * startmnucust.cpp
318 */
319 VOID
320 ShowCustomizeClassic(HINSTANCE, HWND);
321
322 /*
323 * startmnusite.cpp
324 */
325
326 HRESULT
327 CreateStartMenuSite(IN OUT ITrayWindow *Tray, const IID & riid, PVOID * ppv);
328
329 /*
330 * trayntfy.c
331 */
332
333 /* TrayClockWnd */
334 #define TCWM_GETMINIMUMSIZE (WM_USER + 0x100)
335 #define TCWM_UPDATETIME (WM_USER + 0x101)
336
337 /* TrayNotifyWnd */
338 #define TNWM_GETMINIMUMSIZE (WM_USER + 0x100)
339 #define TNWM_UPDATETIME (WM_USER + 0x101)
340 #define TNWM_SHOWCLOCK (WM_USER + 0x102)
341 #define TNWM_SHOWTRAY (WM_USER + 0x103)
342 #define TNWM_CHANGETRAYPOS (WM_USER + 0x104)
343
344 #define NTNWM_REALIGN (0x1)
345
346 class CTrayNotifyWnd;
347
348 BOOL
349 RegisterTrayNotifyWndClass(VOID);
350
351 VOID
352 UnregisterTrayNotifyWndClass(VOID);
353
354 HWND
355 CreateTrayNotifyWnd(IN OUT ITrayWindow *TrayWindow, IN BOOL bHideClock, CTrayNotifyWnd** ppTrayNotify);
356
357 BOOL
358 TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, IN WPARAM wParam, IN LPARAM lParam);
359
360 BOOL
361 TrayNotify_GetClockRect(CTrayNotifyWnd* pTrayNotify, OUT PRECT rcClock);
362
363 /*
364 * taskswnd.c
365 */
366
367 #define TSWM_ENABLEGROUPING (WM_USER + 1)
368 #define TSWM_UPDATETASKBARPOS (WM_USER + 2)
369
370 BOOL
371 RegisterTaskSwitchWndClass(VOID);
372
373 VOID
374 UnregisterTaskSwitchWndClass(VOID);
375
376 HWND
377 CreateTaskSwitchWnd(IN HWND hWndParent,
378 IN OUT ITrayWindow *Tray);
379
380 HRESULT
381 Tray_OnStartMenuDismissed(ITrayWindow* Tray);
382
383 HRESULT
384 IsSameObject(IN IUnknown *punk1, IN IUnknown *punk2);
385
386 #endif /* _EXPLORER_PRECOMP__H_ */