home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / ipl / gincl / vdefns.icn < prev    next >
Text File  |  2000-07-29  |  1KB  |  45 lines

  1. ############################################################################
  2. #
  3. #    File:     vdefns.icn
  4. #
  5. #    Subject:  Definitions for visual interface
  6. #
  7. #    Author:   Gregg M. Townsend
  8. #
  9. #    Date:     October 26, 1997
  10. #
  11. ############################################################################
  12. #
  13. #   This file is in the public domain.
  14. #
  15. ############################################################################
  16. #
  17. #  This file contains definitions used by the dialog and vidget library
  18. #  and by the interface builder, VIB.
  19. #
  20. ############################################################################
  21. #
  22. #  Requires:  Version 9.0 of Icon
  23. #
  24. ############################################################################
  25.  
  26. # Fixed font width, in pixels, assumed by VIB
  27.  
  28. $define VFWidth 7
  29.  
  30. # Geometry rules for sliders and scrollbars
  31.  
  32. $define VSlider_MinAspect 3
  33. $define VSlider_MinWidth 10
  34. $define VSlider_DefWidth 15
  35. $define VSlider_DefLength 60
  36.  
  37.  
  38. # Background color
  39.  
  40. $ifdef _MS_WINDOWS
  41. $define VBackground "#C0C0C0"        # good value for 4-bit MSWIN systems
  42. $else
  43. $define VBackground "pale gray"        # somewhat lighter under X
  44. $endif
  45.