aboutsummaryrefslogtreecommitdiff
path: root/extensions/gui/ix/grid.wid
diff options
context:
space:
mode:
authorcarmen rocco <ix9@users.sourceforge.net>2006-09-19 23:21:31 +0000
committercarmen rocco <ix9@users.sourceforge.net>2006-09-19 23:21:31 +0000
commit5689251b4df7456f43a0d3b357672bbd9fc3a40c (patch)
tree98e8bd772edf971e3cda5bff8dece0436105ddc4 /extensions/gui/ix/grid.wid
parent2ed8e5ab0516ba0a3d66fdc5612a4631fee5f6d5 (diff)
*** empty log message ***
svn path=/trunk/; revision=5973
Diffstat (limited to 'extensions/gui/ix/grid.wid')
-rwxr-xr-xextensions/gui/ix/grid.wid46
1 files changed, 0 insertions, 46 deletions
diff --git a/extensions/gui/ix/grid.wid b/extensions/gui/ix/grid.wid
deleted file mode 100755
index 1d177ad8..00000000
--- a/extensions/gui/ix/grid.wid
+++ /dev/null
@@ -1,46 +0,0 @@
-namespace eval ::ix {
- proc grid_click {w target r hy hx hh ww size} {
- switch $r {
- 0 { set y [expr $hy / $hh.0]
- set x [expr $hx / $ww.0]}
- 1 { set x $hx
- set y $hy
- set hx [expr $ww * $hx]
- set hy [expr $hh * $hy]}}
- set rs [expr $size / 2]
- $w coords ${target}sqr [expr $hx - $rs] [expr $hy - $rs] [expr $hx + $rs] [expr $hy + $rs]
- pd "$target.rp _cb $x $y;"
- }
- proc grid_new {path target w h bg fg ln div shape size} {
- if {[winfo exists $path.grid] != 1} {
- canvas $path.grid -bg $bg
- $path configure -width $w -height $h
- place $path.grid -anchor nw -relwidth 1 -relheight 1
- $path.grid create $shape 0 0 0 0 -fill $fg -tags ${target}sqr
- grid_click $path.grid $target 1 0.5 0.5 $h $w $size
- grid_lines $path.grid $target $div $w $h $ln
- bind $path.grid <1> "::ix::grid_click %W $target 0 %y %x $h $w $size"
- bind $path.grid <B1-Motion> "::ix::grid_click %W $target 0 %y %x $h $w $size"
- }
- }
- proc grid_lines {w target lines ww hw color} {
- $w delete gridlines
- for {set x 1} {$x <= $lines} {incr x} {
- if {$lines < 64} {
- set oh [expr $hw.0 * $x.0 / $lines.0]
- set ow [expr $ww.0 * $x.0 / $lines.0]
- $w create line $ow 0 $ow $hw -fill $color -tags gridlines
- $w create line 0 $oh $ww $oh -fill $color -tags gridlines
- }
- }
- $w raise ${target}sqr
- }
-}
-#> grid frame
-#. -bd 3
-#. #w 128 #h 128 #x 0.5 #y 0.5
-#. #fg red #bg blue #ln yellow
-#. #shape rectangle #size 12 #div 5
-#. @list ::ix::grid_click .-.grid .| 1 .#2 .#1 .#h .#w .#size
-
-::ix::grid_new .- .| .#w .#h .#bg .#fg .#ln .#div .#shape .#size