home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / desktop / newbar / !NewBar / Choices < prev    next >
Text File  |  1998-08-08  |  4KB  |  121 lines

  1. # Choices file for NewBar
  2.  
  3. # Gaps and margins
  4. end-gap        8    # Gap at each end of iconbar
  5. between-gap    0    # Gap between each icon
  6. central-gap    40    # Minimum gap between left and right sides
  7. top-gap        0    # Distance from top of iconbar window to top of icon
  8. # For arrangement text-bottom only:
  9. sprite-margin    14    # Minimum gap between sprite and edge of icon
  10. text-margin    8    # Minimum gap between text and edge of icon
  11. # For arrangement text-right only:
  12. sprite-text-gap    10    # Gap between text and sprite (if icon has text)
  13. icon-h-margins    10    # Margin between text or sprite and edge of icon
  14.  
  15. # Sizes
  16. icon-height    100    # Height of an icon
  17. window-height    100    # The window's height
  18.  
  19. # Scrolling
  20. # There are 5 scroll types:
  21. #  none - scrolling disabled (not very useful)
  22. #  linear - old-style, scroll by fixed distance per Wimp poll (slows when busy)
  23. #  linear-s - like `linear', but scroll at fixed speed (default)
  24. #  prop - scroll speed corresponds to distance pointer is moved off-screen
  25. #  move - like `prop', but pointer moves back on-screen with iconbar
  26. scroll-type    linear-s
  27. # For type 1 only:
  28. scroll-margin    12    # Distance from edge pointer must be to scroll (OS units)
  29. scroll-step    12    # Distance iconbar is scrolled each poll (OS units)
  30. # For type 2 only:
  31. scroll-speed    12    # Scroll speed (OS units per centisecond)
  32.  
  33. # Colours
  34. # These are out of the 16 Wimp colours
  35. # May be specified by number or name (white, grey-{1--6}, black,
  36. # dark-blue, yellow, light-green, red, cream, dark-green, orange,
  37. # light-blue, none)
  38. text-colour        black    # Colour of iconbar icon text
  39. icon-bg-colour        grey-1    # Background colour of icons (`none' for transparent)
  40. window-bg-colour    grey-1    # Background colour of window
  41.  
  42. # Borders
  43. icon-borders    slab-out    # Borders around icons (none, plain, slab-out or slab-in)
  44. border-size    4    # Thickness of slabbed borders (put 0 if want none)
  45. window-border    off    # Enable black border around iconbar window
  46.  
  47. # Menus
  48. menu-y-offset    12    # Distance below top of icon to open base of menu
  49.  
  50. # Miscellaneous
  51. small-icons    off    # Enable half-size sprites (not done properly yet)
  52. use-task-name    off    # Use task name as label text if icon has no text otherwise
  53. text-height    32    # Height of icon text (32 usually)
  54. font        -    # Font for icon text (`-' for desktop font)
  55. font-size    0    # Y-size of text in points, decimal (0 for desktop font size)
  56. font-width    0    # X-size of text in points, decimal (0 for same as height)
  57. arrangement    text-bottom    # Where text is positioned (text-bottom or text-right)
  58.  
  59. # Pinboard patching
  60. patch-pinboard        on    # Shall we patch the Pinboard module in PreDesk?
  61. pinboard-bg-colour    none    # Pinboard background colour (`none' to leave alone)
  62. # Patching the Pinboard also uses:  window-height
  63.  
  64.  
  65. # Switch to a different font
  66. group new-font on {
  67.   font        Homerton.Bold
  68.   font-size    10.0
  69.   font-width    0
  70.   text-height    28
  71. }
  72.  
  73. # Make the iconbar look more like the classic Wimp version
  74. group wimp-traditional off {
  75.   icon-bg-colour    none
  76.   icon-borders        none
  77.   border-size        0
  78.   icon-height        112
  79.   top-gap        10
  80.   window-height        132
  81.   window-border        on
  82. }
  83.  
  84. # Make the iconbar black (goes well with XEarth)
  85. group black-iconbar off {
  86.   text-colour        0
  87.   icon-bg-colour    none
  88.   window-bg-colour    black
  89.   icon-borders        none
  90.   border-size        0
  91. }
  92.  
  93. # Make the Pinboard go with XEarth
  94. group xearth-pinboard off {
  95.   pinboard-bg-colour    black
  96. }
  97.  
  98. # I prefer this
  99. group my-scrolling on {
  100.   scroll-type        move
  101. }
  102.  
  103. # An iconbar with small sprites
  104. group small-iconbar off {
  105.   small-icons        on
  106.   icon-height        72
  107.   window-height        72
  108.   sprite-margin        10
  109. }
  110.  
  111. # A very thin iconbar (looks a little like Windoze 95's task bar)
  112. group smaller-iconbar off {
  113.   small-icons        on
  114.   icon-height        52
  115.   window-height        52
  116.   arrangement        text-right
  117.   central-gap        28
  118.   # This next bit is optional:
  119.   use-task-name        on
  120. }
  121.