mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
33072e1f2c
Thu Jun 26 02:14:03 1997 Slaven Rezic <eserte@cs.tu-berlin.de> * [Makefile.in] New target install_includes. * [rc/parser.h] [rc/parser.y] [rc/winerc.c] Some bug fixes. Wed Jun 25 14:43:41 1997 Victor Schneider <vischne@ibm.net> * [controls/edit.c] Fixed WM_GETTEXT return value. Tue Jun 24 23:46:04 1997 Michiel van Loon <mfvl@xs4all.nl> * [multimedia/*.c] [include/mmsystem.h] Added more callback code, including (I hope) function callback. Changed some linear pointers into segmented. * [multimedia/audio.c] Removed some bugs. Sat Jun 28 11:37:56 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [if1632/commdlg.spec][if1632/comdlg32.spec][misc/commdlg.c] [include/commdlg.h] Implemented parts of comdlg32: GetOpenFileName32*, GetSaveFileName32*, GetFileTitle32* using the 16 bit equivalents. * [windows/event.c] EVENT_QueryZOrder: check for children !=NULL (happens when using -managed). * [BUGS][DEVELOPER-HINTS] Updated. * [objects/text.c] Added GetTextCharset... (stub mostly). Sat Jun 21 08:47:58 1997 Philippe De Muyter <phdm@info.ucl.ac.be> * [if1632/kernel.spec] [if1632/gdi.spec] [include/windows.h] [loader/resource.c] [graphics/x11drv/xfont.c] SetResourceHandler & RemoveFontResource prototypes fixed. * [if1632/relay.c] [if1632/kernel.spec] [if1632/user.spec] [if1632/olesvr.spec] [if1632/commdlg.spec] [if1632/ddeml.spec] [if1632/gdi.spec] [if1632/lzexpand.spec] [if1632/shell.spec] [include/windows.h] [memory/string.c] [tools/build.c] New type of parameter allowed in .spec files : str, printed as a string with -debugmsg +relay. .spec files updated. * [objects/dc.c] In DC_SetupGCForPen, call BlackPixelOfScreen, not BlackPixel. Likewise for WhitePixel. * [objects/gdiobj.c] [graphics/x11drv/brush.c] Use BS_HATCHED with an added entry in HatchBrushes for DkGrayBrush, instead of BS_SOLID. Fri May 30 17:58:00 1997 Chris Faherty <chrisf@america.com> * [windows/keyboard.c] Added vkey to scancode translation table. This was primarily to fix Citrix WinFrame client which always needs scancodes in WM_KEYDOWN. Tested with Exceed 5.1.0.1 & XFree86 3.1.2.
361 lines
12 KiB
C
361 lines
12 KiB
C
/*
|
|
* COMMDLG - Common Wine Dialog ... :-)
|
|
*/
|
|
|
|
#ifndef __WINE_COMMDLG_H
|
|
#define __WINE_COMMDLG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "wintypes.h" /* needed for CHOOSEFONT structure */
|
|
|
|
#define RT_CURSOR MAKEINTRESOURCE(1)
|
|
#define RT_BITMAP MAKEINTRESOURCE(2)
|
|
#define RT_ICON MAKEINTRESOURCE(3)
|
|
#define RT_MENU MAKEINTRESOURCE(4)
|
|
#define RT_DIALOG MAKEINTRESOURCE(5)
|
|
#define RT_STRING MAKEINTRESOURCE(6)
|
|
#define RT_FONTDIR MAKEINTRESOURCE(7)
|
|
#define RT_FONT MAKEINTRESOURCE(8)
|
|
#define RT_ACCELERATOR MAKEINTRESOURCE(9)
|
|
#define RT_RCDATA MAKEINTRESOURCE(10)
|
|
|
|
#define RT_GROUP_CURSOR MAKEINTRESOURCE(12)
|
|
#define RT_GROUP_ICON MAKEINTRESOURCE(14)
|
|
|
|
#define OFN_READONLY 0x00000001
|
|
#define OFN_OVERWRITEPROMPT 0x00000002
|
|
#define OFN_HIDEREADONLY 0x00000004
|
|
#define OFN_NOCHANGEDIR 0x00000008
|
|
#define OFN_SHOWHELP 0x00000010
|
|
#define OFN_ENABLEHOOK 0x00000020
|
|
#define OFN_ENABLETEMPLATE 0x00000040
|
|
#define OFN_ENABLETEMPLATEHANDLE 0x00000080
|
|
#define OFN_NOVALIDATE 0x00000100
|
|
#define OFN_ALLOWMULTISELECT 0x00000200
|
|
#define OFN_EXTENSIONDIFFERENT 0x00000400
|
|
#define OFN_PATHMUSTEXIST 0x00000800
|
|
#define OFN_FILEMUSTEXIST 0x00001000
|
|
#define OFN_CREATEPROMPT 0x00002000
|
|
#define OFN_SHAREAWARE 0x00004000
|
|
#define OFN_NOREADONLYRETURN 0x00008000
|
|
#define OFN_NOTESTFILECREATE 0x00010000
|
|
|
|
#define OFN_UNICODE 0x40000000 /*to differ between 32W/A hook*/
|
|
#define OFN_WINE32 0x80000000 /* comdlg32 */
|
|
|
|
#define OFN_SHAREFALLTHROUGH 2
|
|
#define OFN_SHARENOWARN 1
|
|
#define OFN_SHAREWARN 0
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND16 hwndOwner;
|
|
HINSTANCE16 hInstance;
|
|
SEGPTR lpstrFilter;
|
|
SEGPTR lpstrCustomFilter;
|
|
DWORD nMaxCustFilter;
|
|
DWORD nFilterIndex;
|
|
SEGPTR lpstrFile;
|
|
DWORD nMaxFile;
|
|
SEGPTR lpstrFileTitle;
|
|
DWORD nMaxFileTitle;
|
|
SEGPTR lpstrInitialDir;
|
|
SEGPTR lpstrTitle;
|
|
DWORD Flags;
|
|
UINT16 nFileOffset;
|
|
UINT16 nFileExtension;
|
|
SEGPTR lpstrDefExt;
|
|
LPARAM lCustData;
|
|
WNDPROC16 lpfnHook;
|
|
SEGPTR lpTemplateName;
|
|
} OPENFILENAME16,*LPOPENFILENAME16;
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND32 hwndOwner;
|
|
HINSTANCE32 hInstance;
|
|
LPCSTR lpstrFilter;
|
|
LPSTR lpstrCustomFilter;
|
|
DWORD nMaxCustFilter;
|
|
DWORD nFilterIndex;
|
|
LPSTR lpstrFile;
|
|
DWORD nMaxFile;
|
|
LPSTR lpstrFileTitle;
|
|
DWORD nMaxFileTitle;
|
|
LPCSTR lpstrInitialDir;
|
|
LPCSTR lpstrTitle;
|
|
DWORD Flags;
|
|
WORD nFileOffset;
|
|
WORD nFileExtension;
|
|
LPCSTR lpstrDefExt;
|
|
LPARAM lCustData;
|
|
WNDPROC32 lpfnHook;
|
|
LPCSTR lpTemplateName;
|
|
} OPENFILENAME32A,*LPOPENFILENAME32A;
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND32 hwndOwner;
|
|
HINSTANCE32 hInstance;
|
|
LPCWSTR lpstrFilter;
|
|
LPWSTR lpstrCustomFilter;
|
|
DWORD nMaxCustFilter;
|
|
DWORD nFilterIndex;
|
|
LPWSTR lpstrFile;
|
|
DWORD nMaxFile;
|
|
LPWSTR lpstrFileTitle;
|
|
DWORD nMaxFileTitle;
|
|
LPCWSTR lpstrInitialDir;
|
|
LPCWSTR lpstrTitle;
|
|
DWORD Flags;
|
|
WORD nFileOffset;
|
|
WORD nFileExtension;
|
|
LPCWSTR lpstrDefExt;
|
|
LPARAM lCustData;
|
|
WNDPROC32 lpfnHook;
|
|
LPCWSTR lpTemplateName;
|
|
} OPENFILENAME32W,*LPOPENFILENAME32W;
|
|
|
|
DECL_WINELIB_TYPE_AW(OPENFILENAME);
|
|
DECL_WINELIB_TYPE_AW(LPOPENFILENAME);
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND16 hwndOwner;
|
|
HWND16 hInstance;
|
|
COLORREF rgbResult;
|
|
COLORREF *lpCustColors;
|
|
DWORD Flags;
|
|
LPARAM lCustData;
|
|
WNDPROC16 lpfnHook;
|
|
SEGPTR lpTemplateName;
|
|
} CHOOSECOLOR;
|
|
typedef CHOOSECOLOR *LPCHOOSECOLOR;
|
|
|
|
#define CC_RGBINIT 0x00000001
|
|
#define CC_FULLOPEN 0x00000002
|
|
#define CC_PREVENTFULLOPEN 0x00000004
|
|
#define CC_SHOWHELP 0x00000008
|
|
#define CC_ENABLEHOOK 0x00000010
|
|
#define CC_ENABLETEMPLATE 0x00000020
|
|
#define CC_ENABLETEMPLATEHANDLE 0x00000040
|
|
|
|
typedef struct {
|
|
DWORD lStructSize; /* size of this struct 0x20 */
|
|
HWND16 hwndOwner; /* handle to owner's window */
|
|
HINSTANCE16 hInstance; /* instance handle of.EXE that */
|
|
/* contains cust. dlg. template */
|
|
DWORD Flags; /* one or more of the FR_?? */
|
|
SEGPTR lpstrFindWhat; /* ptr. to search string */
|
|
SEGPTR lpstrReplaceWith; /* ptr. to replace string */
|
|
UINT16 wFindWhatLen; /* size of find buffer */
|
|
UINT16 wReplaceWithLen; /* size of replace buffer */
|
|
LPARAM lCustData; /* data passed to hook fn. */
|
|
WNDPROC16 lpfnHook;
|
|
SEGPTR lpTemplateName; /* custom template name */
|
|
} FINDREPLACE;
|
|
typedef FINDREPLACE *LPFINDREPLACE;
|
|
|
|
#define FR_DOWN 0x00000001
|
|
#define FR_WHOLEWORD 0x00000002
|
|
#define FR_MATCHCASE 0x00000004
|
|
#define FR_FINDNEXT 0x00000008
|
|
#define FR_REPLACE 0x00000010
|
|
#define FR_REPLACEALL 0x00000020
|
|
#define FR_DIALOGTERM 0x00000040
|
|
#define FR_SHOWHELP 0x00000080
|
|
#define FR_ENABLEHOOK 0x00000100
|
|
#define FR_ENABLETEMPLATE 0x00000200
|
|
#define FR_NOUPDOWN 0x00000400
|
|
#define FR_NOMATCHCASE 0x00000800
|
|
#define FR_NOWHOLEWORD 0x00001000
|
|
#define FR_ENABLETEMPLATEHANDLE 0x00002000
|
|
#define FR_HIDEUPDOWN 0x00004000
|
|
#define FR_HIDEMATCHCASE 0x00008000
|
|
#define FR_HIDEWHOLEWORD 0x00010000
|
|
|
|
|
|
#pragma pack(1)
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND16 hwndOwner; /* caller's window handle */
|
|
HDC16 hDC; /* printer DC/IC or NULL */
|
|
SEGPTR lpLogFont; /* ptr. to a LOGFONT struct */
|
|
short iPointSize; /* 10 * size in points of selected font */
|
|
DWORD Flags WINE_PACKED; /* enum. type flags */
|
|
COLORREF rgbColors; /* returned text color */
|
|
LPARAM lCustData; /* data passed to hook fn. */
|
|
WNDPROC16 lpfnHook;
|
|
SEGPTR lpTemplateName; /* custom template name */
|
|
HINSTANCE16 hInstance; /* instance handle of.EXE that */
|
|
/* contains cust. dlg. template */
|
|
SEGPTR lpszStyle WINE_PACKED; /* return the style field here */
|
|
/* must be LF_FACESIZE or bigger */
|
|
UINT16 nFontType; /* same value reported to the */
|
|
/* EnumFonts callback with the */
|
|
/* extra FONTTYPE_ bits added */
|
|
short nSizeMin WINE_PACKED; /* minimum pt size allowed & */
|
|
short nSizeMax WINE_PACKED; /* max pt size allowed if */
|
|
/* CF_LIMITSIZE is used */
|
|
} CHOOSEFONT;
|
|
typedef CHOOSEFONT *LPCHOOSEFONT;
|
|
|
|
#pragma pack(4)
|
|
|
|
#define CF_SCREENFONTS 0x00000001
|
|
#define CF_PRINTERFONTS 0x00000002
|
|
#define CF_BOTH (CF_SCREENFONTS | CF_PRINTERFONTS)
|
|
#define CF_SHOWHELP 0x00000004L
|
|
#define CF_ENABLEHOOK 0x00000008L
|
|
#define CF_ENABLETEMPLATE 0x00000010L
|
|
#define CF_ENABLETEMPLATEHANDLE 0x00000020L
|
|
#define CF_INITTOLOGFONTSTRUCT 0x00000040L
|
|
#define CF_USESTYLE 0x00000080L
|
|
#define CF_EFFECTS 0x00000100L
|
|
#define CF_APPLY 0x00000200L
|
|
#define CF_ANSIONLY 0x00000400L
|
|
#define CF_NOVECTORFONTS 0x00000800L
|
|
#define CF_NOOEMFONTS CF_NOVECTORFONTS
|
|
#define CF_NOSIMULATIONS 0x00001000L
|
|
#define CF_LIMITSIZE 0x00002000L
|
|
#define CF_FIXEDPITCHONLY 0x00004000L
|
|
#define CF_WYSIWYG 0x00008000L /* use with CF_SCREENFONTS & CF_PRINTERFONTS */
|
|
#define CF_FORCEFONTEXIST 0x00010000L
|
|
#define CF_SCALABLEONLY 0x00020000L
|
|
#define CF_TTONLY 0x00040000L
|
|
#define CF_NOFACESEL 0x00080000L
|
|
#define CF_NOSTYLESEL 0x00100000L
|
|
#define CF_NOSIZESEL 0x00200000L
|
|
|
|
#define SIMULATED_FONTTYPE 0x8000
|
|
#define PRINTER_FONTTYPE 0x4000
|
|
#define SCREEN_FONTTYPE 0x2000
|
|
#define BOLD_FONTTYPE 0x0100
|
|
#define ITALIC_FONTTYPE 0x0200
|
|
#define REGULAR_FONTTYPE 0x0400
|
|
|
|
#define WM_CHOOSEFONT_GETLOGFONT (WM_USER + 1)
|
|
|
|
#define LBSELCHSTRING "commdlg_LBSelChangedNotify"
|
|
#define SHAREVISTRING "commdlg_ShareViolation"
|
|
#define FILEOKSTRING "commdlg_FileNameOK"
|
|
#define COLOROKSTRING "commdlg_ColorOK"
|
|
#define SETRGBSTRING "commdlg_SetRGBColor"
|
|
#define FINDMSGSTRING "commdlg_FindReplace"
|
|
#define HELPMSGSTRING "commdlg_help"
|
|
|
|
#define CD_LBSELNOITEMS -1
|
|
#define CD_LBSELCHANGE 0
|
|
#define CD_LBSELSUB 1
|
|
#define CD_LBSELADD 2
|
|
|
|
typedef struct {
|
|
DWORD lStructSize;
|
|
HWND16 hwndOwner;
|
|
HGLOBAL16 hDevMode;
|
|
HGLOBAL16 hDevNames;
|
|
HDC16 hDC;
|
|
DWORD Flags;
|
|
UINT16 nFromPage;
|
|
UINT16 nToPage;
|
|
UINT16 nMinPage;
|
|
UINT16 nMaxPage;
|
|
UINT16 nCopies;
|
|
HINSTANCE16 hInstance;
|
|
LPARAM lCustData;
|
|
WNDPROC16 lpfnPrintHook;
|
|
WNDPROC16 lpfnSetupHook;
|
|
SEGPTR lpPrintTemplateName;
|
|
SEGPTR lpSetupTemplateName;
|
|
HGLOBAL16 hPrintTemplate;
|
|
HGLOBAL16 hSetupTemplate;
|
|
} PRINTDLG;
|
|
typedef PRINTDLG * LPPRINTDLG;
|
|
|
|
#define PD_ALLPAGES 0x00000000
|
|
#define PD_SELECTION 0x00000001
|
|
#define PD_PAGENUMS 0x00000002
|
|
#define PD_NOSELECTION 0x00000004
|
|
#define PD_NOPAGENUMS 0x00000008
|
|
#define PD_COLLATE 0x00000010
|
|
#define PD_PRINTTOFILE 0x00000020
|
|
#define PD_PRINTSETUP 0x00000040
|
|
#define PD_NOWARNING 0x00000080
|
|
#define PD_RETURNDC 0x00000100
|
|
#define PD_RETURNIC 0x00000200
|
|
#define PD_RETURNDEFAULT 0x00000400
|
|
#define PD_SHOWHELP 0x00000800
|
|
#define PD_ENABLEPRINTHOOK 0x00001000
|
|
#define PD_ENABLESETUPHOOK 0x00002000
|
|
#define PD_ENABLEPRINTTEMPLATE 0x00004000
|
|
#define PD_ENABLESETUPTEMPLATE 0x00008000
|
|
#define PD_ENABLEPRINTTEMPLATEHANDLE 0x00010000
|
|
#define PD_ENABLESETUPTEMPLATEHANDLE 0x00020000
|
|
#define PD_USEDEVMODECOPIES 0x00040000
|
|
#define PD_DISABLEPRINTTOFILE 0x00080000
|
|
#define PD_HIDEPRINTTOFILE 0x00100000
|
|
|
|
typedef struct {
|
|
UINT16 wDriverOffset;
|
|
UINT16 wDeviceOffset;
|
|
UINT16 wOutputOffset;
|
|
UINT16 wDefault;
|
|
} DEVNAMES;
|
|
typedef DEVNAMES * LPDEVNAMES;
|
|
|
|
#define DN_DEFAULTPRN 0x0001
|
|
|
|
|
|
#define CDERR_DIALOGFAILURE 0xFFFF
|
|
#define CDERR_GENERALCODES 0x0000
|
|
#define CDERR_STRUCTSIZE 0x0001
|
|
#define CDERR_INITIALIZATION 0x0002
|
|
#define CDERR_NOTEMPLATE 0x0003
|
|
#define CDERR_NOHINSTANCE 0x0004
|
|
#define CDERR_LOADSTRFAILURE 0x0005
|
|
#define CDERR_FINDRESFAILURE 0x0006
|
|
#define CDERR_LOADRESFAILURE 0x0007
|
|
#define CDERR_LOCKRESFAILURE 0x0008
|
|
#define CDERR_MEMALLOCFAILURE 0x0009
|
|
#define CDERR_MEMLOCKFAILURE 0x000A
|
|
#define CDERR_NOHOOK 0x000B
|
|
#define CDERR_REGISTERMSGFAIL 0x000C
|
|
|
|
BOOL16 ChooseColor(LPCHOOSECOLOR lpChCol);
|
|
DWORD CommDlgExtendedError(void);
|
|
HWND16 FindText( SEGPTR find);
|
|
INT16 GetFileTitle16(LPCSTR lpFile, LPSTR lpTitle, UINT16 cbBuf);
|
|
INT16 GetFileTitle32A(LPCSTR lpFile, LPSTR lpTitle, UINT32 cbBuf);
|
|
INT16 GetFileTitle32W(LPCWSTR lpFile, LPWSTR lpTitle, UINT32 cbBuf);
|
|
#define GetFileTitle WINELIB_NAME_AW(GetFileTitle)
|
|
BOOL16 GetOpenFileName16(SEGPTR ofn);
|
|
BOOL32 GetOpenFileName32A(LPOPENFILENAME32A ofn);
|
|
BOOL32 GetOpenFileName32W(LPOPENFILENAME32W ofn);
|
|
#define GetOpenFileName WINELIB_NAME_AW(GetOpenFileName)
|
|
BOOL16 GetSaveFileName16(SEGPTR ofn);
|
|
BOOL32 GetSaveFileName32A(LPOPENFILENAME32A ofn);
|
|
BOOL32 GetSaveFileName32W(LPOPENFILENAME32W ofn);
|
|
#define GetSaveFileName WINELIB_NAME_AW(GetSaveFileName)
|
|
BOOL16 PrintDlg( SEGPTR print);
|
|
HWND16 ReplaceText( SEGPTR find);
|
|
BOOL16 ChooseFont(LPCHOOSEFONT lpChFont);
|
|
|
|
LRESULT FileOpenDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT FileSaveDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT ColorDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT FindTextDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT ReplaceTextDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT PrintDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT PrintSetupDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
LRESULT FormatCharDlgProc(HWND16 hWnd, UINT16 wMsg, WPARAM16 wParam, LPARAM lParam);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_COMMDLG_H */
|