OSDN Git Service

Please enter the commit message for your changes. Lines starting
[eos/base.git] / util / src / TclTk / tk8.6.12 / library / demos / label.tcl
1 # label.tcl --
2 #
3 # This demonstration script creates a toplevel window containing
4 # several label widgets.
5
6 if {![info exists widgetDemo]} {
7     error "This script should be run from the \"widget\" demo."
8 }
9
10 package require Tk
11
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
18
19 label $w.msg -font $font -wraplength 4i -justify left -text "Five labels are displayed below: three textual ones on the left, and an image 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
21
22 ## See Code / Dismiss buttons
23 set btns [addSeeDismiss $w.buttons $w]
24 pack $btns -side bottom -fill x
25
26 frame $w.left
27 frame $w.right
28 pack $w.left $w.right -side left -expand yes -padx 10 -pady 10 -fill both
29
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
34
35 # Main widget program sets variable tk_demoDirectory
36 image create photo label.ousterhout \
37     -file [file join $tk_demoDirectory images ouster.png]
38 label $w.right.picture -borderwidth 2 -relief sunken -image label.ousterhout
39 label $w.right.caption -text "Tcl/Tk Creator"
40 pack $w.right.picture $w.right.caption -side top