buildfv.pas 685 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. $Id$
  3. Unit to build all units of Free Vision
  4. }
  5. unit buildfv;
  6. interface
  7. uses
  8. fvcommon,
  9. objects,
  10. callspec,
  11. drivers,
  12. fileio,
  13. memory,
  14. gfvgraph,
  15. fvconsts,
  16. resource,
  17. views,
  18. validate,
  19. msgbox,
  20. dialogs,
  21. menus,
  22. app,
  23. stddlg,
  24. tabs,
  25. colortxt,
  26. statuses,
  27. histlist,
  28. inplong,
  29. editors,
  30. gadgets,
  31. time;
  32. implementation
  33. end.
  34. {
  35. $Log$
  36. Revision 1.3 2002-01-29 22:00:33 peter
  37. * colortxt added
  38. Revision 1.2 2001/08/05 02:03:13 peter
  39. * view redrawing and small cursor updates
  40. * merged some more FV extensions
  41. Revision 1.1 2001/08/04 19:14:32 peter
  42. * Added Makefiles
  43. * added FV specific units and objects from old FV
  44. }