Use the service thread for comm notifications.
[wine] / include / prsht.h
1 #ifndef __WINE_PRSHT_H
2 #define __WINE_PRSHT_H
3
4 #include "winuser.h"
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10
11 /*
12  * Property sheet support (callback procs)
13  */
14
15
16 #define WC_PROPSHEETA      "SysPropertySheet"
17 #define WC_PROPSHEETW      L"SysPropertySheet"
18 #define WC_PROPSHEET         WINELIB_NAME_AW(WC_PROPSHEET)
19
20 struct _PROPSHEETPAGEA;  /** need to forward declare those structs **/
21 struct _PROPSHEETPAGEW;
22 struct _PSP;
23 typedef struct _PSP *HPROPSHEETPAGE;
24
25
26 typedef UINT (CALLBACK *LPFNPSPCALLBACKA)(HWND, UINT, struct _PROPSHEETPAGEA*);
27 typedef UINT (CALLBACK *LPFNPSPCALLBACKW)(HWND, UINT, struct _PROPSHEETPAGEW*);
28 typedef INT  (CALLBACK *PFNPROPSHEETCALLBACK)(HWND, UINT, LPARAM);
29 typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE, LPARAM);
30 typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGES)(LPVOID, LPFNADDPROPSHEETPAGE, LPARAM);
31
32 /* c++ likes nameless unions whereas c doesnt */
33 /* (used in property sheet structures)        */
34 #if defined(__cplusplus) && !defined(NONAMELESSUNION)
35 #define DUMMYUNIONNAME
36 #define DUMMYUNIONNAME1
37 #define DUMMYUNIONNAME2
38 #define DUMMYUNIONNAME3
39 #define DUMMYUNIONNAME4
40 #define DUMMYUNIONNAME5
41 #else /*  defined(__cplusplus) && !defined(NONAMELESSUNION) */
42 #define DUMMYUNIONNAME   u
43 #define DUMMYUNIONNAME1  u1
44 #define DUMMYUNIONNAME2  u2
45 #define DUMMYUNIONNAME3  u3
46 #define DUMMYUNIONNAME4  u4
47 #define DUMMYUNIONNAME5  u5
48 #endif /* defined(__cplusplus) && !defined(NONAMELESSUNION) */
49
50 /*
51  * Property sheet support (structures)
52  */
53 typedef struct _PROPSHEETPAGEA
54 {
55     DWORD              dwSize;
56     DWORD              dwFlags;
57     HINSTANCE        hInstance;
58     union 
59     {
60         LPCSTR           pszTemplate;
61         LPCDLGTEMPLATEA  pResource;
62     }DUMMYUNIONNAME1;
63     union
64     {
65         HICON          hIcon;
66         LPCSTR           pszIcon;
67     }DUMMYUNIONNAME2;
68     LPCSTR             pszTitle;
69     DLGPROC          pfnDlgProc;
70     LPARAM             lParam;
71     LPFNPSPCALLBACKA pfnCallback;
72     UINT*            pcRefParent;
73     LPCWSTR            pszHeaderTitle;
74     LPCWSTR            pszHeaderSubTitle;
75 } PROPSHEETPAGEA, *LPPROPSHEETPAGEA;
76
77 typedef const PROPSHEETPAGEA *LPCPROPSHEETPAGEA;
78
79 typedef struct _PROPSHEETPAGEW
80 {
81     DWORD               dwSize;
82     DWORD               dwFlags;
83     HINSTANCE         hInstance;
84     union 
85     {
86         LPCWSTR          pszTemplate;
87         LPCDLGTEMPLATEW  pResource;
88     }DUMMYUNIONNAME1;
89     union
90     {
91         HICON          hIcon;
92         LPCWSTR          pszIcon;
93     }DUMMYUNIONNAME2;
94     LPCWSTR            pszTitle;
95     DLGPROC          pfnDlgProc;
96     LPARAM             lParam;
97     LPFNPSPCALLBACKW pfnCallback;
98     UINT*            pcRefParent;
99     LPCWSTR            pszHeaderTitle;
100     LPCWSTR            pszHeaderSubTitle;
101 } PROPSHEETPAGEW, *LPPROPSHEETPAGEW;
102
103 typedef const PROPSHEETPAGEW *LPCPROPSHEETPAGEW;
104
105
106 typedef struct _PROPSHEETHEADERA
107 {
108     DWORD                    dwSize;
109     DWORD                    dwFlags;
110     HWND                   hwndParent;
111     HINSTANCE              hInstance;
112     union
113     {
114       HICON                  hIcon;
115       LPCSTR                   pszIcon;
116     }DUMMYUNIONNAME1;
117     LPCSTR                   pszCaption;
118     UINT                   nPages;
119     union
120     {
121         UINT                 nStartPage;
122         LPCSTR                 pStartPage;
123     }DUMMYUNIONNAME2;
124     union
125     {
126         LPCPROPSHEETPAGEA    ppsp;
127         HPROPSHEETPAGE*        phpage;
128     }DUMMYUNIONNAME3;
129     PFNPROPSHEETCALLBACK   pfnCallback;
130     union
131     {
132         HBITMAP              hbmWatermark;
133         LPCSTR                 pszbmWatermark;
134     }DUMMYUNIONNAME4;
135     HPALETTE               hplWatermark;
136     union
137     {
138         HBITMAP              hbmHeader;
139         LPCSTR                 pszbmHeader;
140     }DUMMYUNIONNAME5;
141 } PROPSHEETHEADERA, *LPPROPSHEETHEADERA;
142
143 typedef const PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
144
145 typedef struct _PROPSHEETHEADERW
146 {
147     DWORD                    dwSize;
148     DWORD                    dwFlags;
149     HWND                   hwndParent;
150     HINSTANCE              hInstance;
151     union
152     {
153       HICON                  hIcon;
154       LPCSTR                   pszIcon;
155     }DUMMYUNIONNAME1;
156     LPCWSTR                  pszCaption;
157     UINT                   nPages;
158     union
159     {
160         UINT                 nStartPage;
161         LPCWSTR                pStartPage;
162     }DUMMYUNIONNAME2;
163     union
164     {
165         LPCPROPSHEETPAGEW    ppsp;
166         HPROPSHEETPAGE*        phpage;
167     }DUMMYUNIONNAME3;
168     PFNPROPSHEETCALLBACK   pfnCallback;
169     union
170     {
171         HBITMAP              hbmWatermark;
172         LPCWSTR                pszbmWatermark;
173     }DUMMYUNIONNAME4;
174     HPALETTE               hplWatermark;
175     union
176     {
177         HBITMAP              hbmHeader;
178         LPCWSTR                pszbmHeader;
179     }DUMMYUNIONNAME5;
180 } PROPSHEETHEADERW, *LPPROPSHEETHEADERW;
181
182 typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
183
184
185 /*
186  * Property sheet support (methods)
187  */
188 INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
189 INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
190 #define PropertySheet WINELIB_NAME_AW(PropertySheet)
191 HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(LPCPROPSHEETPAGEA);
192 HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
193 #define CreatePropertySheetPage WINELIB_NAME_AW(CreatePropertySheetPage)
194 BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
195
196 /*
197  * Property sheet support (UNICODE-WineLib)
198  */
199
200 DECL_WINELIB_TYPE_AW(PROPSHEETPAGE) 
201 DECL_WINELIB_TYPE_AW(LPPROPSHEETPAGE) 
202 DECL_WINELIB_TYPE_AW(LPCPROPSHEETPAGE) 
203 DECL_WINELIB_TYPE_AW(PROPSHEETHEADER) 
204 DECL_WINELIB_TYPE_AW(LPPROPSHEETHEADER) 
205 DECL_WINELIB_TYPE_AW(LPCPROPSHEETHEADER) 
206 DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK) 
207
208
209 /*
210  * Property sheet support (defines)
211  */
212 #define PSP_DEFAULT             0x0000
213 #define PSP_DLGINDIRECT         0x0001
214 #define PSP_USEHICON            0x0002
215 #define PSP_USEICONID           0x0004
216 #define PSP_USETITLE            0x0008
217 #define PSP_RTLREADING          0x0010
218
219 #define PSP_HASHELP             0x0020
220 #define PSP_USEREFPARENT        0x0040
221 #define PSP_USECALLBACK         0x0080
222
223
224 #define PSPCB_RELEASE           1
225 #define PSPCB_CREATE            2
226
227 #define PSH_DEFAULT             0x0000
228 #define PSH_PROPTITLE           0x0001
229 #define PSH_USEHICON            0x0002
230 #define PSH_USEICONID           0x0004
231 #define PSH_PROPSHEETPAGE       0x0008
232 #define PSH_WIZARD              0x0020
233 #define PSH_USEPSTARTPAGE       0x0040
234 #define PSH_NOAPPLYNOW          0x0080
235 #define PSH_USECALLBACK         0x0100
236 #define PSH_HASHELP             0x0200
237 #define PSH_MODELESS            0x0400
238 #define PSH_RTLREADING          0x0800
239
240 #define PSCB_INITIALIZED  1
241 #define PSCB_PRECREATE    2
242
243 #define PSN_FIRST               (0U-200U)
244 #define PSN_LAST                (0U-299U)
245
246
247 #define PSN_SETACTIVE           (PSN_FIRST-0)
248 #define PSN_KILLACTIVE          (PSN_FIRST-1)
249 /* #define PSN_VALIDATE            (PSN_FIRST-1) */
250 #define PSN_APPLY               (PSN_FIRST-2)
251 #define PSN_RESET               (PSN_FIRST-3)
252 /* #define PSN_CANCEL              (PSN_FIRST-3) */
253 #define PSN_HELP                (PSN_FIRST-5)
254 #define PSN_WIZBACK             (PSN_FIRST-6)
255 #define PSN_WIZNEXT             (PSN_FIRST-7)
256 #define PSN_WIZFINISH           (PSN_FIRST-8)
257 #define PSN_QUERYCANCEL         (PSN_FIRST-9)
258
259 #define PSNRET_NOERROR              0
260 #define PSNRET_INVALID              1
261 #define PSNRET_INVALID_NOCHANGEPAGE 2
262  
263
264 #define PSM_SETCURSEL           (WM_USER + 101)
265 #define PSM_REMOVEPAGE          (WM_USER + 102)
266 #define PSM_ADDPAGE             (WM_USER + 103)
267 #define PSM_CHANGED             (WM_USER + 104)
268 #define PSM_RESTARTWINDOWS      (WM_USER + 105)
269 #define PSM_REBOOTSYSTEM        (WM_USER + 106)
270 #define PSM_CANCELTOCLOSE       (WM_USER + 107)
271 #define PSM_QUERYSIBLINGS       (WM_USER + 108)
272 #define PSM_UNCHANGED           (WM_USER + 109)
273 #define PSM_APPLY               (WM_USER + 110)
274 #define PSM_SETTITLEA         (WM_USER + 111)
275 #define PSM_SETTITLEW         (WM_USER + 120)
276 #define PSM_SETTITLE WINELIB_NAME_AW(PSM_SETTITLE)
277 #define PSM_SETWIZBUTTONS       (WM_USER + 112)
278 #define PSM_PRESSBUTTON         (WM_USER + 113)
279 #define PSM_SETCURSELID         (WM_USER + 114)
280 #define PSM_SETFINISHTEXTA    (WM_USER + 115)
281 #define PSM_SETFINISHTEXTW    (WM_USER + 121)
282 #define PSM_SETFINISHTEXT WINELIB_NAME_AW(PSM_SETFINISHTEXT)
283 #define PSM_GETTABCONTROL       (WM_USER + 116)
284 #define PSM_ISDIALOGMESSAGE     (WM_USER + 117)
285 #define PSM_GETCURRENTPAGEHWND  (WM_USER + 118)
286
287 #define PSWIZB_BACK             0x00000001
288 #define PSWIZB_NEXT             0x00000002
289 #define PSWIZB_FINISH           0x00000004
290 #define PSWIZB_DISABLEDFINISH   0x00000008
291
292 #define PSBTN_BACK              0
293 #define PSBTN_NEXT              1
294 #define PSBTN_FINISH            2
295 #define PSBTN_OK                3
296 #define PSBTN_APPLYNOW          4
297 #define PSBTN_CANCEL            5
298 #define PSBTN_HELP              6
299 #define PSBTN_MAX               6
300
301 #define ID_PSRESTARTWINDOWS     0x2
302 #define ID_PSREBOOTSYSTEM       (ID_PSRESTARTWINDOWS | 0x1)
303
304
305 #define WIZ_CXDLG               276
306 #define WIZ_CYDLG               140
307
308 #define WIZ_CXBMP               80
309
310 #define WIZ_BODYX               92
311 #define WIZ_BODYCX              184
312
313 #define PROP_SM_CXDLG           212
314 #define PROP_SM_CYDLG           188
315
316 #define PROP_MED_CXDLG          227
317 #define PROP_MED_CYDLG          215
318
319 #define PROP_LG_CXDLG           252
320 #define PROP_LG_CYDLG           218
321
322 /*
323  * Property sheet support (macros)
324  */
325
326 #define PropSheet_SetCurSel(hDlg, hpage, index) \
327         SendMessageA(hDlg, PSM_SETCURSEL, (WPARAM)index, (LPARAM)hpage)
328          
329 #define PropSheet_RemovePage(hDlg, index, hpage) \
330         SNDMSG(hDlg, PSM_REMOVEPAGE, index, (LPARAM)hpage)
331          
332 #define PropSheet_AddPage(hDlg, hpage) \
333         SNDMSG(hDlg, PSM_ADDPAGE, 0, (LPARAM)hpage)
334          
335 #define PropSheet_Changed(hDlg, hwnd) \
336         SNDMSG(hDlg, PSM_CHANGED, (WPARAM)hwnd, 0L)
337          
338 #define PropSheet_RestartWindows(hDlg) \
339         SNDMSG(hDlg, PSM_RESTARTWINDOWS, 0, 0L)
340          
341 #define PropSheet_RebootSystem(hDlg) \
342         SNDMSG(hDlg, PSM_REBOOTSYSTEM, 0, 0L)
343          
344 #define PropSheet_CancelToClose(hDlg) \
345         PostMessage(hDlg, PSM_CANCELTOCLOSE, 0, 0L)
346          
347 #define PropSheet_QuerySiblings(hDlg, wParam, lParam) \
348         SNDMSG(hDlg, PSM_QUERYSIBLINGS, wParam, lParam)
349          
350 #define PropSheet_UnChanged(hDlg, hwnd) \
351         SNDMSG(hDlg, PSM_UNCHANGED, (WPARAM)hwnd, 0L)
352          
353 #define PropSheet_Apply(hDlg) \
354         SNDMSG(hDlg, PSM_APPLY, 0, 0L)
355           
356 #define PropSheet_SetTitle(hDlg, wStyle, lpszText)\
357         SNDMSG(hDlg, PSM_SETTITLE, wStyle, (LPARAM)(LPCTSTR)lpszText)
358          
359 #define PropSheet_SetWizButtons(hDlg, dwFlags) \
360         PostMessage(hDlg, PSM_SETWIZBUTTONS, 0, (LPARAM)dwFlags)
361          
362 #define PropSheet_PressButton(hDlg, iButton) \
363         PostMessage(hDlg, PSM_PRESSBUTTON, (WPARAM)iButton, 0)
364          
365 #define PropSheet_SetCurSelByID(hDlg, id) \
366         SNDMSG(hDlg, PSM_SETCURSELID, 0, (LPARAM)id)
367
368 #define PropSheet_SetFinishText(hDlg, lpszText) \
369         SNDMSG(hDlg, PSM_SETFINISHTEXT, 0, (LPARAM)lpszText)
370          
371 #define PropSheet_GetTabControl(hDlg) \
372         (HWND)SNDMSG(hDlg, PSM_GETTABCONTROL, 0, 0)
373          
374 #define PropSheet_IsDialogMessage(hDlg, pMsg) \
375         (BOOL)SNDMSG(hDlg, PSM_ISDIALOGMESSAGE, 0, (LPARAM)pMsg)
376          
377 #define PropSheet_GetCurrentPageHwnd(hDlg) \
378         (HWND)SNDMSG(hDlg, PSM_GETCURRENTPAGEHWND, 0, 0L)
379          
380
381 #ifdef __cplusplus
382 }
383 #endif
384
385 #endif /* __WINE_PRSHT_H */