prsht.h 14.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) the Wine project
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

19 20
#ifndef __WINE_PRSHT_H
#define __WINE_PRSHT_H
21 22 23 24 25 26 27 28 29 30 31

#ifdef __cplusplus
extern "C" {
#endif


/*
 * Property sheet support (callback procs)
 */


32
#define WC_PROPSHEETA      "SysPropertySheet"
33 34 35 36 37 38
#if defined(__GNUC__)
# define WC_PROPSHEETW (const WCHAR []){ 'S','y','s', \
  'P','r','o','p','e','r','t','y','S','h','e','e','t',0 }
#elif defined(_MSC_VER)
# define WC_PROPSHEETW     L"SysPropertySheet"
#else
39 40
static const WCHAR WC_PROPSHEETW[] = { 'S','y','s',
  'P','r','o','p','e','r','t','y','S','h','e','e','t',0 };
41
#endif
42 43
#define WC_PROPSHEET         WINELIB_NAME_AW(WC_PROPSHEET)

44 45
struct _PROPSHEETPAGEA;  /** need to forward declare those structs **/
struct _PROPSHEETPAGEW;
46 47 48 49
struct _PSP;
typedef struct _PSP *HPROPSHEETPAGE;


50 51 52 53 54
typedef UINT (CALLBACK *LPFNPSPCALLBACKA)(HWND, UINT, struct _PROPSHEETPAGEA*);
typedef UINT (CALLBACK *LPFNPSPCALLBACKW)(HWND, UINT, struct _PROPSHEETPAGEW*);
typedef INT  (CALLBACK *PFNPROPSHEETCALLBACK)(HWND, UINT, LPARAM);
typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE, LPARAM);
typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGES)(LPVOID, LPFNADDPROPSHEETPAGE, LPARAM);
55 56 57 58

/*
 * Property sheet support (structures)
 */
59
typedef struct _PROPSHEETPAGEA
60 61 62
{
    DWORD              dwSize;
    DWORD              dwFlags;
63
    HINSTANCE        hInstance;
64
    union
65 66
    {
        LPCSTR           pszTemplate;
67
        LPCDLGTEMPLATEA  pResource;
68
    }DUMMYUNIONNAME;
69 70
    union
    {
71
        HICON          hIcon;
72 73 74
        LPCSTR           pszIcon;
    }DUMMYUNIONNAME2;
    LPCSTR             pszTitle;
75
    DLGPROC          pfnDlgProc;
76
    LPARAM             lParam;
77 78
    LPFNPSPCALLBACKA pfnCallback;
    UINT*            pcRefParent;
79 80
    LPCSTR             pszHeaderTitle;
    LPCSTR             pszHeaderSubTitle;
81
} PROPSHEETPAGEA, *LPPROPSHEETPAGEA;
82

83
typedef const PROPSHEETPAGEA *LPCPROPSHEETPAGEA;
84

85
typedef struct _PROPSHEETPAGEW
86 87 88
{
    DWORD               dwSize;
    DWORD               dwFlags;
89
    HINSTANCE         hInstance;
90
    union
91 92
    {
        LPCWSTR          pszTemplate;
93
        LPCDLGTEMPLATEW  pResource;
94
    }DUMMYUNIONNAME;
95 96
    union
    {
97
        HICON          hIcon;
98 99 100
        LPCWSTR          pszIcon;
    }DUMMYUNIONNAME2;
    LPCWSTR            pszTitle;
101
    DLGPROC          pfnDlgProc;
102
    LPARAM             lParam;
103 104
    LPFNPSPCALLBACKW pfnCallback;
    UINT*            pcRefParent;
105 106
    LPCWSTR            pszHeaderTitle;
    LPCWSTR            pszHeaderSubTitle;
107
} PROPSHEETPAGEW, *LPPROPSHEETPAGEW;
108

109
typedef const PROPSHEETPAGEW *LPCPROPSHEETPAGEW;
110 111


112
typedef struct _PROPSHEETHEADERA
113 114 115
{
    DWORD                    dwSize;
    DWORD                    dwFlags;
116 117
    HWND                   hwndParent;
    HINSTANCE              hInstance;
118 119
    union
    {
120
      HICON                  hIcon;
121
      LPCSTR                   pszIcon;
122
    }DUMMYUNIONNAME;
123
    LPCSTR                   pszCaption;
124
    UINT                   nPages;
125 126
    union
    {
127
        UINT                 nStartPage;
128 129 130 131
        LPCSTR                 pStartPage;
    }DUMMYUNIONNAME2;
    union
    {
132
        LPCPROPSHEETPAGEA    ppsp;
133 134
        HPROPSHEETPAGE*        phpage;
    }DUMMYUNIONNAME3;
135
    PFNPROPSHEETCALLBACK   pfnCallback;
136 137
    union
    {
138
        HBITMAP              hbmWatermark;
139 140
        LPCSTR                 pszbmWatermark;
    }DUMMYUNIONNAME4;
141
    HPALETTE               hplWatermark;
142 143
    union
    {
144
        HBITMAP              hbmHeader;
145 146
        LPCSTR                 pszbmHeader;
    }DUMMYUNIONNAME5;
147
} PROPSHEETHEADERA, *LPPROPSHEETHEADERA;
148

149
typedef const PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
150

151
typedef struct _PROPSHEETHEADERW
152 153 154
{
    DWORD                    dwSize;
    DWORD                    dwFlags;
155 156
    HWND                   hwndParent;
    HINSTANCE              hInstance;
157 158
    union
    {
159
      HICON                  hIcon;
160 161
      LPCWSTR                   pszIcon;
    }DUMMYUNIONNAME;
162
    LPCWSTR                  pszCaption;
163
    UINT                   nPages;
164 165
    union
    {
166
        UINT                 nStartPage;
167 168 169 170
        LPCWSTR                pStartPage;
    }DUMMYUNIONNAME2;
    union
    {
171
        LPCPROPSHEETPAGEW    ppsp;
172 173
        HPROPSHEETPAGE*        phpage;
    }DUMMYUNIONNAME3;
174
    PFNPROPSHEETCALLBACK   pfnCallback;
175 176
    union
    {
177
        HBITMAP              hbmWatermark;
178 179
        LPCWSTR                pszbmWatermark;
    }DUMMYUNIONNAME4;
180
    HPALETTE               hplWatermark;
181 182
    union
    {
183
        HBITMAP              hbmHeader;
184 185
        LPCWSTR                pszbmHeader;
    }DUMMYUNIONNAME5;
186
} PROPSHEETHEADERW, *LPPROPSHEETHEADERW;
187

188
typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
189 190 191 192 193


/*
 * Property sheet support (methods)
 */
Frank Richter's avatar
Frank Richter committed
194 195
INT_PTR WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
INT_PTR WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
196
#define PropertySheet WINELIB_NAME_AW(PropertySheet)
197 198
HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(LPCPROPSHEETPAGEA);
HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
199
#define CreatePropertySheetPage WINELIB_NAME_AW(CreatePropertySheetPage)
200
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
201 202

/*
203
 * Property sheet support (UNICODE-Winelib)
204 205
 */

206 207 208 209 210 211 212
DECL_WINELIB_TYPE_AW(PROPSHEETPAGE)
DECL_WINELIB_TYPE_AW(LPPROPSHEETPAGE)
DECL_WINELIB_TYPE_AW(LPCPROPSHEETPAGE)
DECL_WINELIB_TYPE_AW(PROPSHEETHEADER)
DECL_WINELIB_TYPE_AW(LPPROPSHEETHEADER)
DECL_WINELIB_TYPE_AW(LPCPROPSHEETHEADER)
DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK)
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227


/*
 * Property sheet support (defines)
 */
#define PSP_DEFAULT             0x0000
#define PSP_DLGINDIRECT         0x0001
#define PSP_USEHICON            0x0002
#define PSP_USEICONID           0x0004
#define PSP_USETITLE            0x0008
#define PSP_RTLREADING          0x0010

#define PSP_HASHELP             0x0020
#define PSP_USEREFPARENT        0x0040
#define PSP_USECALLBACK         0x0080
Alexandre Julliard's avatar
Alexandre Julliard committed
228
#define PSP_PREMATURE           0x0400
229

Alexandre Julliard's avatar
Alexandre Julliard committed
230 231 232
#define PSP_HIDEHEADER          0x00000800
#define PSP_USEHEADERTITLE      0x00001000
#define PSP_USEHEADERSUBTITLE   0x00002000
233 234 235 236 237 238 239 240 241

#define PSPCB_RELEASE           1
#define PSPCB_CREATE            2

#define PSH_DEFAULT             0x0000
#define PSH_PROPTITLE           0x0001
#define PSH_USEHICON            0x0002
#define PSH_USEICONID           0x0004
#define PSH_PROPSHEETPAGE       0x0008
242
#define PSH_WIZARDHASFINISH     0x0010
243 244 245 246 247 248 249
#define PSH_WIZARD              0x0020
#define PSH_USEPSTARTPAGE       0x0040
#define PSH_NOAPPLYNOW          0x0080
#define PSH_USECALLBACK         0x0100
#define PSH_HASHELP             0x0200
#define PSH_MODELESS            0x0400
#define PSH_RTLREADING          0x0800
Alexandre Julliard's avatar
Alexandre Julliard committed
250 251
#define PSH_WIZARDCONTEXTHELP   0x00001000

252
#define PSH_WIZARD97_OLD        0x00002000 /* for IE < 5 */
Alexandre Julliard's avatar
Alexandre Julliard committed
253 254 255 256 257 258 259
#define PSH_WATERMARK           0x00008000
#define PSH_USEHBMWATERMARK     0x00010000
#define PSH_USEHPLWATERMARK     0x00020000
#define PSH_STRETCHWATERMARK    0x00040000
#define PSH_HEADER              0x00080000
#define PSH_USEHBMHEADER        0x00100000
#define PSH_USEPAGELANG         0x00200000
260
#define PSH_WIZARD_LITE         0x00400000
261
#define PSH_WIZARD97_NEW        0x01000000 /* for IE >= 5 */
262
#define PSH_NOCONTEXTHELP       0x02000000
263
#ifndef __WINESRC__
264 265 266 267 268 269
# if _WIN32_IE < 0x0500
#  define PSH_WIZARD97          PSH_WIZARD97_OLD
# else
#  define PSH_WIZARD97          PSH_WIZARD97_NEW
# endif
#endif
270

271 272 273
#define PSCB_INITIALIZED  1
#define PSCB_PRECREATE    2

Alexandre Julliard's avatar
Alexandre Julliard committed
274 275 276 277 278
typedef struct _PSHNOTIFY
{
   NMHDR hdr;
   LPARAM lParam;
} PSHNOTIFY, *LPPSHNOTIFY;
279

280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
#define PSN_FIRST               (0U-200U)
#define PSN_LAST                (0U-299U)


#define PSN_SETACTIVE           (PSN_FIRST-0)
#define PSN_KILLACTIVE          (PSN_FIRST-1)
/* #define PSN_VALIDATE            (PSN_FIRST-1) */
#define PSN_APPLY               (PSN_FIRST-2)
#define PSN_RESET               (PSN_FIRST-3)
/* #define PSN_CANCEL              (PSN_FIRST-3) */
#define PSN_HELP                (PSN_FIRST-5)
#define PSN_WIZBACK             (PSN_FIRST-6)
#define PSN_WIZNEXT             (PSN_FIRST-7)
#define PSN_WIZFINISH           (PSN_FIRST-8)
#define PSN_QUERYCANCEL         (PSN_FIRST-9)
Francois Gouget's avatar
Francois Gouget committed
295
#define PSN_GETOBJECT           (PSN_FIRST-10)
296 297
#define PSN_TRANSLATEACCELERATOR (PSN_FIRST-12)
#define PSN_QUERYINITIALFOCUS   (PSN_FIRST-13)
298 299 300 301

#define PSNRET_NOERROR              0
#define PSNRET_INVALID              1
#define PSNRET_INVALID_NOCHANGEPAGE 2
302

303 304 305 306 307 308 309 310 311 312 313

#define PSM_SETCURSEL           (WM_USER + 101)
#define PSM_REMOVEPAGE          (WM_USER + 102)
#define PSM_ADDPAGE             (WM_USER + 103)
#define PSM_CHANGED             (WM_USER + 104)
#define PSM_RESTARTWINDOWS      (WM_USER + 105)
#define PSM_REBOOTSYSTEM        (WM_USER + 106)
#define PSM_CANCELTOCLOSE       (WM_USER + 107)
#define PSM_QUERYSIBLINGS       (WM_USER + 108)
#define PSM_UNCHANGED           (WM_USER + 109)
#define PSM_APPLY               (WM_USER + 110)
314 315
#define PSM_SETTITLEA         (WM_USER + 111)
#define PSM_SETTITLEW         (WM_USER + 120)
316 317 318 319
#define PSM_SETTITLE WINELIB_NAME_AW(PSM_SETTITLE)
#define PSM_SETWIZBUTTONS       (WM_USER + 112)
#define PSM_PRESSBUTTON         (WM_USER + 113)
#define PSM_SETCURSELID         (WM_USER + 114)
320 321
#define PSM_SETFINISHTEXTA    (WM_USER + 115)
#define PSM_SETFINISHTEXTW    (WM_USER + 121)
322 323 324 325
#define PSM_SETFINISHTEXT WINELIB_NAME_AW(PSM_SETFINISHTEXT)
#define PSM_GETTABCONTROL       (WM_USER + 116)
#define PSM_ISDIALOGMESSAGE     (WM_USER + 117)
#define PSM_GETCURRENTPAGEHWND  (WM_USER + 118)
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
#define PSM_INSERTPAGE          (WM_USER + 119)
#define PSM_SETHEADERTITLEA     (WM_USER + 125)
#define PSM_SETHEADERTITLEW     (WM_USER + 126)
#define PSM_SETHEADERTITLE      WINELIB_NAME_AW(PSM_SETHEADERTITLE)
#define PSM_SETHEADERSUBTITLEA  (WM_USER + 127)
#define PSM_SETHEADERSUBTITLEW  (WM_USER + 128)
#define PSM_SETHEADERSUBTITLE   WINELIB_NAME_AW(PSM_SETHEADERSUBTITLE)
#define PSM_HWNDTOINDEX         (WM_USER + 129)
#define PSM_INDEXTOHWND         (WM_USER + 130)
#define PSM_PAGETOINDEX         (WM_USER + 131)
#define PSM_INDEXTOPAGE         (WM_USER + 132)
#define PSM_IDTOINDEX           (WM_USER + 133)
#define PSM_INDEXTOID           (WM_USER + 134)
#define PSM_GETRESULT           (WM_USER + 135)
#define PSM_RECALCPAGESIZES     (WM_USER + 136)
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

#define PSWIZB_BACK             0x00000001
#define PSWIZB_NEXT             0x00000002
#define PSWIZB_FINISH           0x00000004
#define PSWIZB_DISABLEDFINISH   0x00000008

#define PSBTN_BACK              0
#define PSBTN_NEXT              1
#define PSBTN_FINISH            2
#define PSBTN_OK                3
#define PSBTN_APPLYNOW          4
#define PSBTN_CANCEL            5
#define PSBTN_HELP              6
#define PSBTN_MAX               6

#define ID_PSRESTARTWINDOWS     0x2
#define ID_PSREBOOTSYSTEM       (ID_PSRESTARTWINDOWS | 0x1)


#define WIZ_CXDLG               276
#define WIZ_CYDLG               140

#define WIZ_CXBMP               80

#define WIZ_BODYX               92
#define WIZ_BODYCX              184

#define PROP_SM_CXDLG           212
#define PROP_SM_CYDLG           188

#define PROP_MED_CXDLG          227
#define PROP_MED_CYDLG          215

#define PROP_LG_CXDLG           252
#define PROP_LG_CYDLG           218

/*
 * Property sheet support (macros)
 */

#define PropSheet_SetCurSel(hDlg, hpage, index) \
382
	SendMessageA(hDlg, PSM_SETCURSEL, (WPARAM)index, (LPARAM)hpage)
383

384 385
#define PropSheet_RemovePage(hDlg, index, hpage) \
	SNDMSG(hDlg, PSM_REMOVEPAGE, index, (LPARAM)hpage)
386

387 388
#define PropSheet_AddPage(hDlg, hpage) \
	SNDMSG(hDlg, PSM_ADDPAGE, 0, (LPARAM)hpage)
389

390 391
#define PropSheet_Changed(hDlg, hwnd) \
	SNDMSG(hDlg, PSM_CHANGED, (WPARAM)hwnd, 0L)
392

393 394
#define PropSheet_RestartWindows(hDlg) \
	SNDMSG(hDlg, PSM_RESTARTWINDOWS, 0, 0L)
395

396 397
#define PropSheet_RebootSystem(hDlg) \
	SNDMSG(hDlg, PSM_REBOOTSYSTEM, 0, 0L)
398

399 400
#define PropSheet_CancelToClose(hDlg) \
	PostMessage(hDlg, PSM_CANCELTOCLOSE, 0, 0L)
401

402 403
#define PropSheet_QuerySiblings(hDlg, wParam, lParam) \
	SNDMSG(hDlg, PSM_QUERYSIBLINGS, wParam, lParam)
404

405 406
#define PropSheet_UnChanged(hDlg, hwnd) \
	SNDMSG(hDlg, PSM_UNCHANGED, (WPARAM)hwnd, 0L)
407

408 409
#define PropSheet_Apply(hDlg) \
	SNDMSG(hDlg, PSM_APPLY, 0, 0L)
410

411 412
#define PropSheet_SetTitle(hDlg, wStyle, lpszText)\
	SNDMSG(hDlg, PSM_SETTITLE, wStyle, (LPARAM)(LPCTSTR)lpszText)
413

414 415
#define PropSheet_SetWizButtons(hDlg, dwFlags) \
	PostMessage(hDlg, PSM_SETWIZBUTTONS, 0, (LPARAM)dwFlags)
416

417 418
#define PropSheet_PressButton(hDlg, iButton) \
	PostMessage(hDlg, PSM_PRESSBUTTON, (WPARAM)iButton, 0)
419

420 421 422 423 424
#define PropSheet_SetCurSelByID(hDlg, id) \
	SNDMSG(hDlg, PSM_SETCURSELID, 0, (LPARAM)id)

#define PropSheet_SetFinishText(hDlg, lpszText) \
	SNDMSG(hDlg, PSM_SETFINISHTEXT, 0, (LPARAM)lpszText)
425

426 427
#define PropSheet_GetTabControl(hDlg) \
	(HWND)SNDMSG(hDlg, PSM_GETTABCONTROL, 0, 0)
428

429 430
#define PropSheet_IsDialogMessage(hDlg, pMsg) \
	(BOOL)SNDMSG(hDlg, PSM_ISDIALOGMESSAGE, 0, (LPARAM)pMsg)
431

432 433
#define PropSheet_GetCurrentPageHwnd(hDlg) \
	(HWND)SNDMSG(hDlg, PSM_GETCURRENTPAGEHWND, 0, 0L)
434

435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
#define PropSheet_InsertPage(hDlg, index, hpage) \
        SNDMSG(hDlg, PSM_INSERTPAGE, (WPARAM)(index), (LPARAM)(hpage))

#define PropSheet_SetHeaderTitle(hDlg, index, lpszText) \
        SNDMSG(hDlg, PSM_SETHEADERTITLE, (WPARAM)(index), (LPARAM)(lpszText))

#define PropSheet_SetHeaderSubTitle(hDlg, index, lpszText) \
        SNDMSG(hDlg, PSM_SETHEADERSUBTITLE, (WPARAM)(index), (LPARAM)(lpszText))

#define PropSheet_HwndToIndex(hDlg, hwnd) \
        (int)SNDMSG(hDlg, PSM_HWNDTOINDEX, (WPARAM)(hwnd), 0)

#define PropSheet_IndexToHwnd(hDlg, i) \
        (HWND)SNDMSG(hDlg, PSM_INDEXTOHWND, (WPARAM)(i), 0)

#define PropSheet_PageToIndex(hDlg, hpage) \
        (int)SNDMSG(hDlg, PSM_PAGETOINDEX, 0, (LPARAM)(hpage))

#define PropSheet_IndexToPage(hDlg, i) \
        (HPROPSHEETPAGE)SNDMSG(hDlg, PSM_INDEXTOPAGE, (WPARAM)(i), 0)

#define PropSheet_IdToIndex(hDlg, id) \
        (int)SNDMSG(hDlg, PSM_IDTOINDEX, 0, (LPARAM)(id))

#define PropSheet_IndexToId(hDlg, i) \
        SNDMSG(hDlg, PSM_INDEXTOID, (WPARAM)(i), 0)

#define PropSheet_GetResult(hDlg) \
        SNDMSG(hDlg, PSM_GETRESULT, 0, 0)

#define PropSheet_RecalcPageSizes(hDlg) \
        SNDMSG(hDlg, PSM_RECALCPAGESIZES, 0, 0)
467 468 469 470 471

#ifdef __cplusplus
}
#endif

472
#endif /* __WINE_PRSHT_H */