aboutsummaryrefslogtreecommitdiff
path: root/demos/windowContours.tcl
diff options
context:
space:
mode:
authorlecoanet2004-05-07 15:31:01 +0000
committerlecoanet2004-05-07 15:31:01 +0000
commit9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7 (patch)
tree842972357fdc905c7353dacf88a10e78427b96d8 /demos/windowContours.tcl
parent752ff8735f731e8d37fb1bea60b0323af1a1ec06 (diff)
downloadtkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.zip
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.gz
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.bz2
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.xz
Switched from pack to grid; Demos are put in a namespace; No more name aliases for fonts
Diffstat (limited to 'demos/windowContours.tcl')
-rw-r--r--demos/windowContours.tcl9
1 files changed, 6 insertions, 3 deletions
diff --git a/demos/windowContours.tcl b/demos/windowContours.tcl
index 19aacb1..7b6c263 100644
--- a/demos/windowContours.tcl
+++ b/demos/windowContours.tcl
@@ -12,7 +12,7 @@ namespace eval windowContours {
wm title $w "Zinc Contours Demonstration"
wm iconname $w Contours
- variable defaultfont [font create -family Helvetica -size 10 -weight bold]
+ variable defaultfont [font create -family Helvetica -size 20 -weight normal]
grid [button $w.dismiss -text Dismiss -command "destroy $w"] -row 2 -column 0 -pady 10
grid [button $w.code -text "See Code" -command "showCode $w"] -row 2 -column 1 -pady 10
@@ -29,9 +29,12 @@ namespace eval windowContours {
# Text in background
- variable backtext [$w.zinc add text 1 -position {50 200} -text "This text appears\nthrough holes of curves" -font "-adobe-helvetica-bold-o-normal--34-240-100-100-p-182-iso8859-1"]
+ variable backtext [$w.zinc add text 1 -position {50 200} \
+ -text "This text appears\nthrough holes of curves" \
+ -font "-adobe-helvetica-bold-o-normal--34-240-100-100-p-182-iso8859-1"]
- variable window [$w.zinc add curve 1 {100 100 300 100 300 400 100 400} -closed 1 -visible 1 -filled 1 -fillcolor grey66]
+ variable window [$w.zinc add curve 1 {100 100 300 100 300 400 100 400} -closed 1 \
+ -visible 1 -filled 1 -fillcolor grey66]
variable aGlass [$w.zinc add rectangle 1 {120 120 190 240}]