home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / kompon / d123456 / CHEMPLOT.ZIP / TPlot / Plot.inc < prev    next >
Text File  |  2001-07-30  |  1KB  |  49 lines

  1. {What Delphi version are we using ?}
  2. {$IFDEF WIN32}
  3. {$I ..\Misc\Misc.inc}
  4. {$ENDIF}
  5. {$IFDEF LINUX}
  6. {$I ../Misc/Misc.inc}
  7. {$ENDIF}
  8.  
  9.  
  10. {BC++B support:}
  11. {$IFDEF BCB}
  12.   {$ObjExportAll On}
  13. {$ENDIF}
  14.  
  15. {For those poor buggers that don't have the Pro versions:}
  16. {$DEFINE NO_MATH}
  17.  
  18. {This includes GIF picture format support:}
  19. {$IFNDEF LINUX}
  20.   {.$ DEFINE GIF}
  21. {$ENDIF}
  22. {NOTE: you must download GIFImage.pas separately, and place it in the TPlot/TGifimage directory.}
  23. {... and it does not work under Linux.}
  24.  
  25. {This includes PNG picture format support. This adds 6 kb to the executable, but requires libpng.dll 1.08-1.10}
  26. {.$ DEFINE PNG}
  27. {NOTE 1: you must download Pngimage.pas separately, and place it in the TPlot/pnglib directory.}
  28. {NOTE 2: you must include Lpng.dll with your application}
  29. {NOTE 3: PNG works AUTOMATICALLY under Linux because it is a basic Kylix picture file format.}
  30. {$IFDEF LINUX}
  31.   {$DEFINE PNG}
  32. {$ENDIF}
  33.  
  34. {Include Parser10 to calculate series functions:}
  35. {.$ DEFINE FUNCTIONS}
  36. {NOTE: you must download Parser10.pas separately, and place it in the TPlot/Parser10 directory.}
  37.  
  38. {Show all menu items - for help file SHGs:}
  39. {. $ DEFINE SHOWALLMENUS}
  40.  
  41. {Instead of just simple lines of best fit, let's do Polynomials of best fit !}
  42. {. $ DEFINE POLYNOMIAL_FIT}
  43. {Not working yet, but will be.}
  44.  
  45. {Some people love 'em, some hate 'em:}
  46. {.$ DEFINE FINANCE}
  47. {NOTE: This adds a "Financial" menu, and associated goodies.
  48.  Does not work yet.}
  49.