summaryrefslogtreecommitdiff
path: root/itcl/iwidgets/incoming/demos/collapsablewidget
blob: e496f4953f42ea498d1b9132756dd3ecef9db384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ----------------------------------------------------------------------
#  DEMO: new collapsablewidget
# ----------------------------------------------------------------------
package require Iwidgets 4.0
source ../src/collapsablewidget.itk

. configure -background white

iwidgets::collapsablewidget .cw -labeltext "Label Text:"
pack .cw -padx 4 -pady 4

set win [.cw childsite]
label $win.ex -text "(put your widgets here)" \
    -background black -foreground white \
    -width 30 -height 3
pack $win.ex -expand yes -fill both -padx 4 -pady 4

button .toggle -text "Toggle display of collapsed region" -command {
    .cw toggle
}
pack .toggle -padx 4 -pady 4