Posted to tcl by GCS at Mon Jun 09 04:43:08 GMT 2014view raw

  1. (GEB) 6 % info pa
  2. 8.6.1
  3. (GEB) 7 % grid [ttk::checkbutton .cb]
  4. (GEB) 8 % .cb state
  5. alternate
  6. (GEB) 9 % .cb state selected
  7. !selected
  8. (GEB) 10 % .cb state
  9. selected alternate
  10. (GEB) 11 % .cb state active
  11. !active
  12. (GEB) 12 % .cb state
  13. active selected alternate
  14. (GEB) 13 % # Click on button, clearing the central dot
  15. (GEB) 14 % .cb state
  16. (GEB) 15 % # Click on button, creating a check mark
  17. (GEB) 16 % .cb state
  18. selected
  19.