Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 1 | /* |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 2 | * COMMDLG - Common Wine Dialog ... :-) |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) the Wine project |
| 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Alexandre Julliard | 1e9ac79 | 1996-06-06 18:38:27 +0000 | [diff] [blame] | 21 | #ifndef __WINE_COMMDLG_H |
| 22 | #define __WINE_COMMDLG_H |
| 23 | |
| 24 | #ifdef __cplusplus |
| 25 | extern "C" { |
| 26 | #endif |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 27 | |
Dimitrie O. Paun | 53f9c21 | 2003-08-28 21:43:34 +0000 | [diff] [blame] | 28 | #include <prsht.h> |
Maarten Lankhorst | 424caea | 2008-12-13 23:06:48 +0100 | [diff] [blame] | 29 | #ifndef _WIN64 |
Dimitrie O. Paun | 53f9c21 | 2003-08-28 21:43:34 +0000 | [diff] [blame] | 30 | #include <pshpack1.h> |
Maarten Lankhorst | 424caea | 2008-12-13 23:06:48 +0100 | [diff] [blame] | 31 | #endif |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 32 | |
György 'Nog' Jeney | ba06042 | 2002-09-30 18:51:33 +0000 | [diff] [blame] | 33 | #ifndef SNDMSG |
| 34 | #ifdef __cplusplus |
| 35 | #define SNDMSG ::SendMessage |
| 36 | #else /* __cplusplus */ |
| 37 | #define SNDMSG SendMessage |
| 38 | #endif /* __cplusplus */ |
| 39 | #endif /* SNDMSG */ |
| 40 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 41 | #define OFN_READONLY 0x00000001 |
| 42 | #define OFN_OVERWRITEPROMPT 0x00000002 |
| 43 | #define OFN_HIDEREADONLY 0x00000004 |
| 44 | #define OFN_NOCHANGEDIR 0x00000008 |
| 45 | #define OFN_SHOWHELP 0x00000010 |
| 46 | #define OFN_ENABLEHOOK 0x00000020 |
| 47 | #define OFN_ENABLETEMPLATE 0x00000040 |
| 48 | #define OFN_ENABLETEMPLATEHANDLE 0x00000080 |
| 49 | #define OFN_NOVALIDATE 0x00000100 |
| 50 | #define OFN_ALLOWMULTISELECT 0x00000200 |
| 51 | #define OFN_EXTENSIONDIFFERENT 0x00000400 |
| 52 | #define OFN_PATHMUSTEXIST 0x00000800 |
| 53 | #define OFN_FILEMUSTEXIST 0x00001000 |
| 54 | #define OFN_CREATEPROMPT 0x00002000 |
| 55 | #define OFN_SHAREAWARE 0x00004000 |
| 56 | #define OFN_NOREADONLYRETURN 0x00008000 |
| 57 | #define OFN_NOTESTFILECREATE 0x00010000 |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 58 | #define OFN_NONETWORKBUTTON 0x00020000 |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 59 | #define OFN_NOLONGNAMES 0x00040000 |
| 60 | #define OFN_EXPLORER 0x00080000 |
| 61 | #define OFN_NODEREFERENCELINKS 0x00100000 |
| 62 | #define OFN_LONGNAMES 0x00200000 |
Francois Gouget | afddcfd | 2000-09-27 22:31:28 +0000 | [diff] [blame] | 63 | #define OFN_ENABLEINCLUDENOTIFY 0x00400000 |
| 64 | #define OFN_ENABLESIZING 0x00800000 |
Juergen Schmied | ebcc72c | 2000-11-01 01:50:21 +0000 | [diff] [blame] | 65 | #define OFN_DONTADDTORECENT 0x02000000 |
| 66 | #define OFN_FORCESHOWHIDDEN 0x10000000 |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 67 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 68 | #define OFN_SHAREFALLTHROUGH 2 |
| 69 | #define OFN_SHARENOWARN 1 |
| 70 | #define OFN_SHAREWARN 0 |
| 71 | |
Francois Boisvert | 87b81de | 1999-07-27 16:20:36 +0000 | [diff] [blame] | 72 | #define SAVE_DIALOG 1 |
| 73 | #define OPEN_DIALOG 2 |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 74 | |
Ricardo Filipe | d904d13 | 2009-02-08 12:20:47 +0000 | [diff] [blame] | 75 | typedef UINT_PTR (CALLBACK *LPOFNHOOKPROC)(HWND,UINT,WPARAM,LPARAM); |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 76 | |
Jon Griffiths | 880c0c8 | 2004-05-27 20:00:51 +0000 | [diff] [blame] | 77 | typedef struct tagOFNA { |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 78 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 79 | HWND hwndOwner; |
| 80 | HINSTANCE hInstance; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 81 | LPCSTR lpstrFilter; |
| 82 | LPSTR lpstrCustomFilter; |
| 83 | DWORD nMaxCustFilter; |
| 84 | DWORD nFilterIndex; |
| 85 | LPSTR lpstrFile; |
| 86 | DWORD nMaxFile; |
| 87 | LPSTR lpstrFileTitle; |
| 88 | DWORD nMaxFileTitle; |
| 89 | LPCSTR lpstrInitialDir; |
| 90 | LPCSTR lpstrTitle; |
| 91 | DWORD Flags; |
| 92 | WORD nFileOffset; |
| 93 | WORD nFileExtension; |
| 94 | LPCSTR lpstrDefExt; |
| 95 | LPARAM lCustData; |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 96 | LPOFNHOOKPROC lpfnHook; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 97 | LPCSTR lpTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 98 | } OPENFILENAMEA,*LPOPENFILENAMEA; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 99 | |
Jon Griffiths | 880c0c8 | 2004-05-27 20:00:51 +0000 | [diff] [blame] | 100 | typedef struct tagOFNW { |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 101 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 102 | HWND hwndOwner; |
| 103 | HINSTANCE hInstance; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 104 | LPCWSTR lpstrFilter; |
| 105 | LPWSTR lpstrCustomFilter; |
| 106 | DWORD nMaxCustFilter; |
| 107 | DWORD nFilterIndex; |
| 108 | LPWSTR lpstrFile; |
| 109 | DWORD nMaxFile; |
| 110 | LPWSTR lpstrFileTitle; |
| 111 | DWORD nMaxFileTitle; |
| 112 | LPCWSTR lpstrInitialDir; |
| 113 | LPCWSTR lpstrTitle; |
| 114 | DWORD Flags; |
| 115 | WORD nFileOffset; |
| 116 | WORD nFileExtension; |
| 117 | LPCWSTR lpstrDefExt; |
| 118 | LPARAM lCustData; |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 119 | LPOFNHOOKPROC lpfnHook; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 120 | LPCWSTR lpTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 121 | } OPENFILENAMEW,*LPOPENFILENAMEW; |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 122 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 123 | DECL_WINELIB_TYPE_AW(OPENFILENAME) |
| 124 | DECL_WINELIB_TYPE_AW(LPOPENFILENAME) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 125 | |
Kevin Koltzau | 201da33 | 2004-01-08 05:16:23 +0000 | [diff] [blame] | 126 | #ifndef CDSIZEOF_STRUCT |
| 127 | #define CDSIZEOF_STRUCT(type,field) ((int)&(((type *)0)->field) + sizeof(((type*)0)->field)) |
| 128 | #endif |
| 129 | |
| 130 | #define OPENFILENAME_SIZE_VERSION_400A CDSIZEOF_STRUCT(OPENFILENAMEA,lpTemplateName) |
| 131 | #define OPENFILENAME_SIZE_VERSION_400W CDSIZEOF_STRUCT(OPENFILENAMEW,lpTemplateName) |
| 132 | #define OPENFILENAME_SIZE_VERSION_400 WINELIB_NAME_AW(OPENFILENAME_SIZE_VERSION_400) |
| 133 | |
| 134 | |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 135 | typedef struct |
| 136 | { |
| 137 | NMHDR hdr; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 138 | LPOPENFILENAMEA lpOFN; |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 139 | LPSTR pszFile; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 140 | } OFNOTIFYA, *LPOFNOTIFYA; |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 141 | |
| 142 | typedef struct |
| 143 | { |
| 144 | NMHDR hdr; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 145 | LPOPENFILENAMEW lpOFN; |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 146 | LPWSTR pszFile; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 147 | } OFNOTIFYW, *LPOFNOTIFYW; |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 148 | |
| 149 | DECL_WINELIB_TYPE_AW(OFNOTIFY) |
| 150 | DECL_WINELIB_TYPE_AW(LPOFNOTIFY) |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 151 | |
Ricardo Filipe | 810508f | 2008-12-17 21:33:37 +0000 | [diff] [blame] | 152 | typedef struct _OFNOTIFYEXA |
| 153 | { |
| 154 | NMHDR hdr; |
| 155 | LPOPENFILENAMEA lpOFN; |
| 156 | LPVOID psf; |
| 157 | LPVOID pidl; |
| 158 | } OFNOTIFYEXA, *LPOFNOTIFYEXA; |
| 159 | |
| 160 | typedef struct _OFNOTIFYEXW |
| 161 | { |
| 162 | NMHDR hdr; |
| 163 | LPOPENFILENAMEW lpOFN; |
| 164 | LPVOID psf; |
| 165 | LPVOID pidl; |
| 166 | } OFNOTIFYEXW, *LPOFNOTIFYEXW; |
| 167 | |
| 168 | DECL_WINELIB_TYPE_AW(OFNOTIFYEX) |
| 169 | DECL_WINELIB_TYPE_AW(LPOFNOTIFYEX) |
| 170 | |
Ricardo Filipe | d904d13 | 2009-02-08 12:20:47 +0000 | [diff] [blame] | 171 | typedef UINT_PTR (CALLBACK *LPCCHOOKPROC) (HWND, UINT, WPARAM, LPARAM); |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 172 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 173 | typedef struct { |
| 174 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 175 | HWND hwndOwner; |
François Gouget | 980eeec | 2001-01-05 03:45:40 +0000 | [diff] [blame] | 176 | HWND hInstance; /* Should be an HINSTANCE but MS made a typo */ |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 177 | DWORD rgbResult; |
| 178 | LPDWORD lpCustColors; |
| 179 | DWORD Flags; |
| 180 | DWORD lCustData; |
| 181 | LPCCHOOKPROC lpfnHook; |
| 182 | LPCSTR lpTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 183 | } CHOOSECOLORA; |
| 184 | typedef CHOOSECOLORA *LPCHOOSECOLORA; |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 185 | |
| 186 | typedef struct { |
| 187 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 188 | HWND hwndOwner; |
François Gouget | 980eeec | 2001-01-05 03:45:40 +0000 | [diff] [blame] | 189 | HWND hInstance; /* Should be an HINSTANCE but MS made a typo */ |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 190 | DWORD rgbResult; |
Gerard Patel | 7324295 | 2000-04-24 17:35:11 +0000 | [diff] [blame] | 191 | LPDWORD lpCustColors; |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 192 | DWORD Flags; |
| 193 | DWORD lCustData; |
| 194 | LPCCHOOKPROC lpfnHook; |
| 195 | LPCWSTR lpTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 196 | } CHOOSECOLORW; |
| 197 | typedef CHOOSECOLORW *LPCHOOSECOLORW; |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 198 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 199 | DECL_WINELIB_TYPE_AW(CHOOSECOLOR) |
| 200 | DECL_WINELIB_TYPE_AW(LPCHOOSECOLOR) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 201 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 202 | |
| 203 | #define CC_RGBINIT 0x00000001 |
| 204 | #define CC_FULLOPEN 0x00000002 |
| 205 | #define CC_PREVENTFULLOPEN 0x00000004 |
| 206 | #define CC_SHOWHELP 0x00000008 |
| 207 | #define CC_ENABLEHOOK 0x00000010 |
| 208 | #define CC_ENABLETEMPLATE 0x00000020 |
| 209 | #define CC_ENABLETEMPLATEHANDLE 0x00000040 |
Francois Gouget | 8a21fca | 2000-11-08 05:02:50 +0000 | [diff] [blame] | 210 | #define CC_SOLIDCOLOR 0x00000080 |
| 211 | #define CC_ANYCOLOR 0x00000100 |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 212 | |
Ricardo Filipe | d904d13 | 2009-02-08 12:20:47 +0000 | [diff] [blame] | 213 | typedef UINT_PTR (CALLBACK *LPFRHOOKPROC)(HWND,UINT,WPARAM,LPARAM); |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 214 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 215 | typedef struct { |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 216 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 217 | HWND hwndOwner; |
| 218 | HINSTANCE hInstance; |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 219 | DWORD Flags; |
| 220 | LPSTR lpstrFindWhat; |
| 221 | LPSTR lpstrReplaceWith; |
| 222 | WORD wFindWhatLen; |
| 223 | WORD wReplaceWithLen; |
| 224 | LPARAM lCustData; |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 225 | LPFRHOOKPROC lpfnHook; |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 226 | LPCSTR lpTemplateName; |
Huw D M Davies | b40a9b7 | 2000-05-26 22:26:06 +0000 | [diff] [blame] | 227 | } FINDREPLACEA, *LPFINDREPLACEA; |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 228 | |
| 229 | typedef struct { |
| 230 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 231 | HWND hwndOwner; |
| 232 | HINSTANCE hInstance; |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 233 | DWORD Flags; |
| 234 | LPWSTR lpstrFindWhat; |
| 235 | LPWSTR lpstrReplaceWith; |
| 236 | WORD wFindWhatLen; |
| 237 | WORD wReplaceWithLen; |
| 238 | LPARAM lCustData; |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 239 | LPFRHOOKPROC lpfnHook; |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 240 | LPCWSTR lpTemplateName; |
Huw D M Davies | b40a9b7 | 2000-05-26 22:26:06 +0000 | [diff] [blame] | 241 | } FINDREPLACEW, *LPFINDREPLACEW; |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 242 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 243 | DECL_WINELIB_TYPE_AW(FINDREPLACE) |
| 244 | DECL_WINELIB_TYPE_AW(LPFINDREPLACE) |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 245 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 246 | #define FR_DOWN 0x00000001 |
| 247 | #define FR_WHOLEWORD 0x00000002 |
| 248 | #define FR_MATCHCASE 0x00000004 |
| 249 | #define FR_FINDNEXT 0x00000008 |
| 250 | #define FR_REPLACE 0x00000010 |
| 251 | #define FR_REPLACEALL 0x00000020 |
| 252 | #define FR_DIALOGTERM 0x00000040 |
| 253 | #define FR_SHOWHELP 0x00000080 |
| 254 | #define FR_ENABLEHOOK 0x00000100 |
| 255 | #define FR_ENABLETEMPLATE 0x00000200 |
| 256 | #define FR_NOUPDOWN 0x00000400 |
| 257 | #define FR_NOMATCHCASE 0x00000800 |
| 258 | #define FR_NOWHOLEWORD 0x00001000 |
| 259 | #define FR_ENABLETEMPLATEHANDLE 0x00002000 |
| 260 | #define FR_HIDEUPDOWN 0x00004000 |
| 261 | #define FR_HIDEMATCHCASE 0x00008000 |
| 262 | #define FR_HIDEWHOLEWORD 0x00010000 |
Phil Krylov | 5d8ffdc | 2003-08-11 18:42:18 +0000 | [diff] [blame] | 263 | #define FR_MATCHDIAC 0x20000000 |
| 264 | #define FR_MATCHKASHIDA 0x40000000 |
| 265 | #define FR_MATCHALEFHAMZA 0x80000000 |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 266 | |
Vincent Povirk | e37bbd6 | 2010-02-15 14:13:16 -0600 | [diff] [blame] | 267 | typedef UINT_PTR (CALLBACK *LPCFHOOKPROC)(HWND,UINT,WPARAM,LPARAM); |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 268 | |
Jon Griffiths | 39bbcb4 | 2004-09-20 19:13:16 +0000 | [diff] [blame] | 269 | typedef struct tagCHOOSEFONTA |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 270 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 271 | UINT lStructSize; |
| 272 | HWND hwndOwner; |
| 273 | HDC hDC; |
| 274 | LPLOGFONTA lpLogFont; |
| 275 | INT iPointSize; |
| 276 | DWORD Flags; |
| 277 | COLORREF rgbColors; |
| 278 | LPARAM lCustData; |
| 279 | LPCFHOOKPROC lpfnHook; |
| 280 | LPCSTR lpTemplateName; |
| 281 | HINSTANCE hInstance; |
| 282 | LPSTR lpszStyle; |
| 283 | WORD nFontType; |
| 284 | WORD ___MISSING_ALIGNMENT__; |
| 285 | INT nSizeMin; |
| 286 | INT nSizeMax; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 287 | } CHOOSEFONTA, *LPCHOOSEFONTA; |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 288 | |
Jon Griffiths | 39bbcb4 | 2004-09-20 19:13:16 +0000 | [diff] [blame] | 289 | typedef struct tagCHOOSEFONTW |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 290 | { |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 291 | UINT lStructSize; |
| 292 | HWND hwndOwner; |
| 293 | HDC hDC; |
| 294 | LPLOGFONTW lpLogFont; |
| 295 | INT iPointSize; |
| 296 | DWORD Flags; |
| 297 | COLORREF rgbColors; |
| 298 | LPARAM lCustData; |
| 299 | LPCFHOOKPROC lpfnHook; |
| 300 | LPCWSTR lpTemplateName; |
| 301 | HINSTANCE hInstance; |
| 302 | LPWSTR lpszStyle; |
| 303 | WORD nFontType; |
| 304 | WORD ___MISSING_ALIGNMENT__; |
| 305 | INT nSizeMin; |
| 306 | INT nSizeMax; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 307 | } CHOOSEFONTW, *LPCHOOSEFONTW; |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 308 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 309 | DECL_WINELIB_TYPE_AW(CHOOSEFONT) |
| 310 | DECL_WINELIB_TYPE_AW(LPCHOOSEFONT) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 311 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 312 | #define CF_SCREENFONTS 0x00000001 |
| 313 | #define CF_PRINTERFONTS 0x00000002 |
| 314 | #define CF_BOTH (CF_SCREENFONTS | CF_PRINTERFONTS) |
| 315 | #define CF_SHOWHELP 0x00000004L |
| 316 | #define CF_ENABLEHOOK 0x00000008L |
| 317 | #define CF_ENABLETEMPLATE 0x00000010L |
| 318 | #define CF_ENABLETEMPLATEHANDLE 0x00000020L |
| 319 | #define CF_INITTOLOGFONTSTRUCT 0x00000040L |
| 320 | #define CF_USESTYLE 0x00000080L |
| 321 | #define CF_EFFECTS 0x00000100L |
| 322 | #define CF_APPLY 0x00000200L |
| 323 | #define CF_ANSIONLY 0x00000400L |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 324 | #define CF_SCRIPTSONLY CF_ANSIONLY |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 325 | #define CF_NOVECTORFONTS 0x00000800L |
| 326 | #define CF_NOOEMFONTS CF_NOVECTORFONTS |
| 327 | #define CF_NOSIMULATIONS 0x00001000L |
| 328 | #define CF_LIMITSIZE 0x00002000L |
| 329 | #define CF_FIXEDPITCHONLY 0x00004000L |
| 330 | #define CF_WYSIWYG 0x00008000L /* use with CF_SCREENFONTS & CF_PRINTERFONTS */ |
| 331 | #define CF_FORCEFONTEXIST 0x00010000L |
| 332 | #define CF_SCALABLEONLY 0x00020000L |
| 333 | #define CF_TTONLY 0x00040000L |
| 334 | #define CF_NOFACESEL 0x00080000L |
| 335 | #define CF_NOSTYLESEL 0x00100000L |
| 336 | #define CF_NOSIZESEL 0x00200000L |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 337 | #define CF_SELECTSCRIPT 0x00400000L |
| 338 | #define CF_NOSCRIPTSEL 0x00800000L |
| 339 | #define CF_NOVERTFONTS 0x01000000L |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 340 | |
| 341 | #define SIMULATED_FONTTYPE 0x8000 |
| 342 | #define PRINTER_FONTTYPE 0x4000 |
| 343 | #define SCREEN_FONTTYPE 0x2000 |
| 344 | #define BOLD_FONTTYPE 0x0100 |
| 345 | #define ITALIC_FONTTYPE 0x0200 |
| 346 | #define REGULAR_FONTTYPE 0x0400 |
| 347 | |
| 348 | #define WM_CHOOSEFONT_GETLOGFONT (WM_USER + 1) |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 349 | #define WM_CHOOSEFONT_SETLOGFONT (WM_USER + 101) |
| 350 | #define WM_CHOOSEFONT_SETFLAGS (WM_USER + 102) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 351 | |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 352 | #define LBSELCHSTRINGA "commdlg_LBSelChangedNotify" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 353 | #if defined(__GNUC__) |
| 354 | # define LBSELCHSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 355 | 'L','B','S','e','l','C','h','a','n','g','e','d','N','o','t','i','f','y',0 } |
| 356 | #elif defined(_MSC_VER) |
| 357 | # define LBSELCHSTRINGW L"commdlg_LBSelChangedNotify" |
| 358 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 359 | static const WCHAR LBSELCHSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 360 | 'L','B','S','e','l','C','h','a','n','g','e','d','N','o','t','i','f','y',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 361 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 362 | #define LBSELCHSTRING WINELIB_NAME_AW(LBSELCHSTRING) |
| 363 | |
| 364 | #define SHAREVISTRINGA "commdlg_ShareViolation" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 365 | #if defined(__GNUC__) |
| 366 | # define SHAREVISTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 367 | 'S','h','a','r','e','V','i','o','l','a','t','i','o','n',0 } |
| 368 | #elif defined(_MSC_VER) |
| 369 | # define SHAREVISTRINGW L"commdlg_ShareViolation" |
| 370 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 371 | static const WCHAR SHAREVISTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 372 | 'S','h','a','r','e','V','i','o','l','a','t','i','o','n',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 373 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 374 | #define SHAREVISTRING WINELIB_NAME_AW(SHAREVISTRING) |
| 375 | |
| 376 | #define FILEOKSTRINGA "commdlg_FileNameOK" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 377 | #if defined(__GNUC__) |
| 378 | # define FILEOKSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 379 | 'F','i','l','e','N','a','m','e','O','K',0 } |
| 380 | #elif defined(_MSC_VER) |
| 381 | # define FILEOKSTRINGW L"commdlg_FileNameOK" |
| 382 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 383 | static const WCHAR FILEOKSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 384 | 'F','i','l','e','N','a','m','e','O','K',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 385 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 386 | #define FILEOKSTRING WINELIB_NAME_AW(FILEOKSTRING) |
| 387 | |
| 388 | #define COLOROKSTRINGA "commdlg_ColorOK" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 389 | #if defined(__GNUC__) |
| 390 | # define COLOROKSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 391 | 'C','o','l','o','r','O','K',0 } |
| 392 | #elif defined(_MSC_VER) |
| 393 | # define COLOROKSTRINGW L"commdlg_ColorOK" |
| 394 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 395 | static const WCHAR COLOROKSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 396 | 'C','o','l','o','r','O','K',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 397 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 398 | #define COLOROKSTRING WINELIB_NAME_AW(COLOROKSTRING) |
| 399 | |
| 400 | #define SETRGBSTRINGA "commdlg_SetRGBColor" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 401 | #if defined(__GNUC__) |
| 402 | # define SETRGBSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 403 | 'S','e','t','R','G','B','C','o','l','o','r',0 } |
| 404 | #elif defined(_MSC_VER) |
| 405 | # define SETRGBSTRINGW L"commdlg_SetRGBColor" |
| 406 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 407 | static const WCHAR SETRGBSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 408 | 'S','e','t','R','G','B','C','o','l','o','r',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 409 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 410 | #define SETRGBSTRING WINELIB_NAME_AW(SETRGBSTRING) |
| 411 | |
| 412 | #define FINDMSGSTRINGA "commdlg_FindReplace" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 413 | #if defined(__GNUC__) |
| 414 | # define FINDMSGSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 415 | 'F','i','n','d','R','e','p','l','a','c','e',0 } |
| 416 | #elif defined(_MSC_VER) |
| 417 | # define FINDMSGSTRINGW L"commdlg_FindReplace" |
| 418 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 419 | static const WCHAR FINDMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 420 | 'F','i','n','d','R','e','p','l','a','c','e',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 421 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 422 | #define FINDMSGSTRING WINELIB_NAME_AW(FINDMSGSTRING) |
| 423 | |
| 424 | #define HELPMSGSTRINGA "commdlg_help" |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 425 | #if defined(__GNUC__) |
| 426 | # define HELPMSGSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \ |
| 427 | 'H','e','l','p',0 } |
| 428 | #elif defined(_MSC_VER) |
| 429 | # define HELPMSGSTRINGW L"commdlg_help" |
| 430 | #else |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 431 | static const WCHAR HELPMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_', |
| 432 | 'H','e','l','p',0 }; |
Dmitry Timoshkov | a9c057f | 2002-09-16 19:29:36 +0000 | [diff] [blame] | 433 | #endif |
Jon Griffiths | 7a6bad8 | 2001-01-22 02:13:58 +0000 | [diff] [blame] | 434 | #define HELPMSGSTRING WINELIB_NAME_AW(HELPMSGSTRING) |
| 435 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 436 | #define CD_LBSELNOITEMS -1 |
| 437 | #define CD_LBSELCHANGE 0 |
| 438 | #define CD_LBSELSUB 1 |
| 439 | #define CD_LBSELADD 2 |
| 440 | |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 441 | #define CDN_FIRST (0U-601U) |
| 442 | #define CDN_LAST (0U-699U) |
| 443 | |
| 444 | #define CDN_INITDONE (CDN_FIRST - 0x0000) |
| 445 | #define CDN_SELCHANGE (CDN_FIRST - 0x0001) |
| 446 | #define CDN_FOLDERCHANGE (CDN_FIRST - 0x0002) |
| 447 | #define CDN_SHAREVIOLATION (CDN_FIRST - 0x0003) |
| 448 | #define CDN_HELP (CDN_FIRST - 0x0004) |
| 449 | #define CDN_FILEOK (CDN_FIRST - 0x0005) |
| 450 | #define CDN_TYPECHANGE (CDN_FIRST - 0x0006) |
Ricardo Filipe | 810508f | 2008-12-17 21:33:37 +0000 | [diff] [blame] | 451 | #define CDN_INCLUDEITEM (CDN_FIRST - 0x0007) |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 452 | |
| 453 | #define CDM_FIRST (WM_USER + 100) |
| 454 | #define CDM_LAST (WM_USER + 200) |
| 455 | |
| 456 | #define CDM_GETSPEC (CDM_FIRST + 0x0000) |
| 457 | #define CDM_GETFILEPATH (CDM_FIRST + 0x0001) |
| 458 | #define CDM_GETFOLDERPATH (CDM_FIRST + 0x0002) |
Mikołaj Zalewski | bbd8706 | 2008-06-19 15:31:35 +0200 | [diff] [blame] | 459 | #define CDM_GETFOLDERIDLIST (CDM_FIRST + 0x0003) |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 460 | #define CDM_SETCONTROLTEXT (CDM_FIRST + 0x0004) |
| 461 | #define CDM_HIDECONTROL (CDM_FIRST + 0x0005) |
| 462 | #define CDM_SETDEFEXT (CDM_FIRST + 0x0006) |
| 463 | |
Michael Cardenas | 6a52a50 | 2000-02-07 17:22:01 +0000 | [diff] [blame] | 464 | |
| 465 | /* Messages to query information from the open or save dialogs */ |
| 466 | |
| 467 | #define CommDlg_OpenSave_GetSpecA(_hdlg, _psz, _cbmax) \ |
| 468 | (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 469 | #define CommDlg_OpenSave_GetSpecW(_hdlg, _psz, _cbmax) \ |
| 470 | (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 471 | #define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec) |
| 472 | |
| 473 | #define CommDlg_OpenSave_GetFilePathA(_hdlg, _psz, _cbmax) \ |
| 474 | (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 475 | #define CommDlg_OpenSave_GetFilePathW(_hdlg, _psz, _cbmax) \ |
| 476 | (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 477 | #define CommDlg_OpenSave_GetFilePath WINELIB_NAME_AW(CommDlg_OpenSave_GetFilePath) |
| 478 | |
| 479 | #define CommDlg_OpenSave_GetFolderPathA(_hdlg, _psz, _cbmax) \ |
| 480 | (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 481 | #define CommDlg_OpenSave_GetFolderPathW(_hdlg, _psz, _cbmax) \ |
| 482 | (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 483 | #define CommDlg_OpenSave_GetFolderPath WINELIB_NAME_AW(CommDlg_OpenSave_GetFolderPath) |
| 484 | |
| 485 | #define CommDlg_OpenSave_GetFolderIDList(_hdlg, _pidl, _cbmax) \ |
| 486 | (int)SNDMSG(_hdlg, CDM_GETFOLDERIDLIST, (WPARAM)_cbmax, (LPARAM)(LPVOID)_pidl) |
| 487 | |
| 488 | #define CommDlg_OpenSave_SetControlText(_hdlg, _id, _text) \ |
| 489 | (void)SNDMSG(_hdlg, CDM_SETCONTROLTEXT, (WPARAM)_id, (LPARAM)(LPSTR)_text) |
| 490 | |
| 491 | #define CommDlg_OpenSave_HideControl(_hdlg, _id) \ |
| 492 | (void)SNDMSG(_hdlg, CDM_HIDECONTROL, (WPARAM)_id, 0) |
| 493 | |
| 494 | #define CommDlg_OpenSave_SetDefExt(_hdlg, _pszext) \ |
| 495 | (void)SNDMSG(_hdlg, CDM_SETDEFEXT, 0, (LPARAM)(LPSTR)_pszext) |
| 496 | |
Michael Cardenas | e5e2fc9 | 2000-06-02 20:25:56 +0000 | [diff] [blame] | 497 | #define CommDlg_OpenSave_GetSpecA(_hdlg, _psz, _cbmax) \ |
| 498 | (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 499 | #define CommDlg_OpenSave_GetSpecW(_hdlg, _psz, _cbmax) \ |
| 500 | (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 501 | #define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec) |
| 502 | |
| 503 | #define CommDlg_OpenSave_GetFilePathA(_hdlg, _psz, _cbmax) \ |
| 504 | (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 505 | #define CommDlg_OpenSave_GetFilePathW(_hdlg, _psz, _cbmax) \ |
| 506 | (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 507 | #define CommDlg_OpenSave_GetFilePath WINELIB_NAME_AW(CommDlg_OpenSave_GetFilePath) |
| 508 | |
| 509 | #define CommDlg_OpenSave_GetFolderPathA(_hdlg, _psz, _cbmax) \ |
| 510 | (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) |
| 511 | #define CommDlg_OpenSave_GetFolderPathW(_hdlg, _psz, _cbmax) \ |
| 512 | (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) |
| 513 | #define CommDlg_OpenSave_GetFolderPath WINELIB_NAME_AW(CommDlg_OpenSave_GetFolderPath) |
| 514 | |
| 515 | #define CommDlg_OpenSave_GetFolderIDList(_hdlg, _pidl, _cbmax) \ |
| 516 | (int)SNDMSG(_hdlg, CDM_GETFOLDERIDLIST, (WPARAM)_cbmax, (LPARAM)(LPVOID)_pidl) |
| 517 | |
| 518 | #define CommDlg_OpenSave_SetControlText(_hdlg, _id, _text) \ |
| 519 | (void)SNDMSG(_hdlg, CDM_SETCONTROLTEXT, (WPARAM)_id, (LPARAM)(LPSTR)_text) |
| 520 | |
| 521 | #define CommDlg_OpenSave_HideControl(_hdlg, _id) \ |
| 522 | (void)SNDMSG(_hdlg, CDM_HIDECONTROL, (WPARAM)_id, 0) |
| 523 | |
| 524 | #define CommDlg_OpenSave_SetDefExt(_hdlg, _pszext) \ |
| 525 | (void)SNDMSG(_hdlg, CDM_SETDEFEXT, 0, (LPARAM)(LPSTR)_pszext) |
| 526 | |
Michael Cardenas | 6a52a50 | 2000-02-07 17:22:01 +0000 | [diff] [blame] | 527 | |
Patrik Stridvall | f94462f | 2002-01-31 23:22:07 +0000 | [diff] [blame] | 528 | typedef UINT (CALLBACK *LPPRINTHOOKPROC) (HWND, UINT, WPARAM, LPARAM); |
| 529 | typedef UINT (CALLBACK *LPSETUPHOOKPROC) (HWND, UINT, WPARAM, LPARAM); |
Paul Quinn | aaa8306 | 1999-06-05 15:23:20 +0000 | [diff] [blame] | 530 | |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 531 | typedef struct tagPDA |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 532 | { |
| 533 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 534 | HWND hwndOwner; |
| 535 | HGLOBAL hDevMode; |
| 536 | HGLOBAL hDevNames; |
| 537 | HDC hDC; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 538 | DWORD Flags; |
| 539 | WORD nFromPage; |
| 540 | WORD nToPage; |
| 541 | WORD nMinPage; |
| 542 | WORD nMaxPage; |
| 543 | WORD nCopies; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 544 | HINSTANCE hInstance; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 545 | LPARAM lCustData; |
| 546 | LPPRINTHOOKPROC lpfnPrintHook; |
| 547 | LPSETUPHOOKPROC lpfnSetupHook; |
| 548 | LPCSTR lpPrintTemplateName; |
| 549 | LPCSTR lpSetupTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 550 | HGLOBAL hPrintTemplate; |
| 551 | HGLOBAL hSetupTemplate; |
| 552 | } PRINTDLGA, *LPPRINTDLGA; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 553 | |
Paul Quinn | 1beaae5 | 1998-12-15 15:38:36 +0000 | [diff] [blame] | 554 | typedef struct tagPDW |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 555 | { |
| 556 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 557 | HWND hwndOwner; |
| 558 | HGLOBAL hDevMode; |
| 559 | HGLOBAL hDevNames; |
| 560 | HDC hDC; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 561 | DWORD Flags; |
| 562 | WORD nFromPage; |
| 563 | WORD nToPage; |
| 564 | WORD nMinPage; |
| 565 | WORD nMaxPage; |
| 566 | WORD nCopies; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 567 | HINSTANCE hInstance; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 568 | LPARAM lCustData; |
| 569 | LPPRINTHOOKPROC lpfnPrintHook; |
| 570 | LPSETUPHOOKPROC lpfnSetupHook; |
| 571 | LPCWSTR lpPrintTemplateName; |
| 572 | LPCWSTR lpSetupTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 573 | HGLOBAL hPrintTemplate; |
| 574 | HGLOBAL hSetupTemplate; |
| 575 | } PRINTDLGW, *LPPRINTDLGW; |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 576 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 577 | DECL_WINELIB_TYPE_AW(PRINTDLG) |
| 578 | DECL_WINELIB_TYPE_AW(LPPRINTDLG) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 579 | |
Detlef Riekenberg | 03f5774d | 2007-10-24 23:52:01 +0200 | [diff] [blame] | 580 | #define PD_ALLPAGES 0x00000000 |
| 581 | #define PD_SELECTION 0x00000001 |
| 582 | #define PD_PAGENUMS 0x00000002 |
| 583 | #define PD_NOSELECTION 0x00000004 |
| 584 | #define PD_NOPAGENUMS 0x00000008 |
| 585 | #define PD_COLLATE 0x00000010 |
| 586 | #define PD_PRINTTOFILE 0x00000020 |
| 587 | #define PD_PRINTSETUP 0x00000040 |
| 588 | #define PD_NOWARNING 0x00000080 |
| 589 | #define PD_RETURNDC 0x00000100 |
| 590 | #define PD_RETURNIC 0x00000200 |
| 591 | #define PD_RETURNDEFAULT 0x00000400 |
| 592 | #define PD_SHOWHELP 0x00000800 |
| 593 | #define PD_ENABLEPRINTHOOK 0x00001000 |
| 594 | #define PD_ENABLESETUPHOOK 0x00002000 |
| 595 | #define PD_ENABLEPRINTTEMPLATE 0x00004000 |
| 596 | #define PD_ENABLESETUPTEMPLATE 0x00008000 |
| 597 | #define PD_ENABLEPRINTTEMPLATEHANDLE 0x00010000 |
| 598 | #define PD_ENABLESETUPTEMPLATEHANDLE 0x00020000 |
| 599 | #define PD_USEDEVMODECOPIES 0x00040000 |
Klaas van Gend | 3d5f2a8 | 1999-08-07 12:34:54 +0000 | [diff] [blame] | 600 | #define PD_USEDEVMODECOPIESANDCOLLATE 0x00040000 |
Detlef Riekenberg | 03f5774d | 2007-10-24 23:52:01 +0200 | [diff] [blame] | 601 | #define PD_DISABLEPRINTTOFILE 0x00080000 |
| 602 | #define PD_HIDEPRINTTOFILE 0x00100000 |
| 603 | #define PD_NONETWORKBUTTON 0x00200000 |
| 604 | #define PD_CURRENTPAGE 0x00400000 |
| 605 | #define PD_NOCURRENTPAGE 0x00800000 |
| 606 | #define PD_EXCLUSIONFLAGS 0x01000000 |
| 607 | #define PD_USELARGETEMPLATE 0x10000000 |
| 608 | |
| 609 | |
| 610 | #define PD_EXCL_COPIESANDCOLLATE (DM_COPIES | DM_COLLATE) |
| 611 | |
| 612 | #define START_PAGE_GENERAL 0xffffffff |
| 613 | |
| 614 | #define PD_RESULT_CANCEL 0 |
| 615 | #define PD_RESULT_PRINT 1 |
| 616 | #define PD_RESULT_APPLY 2 |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 617 | |
Alexandre Julliard | 83f52d1 | 2000-09-26 22:20:14 +0000 | [diff] [blame] | 618 | typedef struct |
| 619 | { |
| 620 | WORD wDriverOffset; |
| 621 | WORD wDeviceOffset; |
| 622 | WORD wOutputOffset; |
| 623 | WORD wDefault; |
| 624 | } DEVNAMES; |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 625 | typedef DEVNAMES * LPDEVNAMES; |
| 626 | |
| 627 | #define DN_DEFAULTPRN 0x0001 |
| 628 | |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 629 | /* PageSetupDlg stuff ... */ |
| 630 | #define WM_PSD_PAGESETUPDLG (WM_USER ) |
| 631 | #define WM_PSD_FULLPAGERECT (WM_USER+1) |
| 632 | #define WM_PSD_MINMARGINRECT (WM_USER+2) |
| 633 | #define WM_PSD_MARGINRECT (WM_USER+3) |
| 634 | #define WM_PSD_GREEKTEXTRECT (WM_USER+4) |
| 635 | #define WM_PSD_ENVSTAMPRECT (WM_USER+5) |
| 636 | #define WM_PSD_YAFULLPAGERECT (WM_USER+6) |
| 637 | |
Patrik Stridvall | f94462f | 2002-01-31 23:22:07 +0000 | [diff] [blame] | 638 | typedef UINT (CALLBACK *LPPAGEPAINTHOOK)( HWND, UINT, WPARAM, LPARAM ); |
| 639 | typedef UINT (CALLBACK *LPPAGESETUPHOOK)( HWND, UINT, WPARAM, LPARAM ); |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 640 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 641 | typedef struct tagPSDA |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 642 | { |
| 643 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 644 | HWND hwndOwner; |
| 645 | HGLOBAL hDevMode; |
| 646 | HGLOBAL hDevNames; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 647 | DWORD Flags; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 648 | POINT ptPaperSize; |
| 649 | RECT rtMinMargin; |
| 650 | RECT rtMargin; |
| 651 | HINSTANCE hInstance; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 652 | LPARAM lCustData; |
| 653 | LPPAGESETUPHOOK lpfnPageSetupHook; |
| 654 | LPPAGEPAINTHOOK lpfnPagePaintHook; |
| 655 | LPCSTR lpPageSetupTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 656 | HGLOBAL hPageSetupTemplate; |
| 657 | } PAGESETUPDLGA,*LPPAGESETUPDLGA; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 658 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 659 | typedef struct tagPSDW |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 660 | { |
| 661 | DWORD lStructSize; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 662 | HWND hwndOwner; |
| 663 | HGLOBAL hDevMode; |
| 664 | HGLOBAL hDevNames; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 665 | DWORD Flags; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 666 | POINT ptPaperSize; |
| 667 | RECT rtMinMargin; |
| 668 | RECT rtMargin; |
| 669 | HINSTANCE hInstance; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 670 | LPARAM lCustData; |
| 671 | LPPAGESETUPHOOK lpfnPageSetupHook; |
| 672 | LPPAGEPAINTHOOK lpfnPagePaintHook; |
| 673 | LPCWSTR lpPageSetupTemplateName; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 674 | HGLOBAL hPageSetupTemplate; |
| 675 | } PAGESETUPDLGW,*LPPAGESETUPDLGW; |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 676 | DECL_WINELIB_TYPE_AW(PAGESETUPDLG) |
| 677 | DECL_WINELIB_TYPE_AW(LPPAGESETUPDLG) |
| 678 | |
| 679 | #define PSD_DEFAULTMINMARGINS 0x00000000 |
| 680 | #define PSD_INWININIINTLMEASURE 0x00000000 |
| 681 | |
| 682 | #define PSD_MINMARGINS 0x00000001 |
| 683 | #define PSD_MARGINS 0x00000002 |
| 684 | #define PSD_INTHOUSANDTHSOFINCHES 0x00000004 |
| 685 | #define PSD_INHUNDREDTHSOFMILLIMETERS 0x00000008 |
| 686 | #define PSD_DISABLEMARGINS 0x00000010 |
| 687 | #define PSD_DISABLEPRINTER 0x00000020 |
| 688 | #define PSD_NOWARNING 0x00000080 |
| 689 | #define PSD_DISABLEORIENTATION 0x00000100 |
| 690 | #define PSD_RETURNDEFAULT 0x00000400 |
| 691 | #define PSD_DISABLEPAPER 0x00000200 |
| 692 | #define PSD_SHOWHELP 0x00000800 |
| 693 | #define PSD_ENABLEPAGESETUPHOOK 0x00002000 |
| 694 | #define PSD_ENABLEPAGESETUPTEMPLATE 0x00008000 |
| 695 | #define PSD_ENABLEPAGESETUPTEMPLATEHANDLE 0x00020000 |
| 696 | #define PSD_ENABLEPAGEPAINTHOOK 0x00040000 |
| 697 | #define PSD_DISABLEPAGEPAINTING 0x00080000 |
Detlef Riekenberg | 03f5774d | 2007-10-24 23:52:01 +0200 | [diff] [blame] | 698 | #define PSD_NONETWORKBUTTON 0x00200000 |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 699 | |
Eric Pouech | a8d8b52 | 2005-04-18 10:01:07 +0000 | [diff] [blame] | 700 | typedef struct tagPRINTPAGERANGE |
| 701 | { |
| 702 | DWORD nFromPage; |
| 703 | DWORD nToPage; |
| 704 | } PRINTPAGERANGE, *LPPRINTPAGERANGE; |
| 705 | |
| 706 | typedef struct tagPDEXA |
| 707 | { |
| 708 | DWORD lStructSize; |
| 709 | HWND hwndOwner; |
| 710 | HGLOBAL hDevMode; |
| 711 | HGLOBAL hDevNames; |
| 712 | HDC hDC; |
| 713 | DWORD Flags; |
| 714 | DWORD Flags2; |
| 715 | DWORD ExclusionFlags; |
| 716 | DWORD nPageRanges; |
| 717 | DWORD nMaxPageRanges; |
| 718 | LPPRINTPAGERANGE lpPageRanges; |
| 719 | DWORD nMinPage; |
| 720 | DWORD nMaxPage; |
| 721 | DWORD nCopies; |
| 722 | HINSTANCE hInstance; |
| 723 | LPCSTR lpPrintTemplateName; |
| 724 | void* /*LPUNKNOWN*/ lpCallback; |
| 725 | DWORD nPropertyPages; |
| 726 | HPROPSHEETPAGE* lphPropertyPages; |
| 727 | DWORD nStartPage; |
| 728 | DWORD dwResultAction; |
| 729 | } PRINTDLGEXA, *LPPRINTDLGEXA; |
| 730 | |
| 731 | typedef struct tagPDEXW |
| 732 | { |
| 733 | DWORD lStructSize; |
| 734 | HWND hwndOwner; |
| 735 | HGLOBAL hDevMode; |
| 736 | HGLOBAL hDevNames; |
| 737 | HDC hDC; |
| 738 | DWORD Flags; |
| 739 | DWORD Flags2; |
| 740 | DWORD ExclusionFlags; |
| 741 | DWORD nPageRanges; |
| 742 | DWORD nMaxPageRanges; |
| 743 | LPPRINTPAGERANGE lpPageRanges; |
| 744 | DWORD nMinPage; |
| 745 | DWORD nMaxPage; |
| 746 | DWORD nCopies; |
| 747 | HINSTANCE hInstance; |
| 748 | LPCWSTR lpPrintTemplateName; |
| 749 | void* /*LPUNKNOWN*/ lpCallback; |
| 750 | DWORD nPropertyPages; |
| 751 | HPROPSHEETPAGE* lphPropertyPages; |
| 752 | DWORD nStartPage; |
| 753 | DWORD dwResultAction; |
| 754 | } PRINTDLGEXW, *LPPRINTDLGEXW; |
| 755 | |
| 756 | DECL_WINELIB_TYPE_AW(PRINTDLGEX) |
| 757 | DECL_WINELIB_TYPE_AW(LPPRINTDLGEX) |
Huw D M Davies | b40a9b7 | 2000-05-26 22:26:06 +0000 | [diff] [blame] | 758 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 759 | BOOL WINAPI ChooseColorA(LPCHOOSECOLORA lpChCol); |
| 760 | BOOL WINAPI ChooseColorW(LPCHOOSECOLORW lpChCol); |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 761 | #define ChooseColor WINELIB_NAME_AW(ChooseColor) |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 762 | DWORD WINAPI CommDlgExtendedError(void); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 763 | HWND WINAPI FindTextA(LPFINDREPLACEA lpFind); |
| 764 | HWND WINAPI FindTextW(LPFINDREPLACEW lpFind); |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 765 | #define FindText WINELIB_NAME_AW(FindText) |
Ge van Geldorp | 5bec0d7 | 2004-03-12 01:52:11 +0000 | [diff] [blame] | 766 | short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, WORD cbBuf); |
| 767 | short WINAPI GetFileTitleW(LPCWSTR lpFile, LPWSTR lpTitle, WORD cbBuf); |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 768 | #define GetFileTitle WINELIB_NAME_AW(GetFileTitle) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 769 | BOOL WINAPI GetOpenFileNameA(LPOPENFILENAMEA ofn); |
| 770 | BOOL WINAPI GetOpenFileNameW(LPOPENFILENAMEW ofn); |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 771 | #define GetOpenFileName WINELIB_NAME_AW(GetOpenFileName) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 772 | BOOL WINAPI GetSaveFileNameA(LPOPENFILENAMEA ofn); |
| 773 | BOOL WINAPI GetSaveFileNameW(LPOPENFILENAMEW ofn); |
Alexandre Julliard | 33072e1 | 1997-06-29 18:08:02 +0000 | [diff] [blame] | 774 | #define GetSaveFileName WINELIB_NAME_AW(GetSaveFileName) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 775 | BOOL WINAPI PageSetupDlgA( LPPAGESETUPDLGA ); |
| 776 | BOOL WINAPI PageSetupDlgW( LPPAGESETUPDLGW ); |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 777 | #define PageSetupDlg WINELIB_NAME_AW(PageSetupDlg) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 778 | BOOL WINAPI PrintDlgA( LPPRINTDLGA printdlg); |
| 779 | BOOL WINAPI PrintDlgW( LPPRINTDLGW printdlg); |
Uwe Bonnes | 9fdceb8 | 1998-11-08 13:12:49 +0000 | [diff] [blame] | 780 | #define PrintDlg WINELIB_NAME_AW(PrintDlg) |
Eric Pouech | a8d8b52 | 2005-04-18 10:01:07 +0000 | [diff] [blame] | 781 | HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA); |
| 782 | HRESULT WINAPI PrintDlgExW(LPPRINTDLGEXW); |
| 783 | #define PrintDlgEx WINELIB_NAME_AW(PrintDlgEx) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 784 | HWND WINAPI ReplaceTextA( LPFINDREPLACEA lpFind); |
| 785 | HWND WINAPI ReplaceTextW( LPFINDREPLACEW lpFind); |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 786 | #define ReplaceText WINELIB_NAME_AW(ReplaceText) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 787 | BOOL WINAPI ChooseFontA(LPCHOOSEFONTA); |
| 788 | BOOL WINAPI ChooseFontW(LPCHOOSEFONTW); |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 789 | #define ChooseFont WINELIB_NAME_AW(ChooseFont) |
Klaas van Gend | 3c6253b | 1999-03-15 15:16:54 +0000 | [diff] [blame] | 790 | |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 791 | void COMDLG32_SetCommDlgExtendedError(DWORD err); |
Francois Boisvert | 87b81de | 1999-07-27 16:20:36 +0000 | [diff] [blame] | 792 | |
Klaas van Gend | 3c6253b | 1999-03-15 15:16:54 +0000 | [diff] [blame] | 793 | |
Maarten Lankhorst | 424caea | 2008-12-13 23:06:48 +0100 | [diff] [blame] | 794 | #ifndef _WIN64 |
Dimitrie O. Paun | 53f9c21 | 2003-08-28 21:43:34 +0000 | [diff] [blame] | 795 | #include <poppack.h> |
Maarten Lankhorst | 424caea | 2008-12-13 23:06:48 +0100 | [diff] [blame] | 796 | #endif |
Klaas van Gend | b24a67f | 1999-05-02 11:22:50 +0000 | [diff] [blame] | 797 | |
Alexandre Julliard | 1e9ac79 | 1996-06-06 18:38:27 +0000 | [diff] [blame] | 798 | #ifdef __cplusplus |
| 799 | } |
| 800 | #endif |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 801 | |
Alexandre Julliard | 1e9ac79 | 1996-06-06 18:38:27 +0000 | [diff] [blame] | 802 | #endif /* __WINE_COMMDLG_H */ |