README.grass 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. README.grass - written by Justin Hickey - jhickey@hpcc.nectec.or.th
  2. This directory contains an extension to Tcl/Tk (called BWidget) that provides
  3. new and enhanced widgets. It is not a new interpreter but simply Tcl/Tk files
  4. that provide the functionality. Therefore, there is nothing to compile and it
  5. only requires 2 lines of code in your Tcl/Tk script to use the new widgets.
  6. Some of the new widgets include
  7. On mouse over help balloons
  8. Tabbed notebook panes - like worksheets in Excel
  9. Directory tree listing
  10. Combination box or drop down option list
  11. Progress bar
  12. Many others
  13. For a demonstration of the new widgets available perform the following
  14. cd demo
  15. wish demo.tcl
  16. It may take some time to load, but it demonstrates all or most of the new
  17. features.
  18. To use these widgets with GRASS Tcl/Tk scripts (including tcltkgrass) then add
  19. the following two lines to your main Tcl/Tk script
  20. lappend auto_path $env(GISBASE)/bwidget
  21. package require BWidget
  22. Then simply use the new widgets as if they were already part of Tcl/Tk. To find
  23. out more information on using the new widgets see the manual pages in
  24. ./BWman/index.html
  25. For more information on BWidget see their home page at
  26. http://www.unifix-online.com/BWidget/
  27. or read the README file in this directory.