File: hyperhelp

package info (click to toggle)
iwidgets4 4.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,116 kB
  • sloc: tcl: 19,688; sh: 638; awk: 273; perl: 265; makefile: 130
file content (14 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# ----------------------------------------------------------------------
#  DEMO: hyperhelp in [incr Widgets]
# ----------------------------------------------------------------------
package require Iwidgets 4.0

option add *textBackground seashell

button .push -text "Help..." -command {
    set win [iwidgets::hyperhelp .#auto -title "Hyperhelp demo" -modality none \
        -topics {demo} -helpdir [file join ${iwidgets::library} demos]]
    $win showtopic demo
    $win activate
}
pack .push