home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 43_4.tcl < prev    next >
Text File  |  2003-04-15  |  610b  |  22 lines

  1. #
  2. # Example 43-4
  3. # Using the preferences package.
  4. #
  5.  
  6. Pref_Add {
  7.     {win(scrollside) scrollbarSide {CHOICE left right} 
  8.         "Scrollbar placement"
  9. "Scrollbars can be positioned on either the left or
  10. right side of the text and canvas widgets."}
  11.     {win(typeinkills) typeinKills OFF 
  12.         "Type-in kills selection"
  13. "This setting determines whether or not the selection
  14. is deleted when new text is typed in."}
  15.     {win(scrollspeed) scrollSpeed 15 "Scrolling speed"
  16. "This parameter affects the scrolling rate when a selection
  17. is dragged off the edge of the window. Smaller numbers
  18. scroll faster, but can consume more CPU."}
  19. }
  20.  
  21.  
  22.