home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / scrolledtext < prev    next >
Encoding:
Text File  |  2003-09-01  |  464 b   |  14 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: scrolledtext in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. option add *textBackground seashell
  7.  
  8. iwidgets::scrolledtext .st -labeltext "Scrolledtext" -wrap none \
  9.     -vscrollmode static -hscrollmode dynamic \
  10.     -width 5i -height 2i
  11. pack .st
  12.  
  13. .st import [file join ${iwidgets::library} demos scrolledtext]
  14.