Update tk to version 8.5.11
[msysgit.git] / mingw / lib / tk8.5 / demos / label.tcl
bloba5cab10bde4fca264205ba3f6ed3b5a42d0ec865
1 # label.tcl --
3 # This demonstration script creates a toplevel window containing
4 # several label widgets.
6 if {![info exists widgetDemo]} {
7 error "This script should be run from the \"widget\" demo."
10 package require Tk
12 set w .label
13 catch {destroy $w}
14 toplevel $w
15 wm title $w "Label Demonstration"
16 wm iconname $w "label"
17 positionWindow $w
19 label $w.msg -font $font -wraplength 4i -justify left -text "Five labels are displayed below: three textual ones on the left, and a bitmap label and a text label on the right. Labels are pretty boring because you can't do anything with them."
20 pack $w.msg -side top
22 ## See Code / Dismiss buttons
23 set btns [addSeeDismiss $w.buttons $w]
24 pack $btns -side bottom -fill x
26 frame $w.left
27 frame $w.right
28 pack $w.left $w.right -side left -expand yes -padx 10 -pady 10 -fill both
30 label $w.left.l1 -text "First label"
31 label $w.left.l2 -text "Second label, raised" -relief raised
32 label $w.left.l3 -text "Third label, sunken" -relief sunken
33 pack $w.left.l1 $w.left.l2 $w.left.l3 -side top -expand yes -pady 2 -anchor w
35 # Main widget program sets variable tk_demoDirectory
36 label $w.right.bitmap -borderwidth 2 -relief sunken \
37 -bitmap @[file join $tk_demoDirectory images face.xbm]
38 label $w.right.caption -text "Tcl/Tk Proprietor"
39 pack $w.right.bitmap $w.right.caption -side top