[EXPLORER]: Fix most problems with the size of the taskbar. (Most problems when run...
[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 extern const GUID CLSID_ITaskBand; /* Internal Task Band CLSID */
236 HRESULT CTaskBand_CreateInstance(IN ITrayWindow *Tray, HWND hWndStartButton, REFIID riid, void **ppv);
237
238 /*
239 * tbsite.cpp
240 */
241
242 #define INTERFACE ITrayBandSite
243 DECLARE_INTERFACE_(ITrayBandSite, IUnknown)
244 {
245 /*** IUnknown methods ***/
246 STDMETHOD_(HRESULT, QueryInterface) (THIS_ REFIID riid, void** ppvObject) PURE;
247 STDMETHOD_(ULONG, AddRef) (THIS) PURE;
248 STDMETHOD_(ULONG, Release) (THIS) PURE;
249 /*** IBandSiteStreamCallback ***/
250 STDMETHOD_(HRESULT, OnLoad)(THIS_ IStream *pStm, REFIID riid, PVOID *pvObj) PURE;
251 STDMETHOD_(HRESULT, OnSave)(THIS_ IUnknown *pUnk, IStream *pStm) PURE;
252 /*** ITrayBandSite methods ***/
253 STDMETHOD_(HRESULT, IsTaskBand) (THIS_ IUnknown *punk) PURE;
254 STDMETHOD_(HRESULT, ProcessMessage) (THIS_ HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *plResult) PURE;
255 STDMETHOD_(HRESULT, AddContextMenus) (THIS_ HMENU hmenu, UINT indexMenu, UINT idCmdFirst, UINT idCmdLast, UINT uFlags, IContextMenu **ppcm) PURE;
256 STDMETHOD_(HRESULT, Lock) (THIS_ BOOL bLock) PURE;
257 };
258 #undef INTERFACE
259
260 #if defined(COBJMACROS)
261 /*** IUnknown methods ***/
262 #define ITrayBandSite_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
263 #define ITrayBandSite_AddRef(p) (p)->lpVtbl->AddRef(p)
264 #define ITrayBandSite_Release(p) (p)->lpVtbl->Release(p)
265 /*** IBandSiteStreamCallback methods ***/
266 #define ITrayBandSite_OnLoad(p,a,b,c) (p)->lpVtbl->OnLoad(p,a,b,c)
267 #define ITrayBandSite_OnSave(p,a,b) (p)->lpVtbl->OnSave(p,a,b)
268 /*** ITrayBandSite methods ***/
269 #define ITrayBandSite_IsTaskBand(p,a) (p)->lpVtbl->IsTaskBand(p,a)
270 #define ITrayBandSite_ProcessMessage(p,a,b,c,d,e) (p)->lpVtbl->ProcessMessage(p,a,b,c,d,e)
271 #define ITrayBandSite_AddContextMenus(p,a,b,c,d,e,f) (p)->lpVtbl->AddContextMenus(p,a,b,c,d,e,f)
272 #define ITrayBandSite_Lock(p,a) (p)->lpVtbl->Lock(p,a)
273 #endif
274
275 HRESULT CTrayBandSite_CreateInstance(IN ITrayWindow *tray, IN IDeskBand* pTaskBand, OUT ITrayBandSite** pBandSite);
276
277 /*
278 * startmnu.cpp
279 */
280
281 HRESULT StartMenuBtnCtxMenuCreator(ITrayWindow * TrayWnd, IN HWND hWndOwner, IContextMenu ** ppCtxMenu);
282
283 IMenuPopup*
284 CreateStartMenu(IN ITrayWindow *Tray,
285 OUT IMenuBand **ppMenuBand,
286 IN HBITMAP hbmBanner OPTIONAL,
287 IN BOOL bSmallIcons);
288
289 /*
290 * startmnucust.cpp
291 */
292 VOID
293 ShowCustomizeClassic(HINSTANCE, HWND);
294
295 /*
296 * startmnusite.cpp
297 */
298
299 HRESULT
300 CreateStartMenuSite(IN OUT ITrayWindow *Tray, const IID & riid, PVOID * ppv);
301
302 /*
303 * trayntfy.c
304 */
305
306 /* TrayClockWnd */
307 #define TCWM_GETMINIMUMSIZE (WM_USER + 0x100)
308 #define TCWM_UPDATETIME (WM_USER + 0x101)
309
310 /* TrayNotifyWnd */
311 #define TNWM_GETMINIMUMSIZE (WM_USER + 0x100)
312 #define TNWM_UPDATETIME (WM_USER + 0x101)
313 #define TNWM_SHOWCLOCK (WM_USER + 0x102)
314 #define TNWM_SHOWTRAY (WM_USER + 0x103)
315 #define TNWM_CHANGETRAYPOS (WM_USER + 0x104)
316
317 #define NTNWM_REALIGN (0x1)
318
319 class CTrayNotifyWnd;
320
321 BOOL
322 RegisterTrayNotifyWndClass(VOID);
323
324 VOID
325 UnregisterTrayNotifyWndClass(VOID);
326
327 HWND
328 CreateTrayNotifyWnd(IN OUT ITrayWindow *TrayWindow, IN BOOL bHideClock, CTrayNotifyWnd** ppTrayNotify);
329
330 BOOL
331 TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, IN WPARAM wParam, IN LPARAM lParam);
332
333 BOOL
334 TrayNotify_GetClockRect(CTrayNotifyWnd* pTrayNotify, OUT PRECT rcClock);
335
336 /*
337 * taskswnd.c
338 */
339
340 #define TSWM_ENABLEGROUPING (WM_USER + 1)
341 #define TSWM_UPDATETASKBARPOS (WM_USER + 2)
342
343 BOOL
344 RegisterTaskSwitchWndClass(VOID);
345
346 VOID
347 UnregisterTaskSwitchWndClass(VOID);
348
349 HWND
350 CreateTaskSwitchWnd(IN HWND hWndParent,
351 IN OUT ITrayWindow *Tray);
352
353 HRESULT
354 Tray_OnStartMenuDismissed(ITrayWindow* Tray);
355
356 HRESULT
357 IsSameObject(IN IUnknown *punk1, IN IUnknown *punk2);
358
359 #endif /* _EXPLORER_PRECOMP__H_ */