home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / COMMDLG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  25KB  |  663 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Run-time Library                         }
  5. {       Windows 32bit API Interface Unit                }
  6. {                                                       }
  7. {       Copyright (c) 1995,96 Borland International     }
  8. {                                                       }
  9. {*******************************************************}
  10.  
  11. unit CommDlg;
  12.  
  13. interface
  14.  
  15. uses Windows, Messages;
  16.  
  17. type
  18.   POpenFilenameA = ^TOpenFilenameA;
  19.   POpenFilenameW = ^TOpenFilenameW;
  20.   POpenFilename = POpenFilenameA;
  21.   TOpenFilenameA = packed record
  22.     lStructSize: DWORD;
  23.     hWndOwner: HWND;
  24.     hInstance: HINST;
  25.     lpstrFilter: PAnsiChar;
  26.     lpstrCustomFilter: PAnsiChar;
  27.     nMaxCustFilter: DWORD;
  28.     nFilterIndex: DWORD;
  29.     lpstrFile: PAnsiChar;
  30.     nMaxFile: DWORD;
  31.     lpstrFileTitle: PAnsiChar;
  32.     nMaxFileTitle: DWORD;
  33.     lpstrInitialDir: PAnsiChar;
  34.     lpstrTitle: PAnsiChar;
  35.     Flags: DWORD;
  36.     nFileOffset: Word;
  37.     nFileExtension: Word;
  38.     lpstrDefExt: PAnsiChar;
  39.     lCustData: LPARAM;
  40.     lpfnHook: function(Wnd: HWND; Msg: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  41.     lpTemplateName: PAnsiChar;
  42.   end;
  43.   TOpenFilenameW = packed record
  44.     lStructSize: DWORD;
  45.     hWndOwner: HWND;
  46.     hInstance: HINST;
  47.     lpstrFilter: PWideChar;
  48.     lpstrCustomFilter: PWideChar;
  49.     nMaxCustFilter: DWORD;
  50.     nFilterIndex: DWORD;
  51.     lpstrFile: PWideChar;
  52.     nMaxFile: DWORD;
  53.     lpstrFileTitle: PWideChar;
  54.     nMaxFileTitle: DWORD;
  55.     lpstrInitialDir: PWideChar;
  56.     lpstrTitle: PWideChar;
  57.     Flags: DWORD;
  58.     nFileOffset: Word;
  59.     nFileExtension: Word;
  60.     lpstrDefExt: PWideChar;
  61.     lCustData: LPARAM;
  62.     lpfnHook: function(Wnd: HWND; Msg: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  63.     lpTemplateName: PWideChar;
  64.   end;
  65.   TOpenFilename = TOpenFilenameA;
  66.  
  67. function GetOpenFileNameA(var OpenFile: TOpenFilenameA): Bool; stdcall;
  68. function GetOpenFileNameW(var OpenFile: TOpenFilenameW): Bool; stdcall;
  69. function GetOpenFileName(var OpenFile: TOpenFilename): Bool; stdcall;
  70. function GetSaveFileNameA(var OpenFile: TOpenFilenameA): Bool; stdcall;
  71. function GetSaveFileNameW(var OpenFile: TOpenFilenameW): Bool; stdcall;
  72. function GetSaveFileName(var OpenFile: TOpenFilename): Bool; stdcall;
  73. function GetFileTitleA(FileName: PAnsiChar; Title: PAnsiChar; TitleSize: Word): Smallint; stdcall;
  74. function GetFileTitleW(FileName: PWideChar; Title: PWideChar; TitleSize: Word): Smallint; stdcall;
  75. function GetFileTitle(FileName: PChar; Title: PChar; TitleSize: Word): Smallint; stdcall;
  76.  
  77. const
  78.   OFN_READONLY = $00000001;
  79.   OFN_OVERWRITEPROMPT = $00000002;
  80.   OFN_HIDEREADONLY = $00000004;
  81.   OFN_NOCHANGEDIR = $00000008;
  82.   OFN_SHOWHELP = $00000010;
  83.   OFN_ENABLEHOOK = $00000020;
  84.   OFN_ENABLETEMPLATE = $00000040;
  85.   OFN_ENABLETEMPLATEHANDLE = $00000080;
  86.   OFN_NOVALIDATE = $00000100;
  87.   OFN_ALLOWMULTISELECT = $00000200;
  88.   OFN_EXTENSIONDIFFERENT = $00000400;
  89.   OFN_PATHMUSTEXIST = $00000800;
  90.   OFN_FILEMUSTEXIST = $00001000;
  91.   OFN_CREATEPROMPT = $00002000;
  92.   OFN_SHAREAWARE = $00004000;
  93.   OFN_NOREADONLYRETURN = $00008000;
  94.   OFN_NOTESTFILECREATE = $00010000;
  95.   OFN_NONETWORKBUTTON = $00020000;
  96.   OFN_NOLONGNAMES = $00040000;
  97.   OFN_EXPLORER = $00080000;
  98.   OFN_NODEREFERENCELINKS = $00100000;
  99.   OFN_LONGNAMES = $00200000;
  100.  
  101. { Return values for the registered message sent to the hook function
  102.   when a sharing violation occurs.  OFN_SHAREFALLTHROUGH allows the
  103.   filename to be accepted, OFN_SHARENOWARN rejects the name but puts
  104.   up no warning (returned when the app has already put up a warning
  105.   message), and OFN_SHAREWARN puts up the default warning message
  106.   for sharing violations.
  107.  
  108.   Note:  Undefined return values map to OFN_SHAREWARN, but are
  109.          reserved for future use. }
  110.  
  111.   OFN_SHAREFALLTHROUGH = 2;
  112.   OFN_SHARENOWARN = 1;
  113.   OFN_SHAREWARN = 0;
  114.  
  115. type
  116.   POFNotifyA = ^TOFNotifyA;
  117.   POFNotifyW = ^TOFNotifyW;
  118.   POFNotify = POFNotifyA;
  119.   TOFNotifyA = packed record
  120.     hdr: TNMHdr;
  121.     lpOFN: POpenFilenameA;
  122.     pszFile: PAnsiChar;
  123.   end;
  124.   TOFNotifyW = packed record
  125.     hdr: TNMHdr;
  126.     lpOFN: POpenFilenameW;
  127.     pszFile: PWideChar;
  128.   end;
  129.   TOFNotify = TOFNotifyA;
  130.  
  131. const
  132.   CDN_FIRST = -601;
  133.   CDN_LAST = -699;
  134.  
  135. { Notifications when Open or Save dialog status changes }
  136.  
  137.   CDN_INITDONE = CDN_FIRST - 0;
  138.   CDN_SELCHANGE = CDN_FIRST - 1;
  139.   CDN_FOLDERCHANGE = CDN_FIRST - 2;
  140.   CDN_SHAREVIOLATION = CDN_FIRST - 3;
  141.   CDN_HELP = CDN_FIRST - 4;
  142.   CDN_FILEOK = CDN_FIRST - 5;
  143.   CDN_TYPECHANGE = CDN_FIRST - 6;
  144.  
  145.   CDM_FIRST = WM_USER + 100;
  146.   CDM_LAST = WM_USER + 200;
  147.  
  148. { Messages to query information from the Open or Save dialogs }
  149.  
  150. { lParam = pointer to text buffer that gets filled in
  151.   wParam = max number of characters of the text buffer (including NULL)
  152.   return = < 0 if error; number of characters needed (including NULL) }
  153.  
  154.   CDM_GETSPEC = CDM_FIRST + 0;
  155.  
  156. { lParam = pointer to text buffer that gets filled in
  157.   wParam = max number of characters of the text buffer (including NULL)
  158.   return = < 0 if error; number of characters needed (including NULL) }
  159.  
  160.   CDM_GETFILEPATH = CDM_FIRST + 1;
  161.  
  162. { lParam = pointer to text buffer that gets filled in
  163.   wParam = max number of characters of the text buffer (including NULL)
  164.   return = < 0 if error; number of characters needed (including NULL) }
  165.  
  166.   CDM_GETFOLDERPATH = CDM_FIRST + 2;
  167.  
  168. { lParam = pointer to ITEMIDLIST buffer that gets filled in
  169.   wParam = size of the ITEMIDLIST buffer
  170.   return = < 0 if error; length of buffer needed }
  171.  
  172.   CDM_GETFOLDERIDLIST = CDM_FIRST + 3;
  173.  
  174. { lParam = pointer to a string
  175.   wParam = ID of control to change
  176.   return = not used }
  177.  
  178.   CDM_SETCONTROLTEXT = CDM_FIRST + 4;
  179.  
  180. { lParam = not used
  181.   wParam = ID of control to change
  182.   return = not used }
  183.  
  184.   CDM_HIDECONTROL = CDM_FIRST + 5;
  185.  
  186. { lParam = pointer to default extension (no dot)
  187.   wParam = not used
  188.   return = not used }
  189.  
  190.   CDM_SETDEFEXT = CDM_FIRST + 6;
  191.  
  192. type
  193.   PChooseColorA = ^TChooseColorA;
  194.   PChooseColorW = ^TChooseColorW;
  195.   PChooseColor = PChooseColorA;
  196.   TChooseColorA = packed record
  197.     lStructSize: DWORD;
  198.     hWndOwner: HWND;
  199.     hInstance: HWND;
  200.     rgbResult: COLORREF;
  201.     lpCustColors: ^COLORREF;
  202.     Flags: DWORD;
  203.     lCustData: LPARAM;
  204.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  205.     lpTemplateName: PAnsiChar;
  206.   end;
  207.   TChooseColorW = packed record
  208.     lStructSize: DWORD;
  209.     hWndOwner: HWND;
  210.     hInstance: HWND;
  211.     rgbResult: COLORREF;
  212.     lpCustColors: ^COLORREF;
  213.     Flags: DWORD;
  214.     lCustData: LPARAM;
  215.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  216.     lpTemplateName: PWideChar;
  217.   end;
  218.   TChooseColor = TChooseColorA;
  219.  
  220. function ChooseColorA(var CC: TChooseColorA): Bool; stdcall;
  221. function ChooseColorW(var CC: TChooseColorW): Bool; stdcall;
  222. function ChooseColor(var CC: TChooseColor): Bool; stdcall;
  223.  
  224. const
  225.   CC_RGBINIT = $00000001;
  226.   CC_FULLOPEN = $00000002;
  227.   CC_PREVENTFULLOPEN = $00000004;
  228.   CC_SHOWHELP = $00000008;
  229.   CC_ENABLEHOOK = $00000010;
  230.   CC_ENABLETEMPLATE = $00000020;
  231.   CC_ENABLETEMPLATEHANDLE = $00000040;
  232.   CC_SOLIDCOLOR = $00000080;
  233.   CC_ANYCOLOR = $00000100;
  234.  
  235. type
  236.   PFindReplaceA = ^TFindReplaceA;
  237.   PFindReplaceW = ^TFindReplaceW;
  238.   PFindReplace = PFindReplaceA;
  239.   TFindReplaceA = packed record
  240.     lStructSize: DWORD;        { size of this struct $20 }
  241.     hWndOwner: HWND;             { handle to owner's window }
  242.     hInstance: HINST;        { instance handle of.EXE that
  243.                                    contains cust. dlg. template }
  244.     Flags: DWORD;                { one or more of the fr_?? }
  245.     lpstrFindWhat: PAnsiChar;       { ptr. to search string    }
  246.     lpstrReplaceWith: PAnsiChar;    { ptr. to replace string   }
  247.     wFindWhatLen: Word;          { size of find buffer      }
  248.     wReplaceWithLen: Word;       { size of replace buffer   }
  249.     lCustData: LPARAM;           { data passed to hook fn.  }
  250.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  251.                                  { ptr. to hook fn. or nil }
  252.     lpTemplateName: PAnsiChar;     { custom template name     }
  253.   end;
  254.   TFindReplaceW = packed record
  255.     lStructSize: DWORD;        { size of this struct $20 }
  256.     hWndOwner: HWND;             { handle to owner's window }
  257.     hInstance: HINST;        { instance handle of.EXE that
  258.                                    contains cust. dlg. template }
  259.     Flags: DWORD;                { one or more of the fr_?? }
  260.     lpstrFindWhat: PWideChar;       { ptr. to search string    }
  261.     lpstrReplaceWith: PWideChar;    { ptr. to replace string   }
  262.     wFindWhatLen: Word;          { size of find buffer      }
  263.     wReplaceWithLen: Word;       { size of replace buffer   }
  264.     lCustData: LPARAM;           { data passed to hook fn.  }
  265.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  266.                                  { ptr. to hook fn. or nil }
  267.     lpTemplateName: PWideChar;     { custom template name     }
  268.   end;
  269.   TFindReplace = TFindReplaceA;
  270.  
  271. const
  272.   FR_DOWN = $00000001;
  273.   FR_WHOLEWORD = $00000002;
  274.   FR_MATCHCASE = $00000004;
  275.   FR_FINDNEXT = $00000008;
  276.   FR_REPLACE = $00000010;
  277.   FR_REPLACEALL = $00000020;
  278.   FR_DIALOGTERM = $00000040;
  279.   FR_SHOWHELP = $00000080;
  280.   FR_ENABLEHOOK = $00000100;
  281.   FR_ENABLETEMPLATE = $00000200;
  282.   FR_NOUPDOWN = $00000400;
  283.   FR_NOMATCHCASE = $00000800;
  284.   FR_NOWHOLEWORD = $00001000;
  285.   FR_ENABLETEMPLATEHandle = $00002000;
  286.   FR_HIDEUPDOWN = $00004000;
  287.   FR_HIDEMATCHCASE = $00008000;
  288.   FR_HIDEWHOLEWORD = $00010000;
  289.  
  290. function FindTextA(var FindReplace: TFindReplaceA): HWND; stdcall;
  291. function FindTextW(var FindReplace: TFindReplaceW): HWND; stdcall;
  292. function FindText(var FindReplace: TFindReplace): HWND; stdcall;
  293. function ReplaceTextA(var FindReplace: TFindReplaceA): HWND; stdcall;
  294. function ReplaceTextW(var FindReplace: TFindReplaceW): HWND; stdcall;
  295. function ReplaceText(var FindReplace: TFindReplace): HWND; stdcall;
  296.  
  297. type
  298.   PChooseFontA = ^TChooseFontA;
  299.   PChooseFontW = ^TChooseFontW;
  300.   PChooseFont = PChooseFontA;
  301.   TChooseFontA = packed record
  302.     lStructSize: DWORD;
  303.     hWndOwner: HWnd;            { caller's window handle }
  304.     hDC: HDC;                   { printer DC/IC or nil }
  305.     lpLogFont: PLogFontA;     { pointer to a LOGFONT struct }
  306.     iPointSize: Integer;        { 10 * size in points of selected font }
  307.     Flags: DWORD;               { dialog flags }
  308.     rgbColors: COLORREF;        { returned text color }
  309.     lCustData: LPARAM;          { data passed to hook function }
  310.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  311.                                 { pointer to hook function }
  312.     lpTemplateName: PAnsiChar;    { custom template name }
  313.     hInstance: HINST;       { instance handle of EXE that contains
  314.                                   custom dialog template }
  315.     lpszStyle: PAnsiChar;         { return the style field here
  316.                                   must be lf_FaceSize or bigger }
  317.     nFontType: Word;            { same value reported to the EnumFonts
  318.                                   call back with the extra fonttype_
  319.                                   bits added }
  320.     wReserved: Word;
  321.     nSizeMin: Integer;          { minimum point size allowed and }
  322.     nSizeMax: Integer;          { maximum point size allowed if
  323.                                   cf_LimitSize is used }
  324.   end;
  325.   TChooseFontW = packed record
  326.     lStructSize: DWORD;
  327.     hWndOwner: HWnd;            { caller's window handle }
  328.     hDC: HDC;                   { printer DC/IC or nil }
  329.     lpLogFont: PLogFontW;     { pointer to a LOGFONT struct }
  330.     iPointSize: Integer;        { 10 * size in points of selected font }
  331.     Flags: DWORD;               { dialog flags }
  332.     rgbColors: COLORREF;        { returned text color }
  333.     lCustData: LPARAM;          { data passed to hook function }
  334.     lpfnHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  335.                                 { pointer to hook function }
  336.     lpTemplateName: PWideChar;    { custom template name }
  337.     hInstance: HINST;       { instance handle of EXE that contains
  338.                                   custom dialog template }
  339.     lpszStyle: PWideChar;         { return the style field here
  340.                                   must be lf_FaceSize or bigger }
  341.     nFontType: Word;            { same value reported to the EnumFonts
  342.                                   call back with the extra fonttype_
  343.                                   bits added }
  344.     wReserved: Word;
  345.     nSizeMin: Integer;          { minimum point size allowed and }
  346.     nSizeMax: Integer;          { maximum point size allowed if
  347.                                   cf_LimitSize is used }
  348.   end;
  349.   TChooseFont = TChooseFontA;
  350.  
  351. function ChooseFontA(var ChooseFont: TChooseFontA): Bool; stdcall;
  352. function ChooseFontW(var ChooseFont: TChooseFontW): Bool; stdcall;
  353. function ChooseFont(var ChooseFont: TChooseFont): Bool; stdcall;
  354.  
  355. const
  356.   CF_SCREENFONTS = $00000001;
  357.   CF_PRINTERFONTS = $00000002;
  358.   CF_BOTH = CF_SCREENFONTS OR CF_PRINTERFONTS;
  359.   CF_SHOWHELP = $00000004;
  360.   CF_ENABLEHOOK = $00000008;
  361.   CF_ENABLETEMPLATE = $00000010;
  362.   CF_ENABLETEMPLATEHANDLE = $00000020;
  363.   CF_INITTOLOGFONTSTRUCT = $00000040;
  364.   CF_USESTYLE = $00000080;
  365.   CF_EFFECTS = $00000100;
  366.   CF_APPLY = $00000200;
  367.   CF_ANSIONLY = $00000400;
  368.   CF_SCRIPTSONLY = CF_ANSIONLY;
  369.   CF_NOVECTORFONTS = $00000800;
  370.   CF_NOOEMFONTS = CF_NOVECTORFONTS;
  371.   CF_NOSIMULATIONS = $00001000;
  372.   CF_LIMITSIZE = $00002000;
  373.   CF_FIXEDPITCHONLY = $00004000;
  374.   CF_WYSIWYG = $00008000; { must also have CF_SCREENFONTS & CF_PRINTERFONTS }
  375.   CF_FORCEFONTEXIST = $00010000;
  376.   CF_SCALABLEONLY = $00020000;
  377.   CF_TTONLY = $00040000;
  378.   CF_NOFACESEL = $00080000;
  379.   CF_NOSTYLESEL = $00100000;
  380.   CF_NOSIZESEL = $00200000;
  381.   CF_SELECTSCRIPT = $00400000;
  382.   CF_NOSCRIPTSEL = $00800000;
  383.   CF_NOVERTFONTS = $01000000;
  384.  
  385. { these are extra nFontType bits that are added to what is returned to the
  386.   EnumFonts callback routine }
  387.  
  388.   SIMULATED_FONTTYPE = $8000;
  389.   PRINTER_FONTTYPE = $4000;
  390.   SCREEN_FONTTYPE = $2000;
  391.   BOLD_FONTTYPE = $0100;
  392.   ITALIC_FONTTYPE = $0200;
  393.   REGULAR_FONTTYPE = $0400;
  394.  
  395.   WM_CHOOSEFONT_GETLOGFONT = WM_USER + 1;
  396.   WM_CHOOSEFONT_SETLOGFONT = WM_USER + 101;
  397.   WM_CHOOSEFONT_SETFLAGS = WM_USER + 102;
  398.  
  399. { strings used to obtain unique window message for communication
  400.   between dialog and caller }
  401.  
  402.   LBSELCHSTRING = 'commdlg_LBSelChangedNotify';
  403.   SHAREVISTRING = 'commdlg_ShareViolation';
  404.   FILEOKSTRING  = 'commdlg_FileNameOK';
  405.   COLOROKSTRING = 'commdlg_ColorOK';
  406.   SETRGBSTRING  = 'commdlg_SetRGBColor';
  407.   FINDMSGSTRING = 'commdlg_FindReplace';
  408.   HELPMSGSTRING = 'commdlg_help';
  409.  
  410. { HIWORD values for lParam of commdlg_LBSelChangeNotify message }
  411.  
  412. const
  413.   CD_LBSELNOITEMS = -1;
  414.   CD_LBSELCHANGE  = 0;
  415.   CD_LBSELSUB     = 1;
  416.   CD_LBSELADD     = 2;
  417.  
  418. type
  419.   PPrintDlgA = ^TPrintDlgA;
  420.   PPrintDlgW = ^TPrintDlgW;
  421.   PPrintDlg = PPrintDlgA;
  422.   TPrintDlgA = packed record
  423.     lStructSize: DWORD;
  424.     hWndOwner: HWND;
  425.     hDevMode: HGLOBAL;
  426.     hDevNames: HGLOBAL;
  427.     hDC: HDC;
  428.     Flags: DWORD;
  429.     nFromPage: Word;
  430.     nToPage: Word;
  431.     nMinPage: Word;
  432.     nMaxPage: Word;
  433.     nCopies: Word;
  434.     hInstance: HINST;
  435.     lCustData: LPARAM;
  436.     lpfnPrintHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  437.     lpfnSetupHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  438.     lpPrintTemplateName: PAnsiChar;
  439.     lpSetupTemplateName: PAnsiChar;
  440.     hPrintTemplate: HGLOBAL;
  441.     hSetupTemplate: HGLOBAL;
  442.   end;
  443.   TPrintDlgW = packed record
  444.     lStructSize: DWORD;
  445.     hWndOwner: HWND;
  446.     hDevMode: HGLOBAL;
  447.     hDevNames: HGLOBAL;
  448.     hDC: HDC;
  449.     Flags: DWORD;
  450.     nFromPage: Word;
  451.     nToPage: Word;
  452.     nMinPage: Word;
  453.     nMaxPage: Word;
  454.     nCopies: Word;
  455.     hInstance: HINST;
  456.     lCustData: LPARAM;
  457.     lpfnPrintHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  458.     lpfnSetupHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  459.     lpPrintTemplateName: PWideChar;
  460.     lpSetupTemplateName: PWideChar;
  461.     hPrintTemplate: HGLOBAL;
  462.     hSetupTemplate: HGLOBAL;
  463.   end;
  464.   TPrintDlg = TPrintDlgA;
  465.  
  466. function PrintDlgA(var PrintDlg: TPrintDlgA): Bool; stdcall;
  467. function PrintDlgW(var PrintDlg: TPrintDlgW): Bool; stdcall;
  468. function PrintDlg(var PrintDlg: TPrintDlg): Bool; stdcall;
  469.  
  470. const
  471.   PD_ALLPAGES = $00000000;
  472.   PD_SELECTION = $00000001;
  473.   PD_PAGENUMS = $00000002;
  474.   PD_NOSELECTION = $00000004;
  475.   PD_NOPAGENUMS = $00000008;
  476.   PD_COLLATE = $00000010;
  477.   PD_PRINTTOFILE = $00000020;
  478.   PD_PRINTSETUP = $00000040;
  479.   PD_NOWARNING = $00000080;
  480.   PD_RETURNDC = $00000100;
  481.   PD_RETURNIC = $00000200;
  482.   PD_RETURNDEFAULT = $00000400;
  483.   PD_SHOWHELP = $00000800;
  484.   PD_ENABLEPRINTHOOK = $00001000;
  485.   PD_ENABLESETUPHOOK = $00002000;
  486.   PD_ENABLEPRINTTEMPLATE = $00004000;
  487.   PD_ENABLESETUPTEMPLATE = $00008000;
  488.   PD_ENABLEPRINTTEMPLATEHANDLE = $00010000;
  489.   PD_ENABLESETUPTEMPLATEHANDLE = $00020000;
  490.   PD_USEDEVMODECOPIES = $00040000;
  491.   PD_USEDEVMODECOPIESANDCOLLATE = $00040000;
  492.   PD_DISABLEPRINTTOFILE = $00080000;
  493.   PD_HIDEPRINTTOFILE = $00100000;
  494.   PD_NONETWORKBUTTON = $00200000;
  495.  
  496. type
  497.   PDevNames = ^TDevNames;
  498.   TDevNames = record
  499.     wDriverOffset: Word;
  500.     wDeviceOffset: Word;
  501.     wOutputOffset: Word;
  502.     wDefault: Word;
  503.   end;
  504.  
  505. const
  506.   DN_DEFAULTPRN = $0001;
  507.  
  508. function CommDlgExtendedError: DWORD; stdcall;
  509.  
  510. const
  511.   WM_PSD_PAGESETUPDLG     = WM_USER;
  512.   WM_PSD_FULLPAGERECT     = WM_USER + 1;
  513.   WM_PSD_MINMARGINRECT    = WM_USER + 2;
  514.   WM_PSD_MARGINRECT       = WM_USER + 3;
  515.   WM_PSD_GREEKTEXTRECT    = WM_USER + 4;
  516.   WM_PSD_ENVSTAMPRECT     = WM_USER + 5;
  517.   WM_PSD_YAFULLPAGERECT   = WM_USER + 6;
  518.  
  519. type
  520.   PPageSetupDlgA = ^TPageSetupDlgA;
  521.   PPageSetupDlgW = ^TPageSetupDlgW;
  522.   PPageSetupDlg = PPageSetupDlgA;
  523.   TPageSetupDlgA = packed record
  524.     lStructSize: DWORD;
  525.     hwndOwner: HWND;
  526.     hDevMode: HGLOBAL;
  527.     hDevNames: HGLOBAL;
  528.     Flags: DWORD;
  529.     ptPaperSize: TPoint;
  530.     rtMinMargin: TRect;
  531.     rtMargin: TRect;
  532.     hInstance: HINST;
  533.     lCustData: LPARAM;
  534.     lpfnPageSetupHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  535.     lpfnPagePaintHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  536.     lpPageSetupTemplateName: PAnsiChar;
  537.     hPageSetupTemplate: HGLOBAL;
  538.   end;
  539.   TPageSetupDlgW = packed record
  540.     lStructSize: DWORD;
  541.     hwndOwner: HWND;
  542.     hDevMode: HGLOBAL;
  543.     hDevNames: HGLOBAL;
  544.     Flags: DWORD;
  545.     ptPaperSize: TPoint;
  546.     rtMinMargin: TRect;
  547.     rtMargin: TRect;
  548.     hInstance: HINST;
  549.     lCustData: LPARAM;
  550.     lpfnPageSetupHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  551.     lpfnPagePaintHook: function(Wnd: HWND; Message: UINT; wParam: WPARAM; lParam: LPARAM): UINT stdcall;
  552.     lpPageSetupTemplateName: PWideChar;
  553.     hPageSetupTemplate: HGLOBAL;
  554.   end;
  555.   TPageSetupDlg = TPageSetupDlgA;
  556.  
  557. function PageSetupDlgA(var PgSetupDialog: TPageSetupDlgA): BOOL; stdcall;
  558. function PageSetupDlgW(var PgSetupDialog: TPageSetupDlgW): BOOL; stdcall;
  559. function PageSetupDlg(var PgSetupDialog: TPageSetupDlg): BOOL; stdcall;
  560.  
  561. const
  562.   PSD_DEFAULTMINMARGINS             = $00000000; { default (printer's) }
  563.   PSD_INWININIINTLMEASURE           = $00000000; { 1st of 4 possible }
  564.  
  565.   PSD_MINMARGINS                    = $00000001; { use caller's }
  566.   PSD_MARGINS                       = $00000002; { use caller's }
  567.   PSD_INTHOUSANDTHSOFINCHES         = $00000004; { 2nd of 4 possible }
  568.   PSD_INHUNDREDTHSOFMILLIMETERS     = $00000008; { 3rd of 4 possible }
  569.   PSD_DISABLEMARGINS                = $00000010;
  570.   PSD_DISABLEPRINTER                = $00000020;
  571.   PSD_NOWARNING                     = $00000080; { must be same as PD_* }
  572.   PSD_DISABLEORIENTATION            = $00000100;
  573.   PSD_RETURNDEFAULT                 = $00000400; { must be same as PD_* }
  574.   PSD_DISABLEPAPER                  = $00000200;
  575.   PSD_SHOWHELP                      = $00000800; { must be same as PD_* }
  576.   PSD_ENABLEPAGESETUPHOOK           = $00002000; { must be same as PD_* }
  577.   PSD_ENABLEPAGESETUPTEMPLATE       = $00008000; { must be same as PD_* }
  578.   PSD_ENABLEPAGESETUPTEMPLATEHANDLE = $00020000; { must be same as PD_* }
  579.   PSD_ENABLEPAGEPAINTHOOK           = $00040000;
  580.   PSD_DISABLEPAGEPAINTING           = $00080000;
  581.  
  582.  
  583. { Common dialog error return codes }
  584.  
  585. const
  586.   CDERR_DIALOGFAILURE    = $FFFF;
  587.  
  588.   CDERR_GENERALCODES     = $0000;
  589.   CDERR_STRUCTSIZE       = $0001;
  590.   CDERR_INITIALIZATION   = $0002;
  591.   CDERR_NOTEMPLATE       = $0003;
  592.   CDERR_NOHINSTANCE      = $0004;
  593.   CDERR_LOADSTRFAILURE   = $0005;
  594.   CDERR_FINDRESFAILURE   = $0006;
  595.   CDERR_LOADRESFAILURE   = $0007;
  596.   CDERR_LOCKRESFAILURE   = $0008;
  597.   CDERR_MEMALLOCFAILURE  = $0009;
  598.   CDERR_MEMLOCKFAILURE   = $000A;
  599.   CDERR_NOHOOK           = $000B;
  600.   CDERR_REGISTERMSGFAIL  = $000C;
  601.  
  602.   PDERR_PRINTERCODES     = $1000;
  603.   PDERR_SETUPFAILURE     = $1001;
  604.   PDERR_PARSEFAILURE     = $1002;
  605.   PDERR_RETDEFFAILURE    = $1003;
  606.   PDERR_LOADDRVFAILURE   = $1004;
  607.   PDERR_GETDEVMODEFAIL   = $1005;
  608.   PDERR_INITFAILURE      = $1006;
  609.   PDERR_NODEVICES        = $1007;
  610.   PDERR_NODEFAULTPRN     = $1008;
  611.   PDERR_DNDMMISMATCH     = $1009;
  612.   PDERR_CREATEICFAILURE  = $100A;
  613.   PDERR_PRINTERNOTFOUND  = $100B;
  614.   PDERR_DEFAULTDIFFERENT = $100C;
  615.  
  616.   CFERR_CHOOSEFONTCODES  = $2000;
  617.   CFERR_NOFONTS          = $2001;
  618.   CFERR_MAXLESSTHANMIN   = $2002;
  619.  
  620.   FNERR_FILENAMECODES    = $3000;
  621.   FNERR_SUBCLASSFAILURE  = $3001;
  622.   FNERR_INVALIDFILENAME  = $3002;
  623.   FNERR_BUFFERTOOSMALL   = $3003;
  624.  
  625.   FRERR_FINDREPLACECODES = $4000;
  626.   FRERR_BUFFERLENGTHZERO = $4001;
  627.  
  628.   CCERR_CHOOSECOLORCODES = $5000;
  629.  
  630. implementation
  631.  
  632. function GetOpenFileNameA;      external 'comdlg32.dll'  name 'GetOpenFileNameA';
  633. function GetOpenFileNameW;      external 'comdlg32.dll'  name 'GetOpenFileNameW';
  634. function GetOpenFileName;      external 'comdlg32.dll'  name 'GetOpenFileNameA';
  635. function GetSaveFileNameA;   external 'comdlg32.dll'  name 'GetSaveFileNameA';
  636. function GetSaveFileNameW;   external 'comdlg32.dll'  name 'GetSaveFileNameW';
  637. function GetSaveFileName;   external 'comdlg32.dll'  name 'GetSaveFileNameA';
  638. function GetFileTitleA;      external 'comdlg32.dll'  name 'GetFileTitleA';
  639. function GetFileTitleW;      external 'comdlg32.dll'  name 'GetFileTitleW';
  640. function GetFileTitle;      external 'comdlg32.dll'  name 'GetFileTitleA';
  641. function ChooseColorA;       external 'comdlg32.dll'  name 'ChooseColorA';
  642. function ChooseColorW;       external 'comdlg32.dll'  name 'ChooseColorW';
  643. function ChooseColor;       external 'comdlg32.dll'  name 'ChooseColorA';
  644. function FindTextA;          external 'comdlg32.dll'  name 'FindTextA';
  645. function FindTextW;          external 'comdlg32.dll'  name 'FindTextW';
  646. function FindText;          external 'comdlg32.dll'  name 'FindTextA';
  647. function ReplaceTextA;       external 'comdlg32.dll'  name 'ReplaceTextA';
  648. function ReplaceTextW;       external 'comdlg32.dll'  name 'ReplaceTextW';
  649. function ReplaceText;       external 'comdlg32.dll'  name 'ReplaceTextA';
  650. function ChooseFontA;        external 'comdlg32.dll'  name 'ChooseFontA';
  651. function ChooseFontW;        external 'comdlg32.dll'  name 'ChooseFontW';
  652. function ChooseFont;        external 'comdlg32.dll'  name 'ChooseFontA';
  653. function PrintDlgA;          external 'comdlg32.dll'  name 'PrintDlgA';
  654. function PrintDlgW;          external 'comdlg32.dll'  name 'PrintDlgW';
  655. function PrintDlg;          external 'comdlg32.dll'  name 'PrintDlgA';
  656. function CommDlgExtendedError; external 'comdlg32.dll'  name 'CommDlgExtendedError';
  657. function PageSetupDlgA;      external 'comdlg32.dll'  name 'PageSetupDlgA';
  658. function PageSetupDlgW;      external 'comdlg32.dll'  name 'PageSetupDlgW';
  659. function PageSetupDlg;      external 'comdlg32.dll'  name 'PageSetupDlgA';
  660.  
  661. end.
  662.  
  663.