1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
{*****************************************}
{ }
{ FastReport v2.3 }
{ Include file }
{ }
{ Copyright (c) 1998-99 by Tzyganenko A. }
{ }
{*****************************************}
{$mode objfpc}
{$B-} {- Complete Boolean Evaluation }
{$R-} {- Range-Checking }
{$V-} {- Var-String Checking }
{$T-} {- Typed @ operator }
{$X+} {- Extended syntax }
{$P+} {- Open string params }
{$J+} {- Writeable structured consts }
{$H+} {- Use long strings by default }
{$DEFINE HASVARIANT}
//{$DEFINE FREEREP2217READ}
//-------------------------Additional components----------------------------
//------------------- JPEG images -----------------------------------
// JPEG images - only available in Delphi 3 and above.
// If you want to show jpeg images in "Picture" object, uncomment
// the following line:
//{$DEFINE JPEG}
//------------------- Interbase Express (IBX) components ------------
// Allows using Interbase DB's in data manager with no BDE required.
//{$DEFINE IBX}
//------------------- LazReport Options
//
// Enabling following define allow initialization of global localization
// variables using libc. This is not supported in all platforms, see readme.txt
//{$DEFINE UseLibC}
//
// Controls the modal behaviour of Report Designer, modal by default.
{$DEFINE MODALDESIGNER}
//
// Enable following define to get Object Inspector in one external window
//{$DEFINE EXTOI}
//
// In Some widgetsets Report Designer can't be modal if Object Inspector is in
// external window, the current default is embedded Object Inspector
{$IFDEF EXTOI}
{$IFNDEF MSWINDOWS}
{$UNDEFINE MODALDESIGNER}
{$ENDIF}
{$ENDIF}
{$DEFINE Delphi5}
{$if FPC_FULLVERSION<20701}
// in former FCL versions TBookmark was a simple pointer
{$DEFINE noautomatedbookmark}
{$endif}
{$IFDEF Darwin}
{$DEFINE PRINTDIALOG_NATIVE_PRINTDIALOG}
{$DEFINE PRINTDIALOG_DISABLE_PRINTER_PROPERTIES}
{$ENDIF}
{$IFDEF MSWINDOWS}
{$DEFINE USE_PRINTER_FONTS}
{$ENDIF}
|