home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d12345 / CHEMPLOT.ZIP / TPlot / Plot.inc < prev    next >
Text File  |  2001-05-31  |  1KB  |  42 lines

  1. {What Delphi version are we using ?}
  2. {$I Chemware.inc}
  3.  
  4. {BC++B support:}
  5. {$IFDEF BCB}
  6. {$ObjExportAll On}
  7. {$ENDIF}
  8.  
  9. {Some people love 'em, some hate 'em:}
  10. {.$ DEFINE FINANCIAL}
  11. {NOTE: This adds a "Financial" menu, and associated goodies.
  12.  Does not work yet.}
  13.  
  14. {For those poor buggers that don't have the Pro versions:}
  15. {$DEFINE NO_MATH}
  16.  
  17. {This includes GIF picture format support:}
  18. {.$ DEFINE GIF}
  19. {NOTE: you must download GIFImage.pas separately, and place it in the TPlot/TGifimage directory.}
  20.  
  21. {This includes PNG picture format support. This adds 6 kb to the executable, but requires libpng.dll 1.08-1.10}
  22. {.$ DEFINE PNG}
  23. {NOTE: you must download Pngimage.pas separately, and place it in the TPlot/pnglib directory.}
  24. {NOTE2: PNG works AUTOMATICALLY under Linux because it is a basic Delphi picture file format.}
  25. {$IFDEF LINUX}
  26.   {$DEFINE PNG}
  27. {$ENDIF}
  28.  
  29. {Include Parser10 to calculate series functions:}
  30. {.$ DEFINE FUNCTIONS}
  31. {NOTE: you must download Parser10.pas separately, and place it in the TPlot/Parser10 directory.}
  32.  
  33. {This performs some performance testing:}
  34. {. $ DEFINE PERFORMANCE}
  35. {Call windows API functions instead of Delphi - used in PERFORMANCE}
  36. {. $ DEFINE DIRECT_API}
  37. {Perform some operations using pointers - used in PERFORMANCE}
  38. {. $ DEFINE POINTERS}
  39.  
  40. {Show all menu items - for help file SHGs:}
  41. {. $ DEFINE SHOWALLMENUS}
  42.