aboutsummaryrefslogtreecommitdiff
path: root/test/toxy/setup.wid
blob: 3ae0a70a2d5431da36c4d3a80f36df4b2c690d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# LATER transfer the `standard' toxy setup definitions into a tcl package
# LATER think about using a slave interpreter, and a toxy-specific connection
# LATER gather aqua incompatibilities, and decide, if there is no other
# way than branching (different meaning of -bg, -borderwidth trouble,
# right click, etc.)

# LATER ask for adding something of the sort to pd.tk:
bind Canvas <1> {+focus %W}

# In order to keep the state after our canvas has been destroyed
# (i.e. our subpatch closed) -- use 'store' and 'restore' handlers,
# if defined, otherwise try setting -variable and -textvariable traces.

proc ::toxy::item_dotrace {target varname ndxname op} {
    if {[catch {set v [set $varname]} res] == 0} {
	if {$v != [set $varname.last]} {
# FIXME activate this on demand (for explicit traces)
#	    pd $target.rp _value $v \;
	    set $varname.last $v
	}
    } else { puts stderr [concat failed ::toxy::item_dotrace: $res] }
}

proc ::toxy::item_bindtrace {varname mastername ndxname op} {
    set $varname [set $mastername]
}

proc ::toxy::item_settrace {op path target varname} {
    if {[catch {$path cget $op} res] == 0} {
	if {$res == ""} {
	    if {[catch {$path config $op $varname} err]} {
		error $err
	    }
	} else {
	    if {[info tclversion] < 8.4} {
		trace variable $res w "::toxy::item_bindtrace $varname"
	    } else {
		trace add variable $res write "::toxy::item_bindtrace $varname"
	    }
	}
	if {![info exists $varname.last]} { set $varname.last "" }
	if {[info tclversion] < 8.4} {
	    trace variable $varname w "::toxy::item_dotrace $target"
	} else {
	    trace add variable $varname write "::toxy::item_dotrace $target"
	}
	return
    } else { return 0 }
}

# LATER revisit -- seems clumsy and fragile
proc ::toxy::item_removetrace {op path varname} {
    if {[catch {$path cget $op} res] == 0} {
	if {$res == $varname} {
	    if {[catch {$path config $op ""} err]} {
		error $err
	    }
	} elseif {$res != ""} {
	    if {[info tclversion] < 8.4} {
		catch { trace vdelete $res w "::toxy::item_bindtrace $varname" }
	    } else {
		catch { trace remove variable \
		    $res write "::toxy::item_bindtrace $varname" }
	    }
	}
    }
}

proc ::toxy::item_destroy {path varname} {
    ::toxy::item_removetrace -variable $path $varname.var
    ::toxy::item_removetrace -textvariable $path $varname.txt
    if {[info tclversion] < 8.4} {
	catch { unset $varname.last $varname.var $varname.txt $varname }
    } else {
	unset -nocomplain $varname.last $varname.var $varname.txt $varname
    }
    catch {destroy $path}
}

proc ::toxy::item_getconfig {path target} {
    pd $target.rp _config $target.rp [$path cget -bg] \
	[winfo reqwidth $path] [winfo reqheight $path] \
	[catch {$path config -state normal}]\;
}

proc ::toxy::item_visconfig {path target name varname cvpath px py} {
    if {[info exists ::toxy::itemoptions]} {
	set failed [catch {eval $path config $::toxy::itemoptions} res]
	unset ::toxy::itemoptions
	if {$failed} { error [concat in $path config: $res] }
    }

    $cvpath create window $px $py \
	-anchor nw -window $path -tags [concat toxy$name $target]

# FIXME
    if {[info exists ::toxy::storethispath]} {
# FIXME explicit traces
	set needtraces 0
    } else {
	set needtraces 1
    }

    if {$needtraces != 0} {
	if {[catch {::toxy::item_settrace -variable \
		$path $target $varname.var} res1]} {
	    error [concat in ::toxy::item_settrace: $res1]
	}
	if {[catch {::toxy::item_settrace -textvariable \
		$path $target $varname.txt} res2]} {
	    error [concat in ::toxy::item_settrace: $res2]
	}
#	puts stderr [concat traces: ($res1) ($res2)]
	if {$res1 == 0 && $res2 == 0} {
#	    puts stderr [concat toxy warning: $path untraceable]
	}
    }

    if {[info exists ::toxy::masterinit]} {
	set failed [catch {eval $::toxy::masterinit} res]
	unset ::toxy::masterinit
	if {$failed} { error [concat in ::toxy::masterinit: $res] }
    }
    if {[info exists ::toxy::typeinit]} {
	set failed [catch {eval $::toxy::typeinit} res]
	unset ::toxy::typeinit
	if {$failed} { error [concat in ::toxy::typeinit: $res] }
    }
    if {[info exists ::toxy::iteminit]} {
	set failed [catch {eval $::toxy::iteminit} res]
	unset ::toxy::iteminit
	if {$failed} { error [concat in ::toxy::iteminit: $res] }
    }

    ::toxy::item_getconfig $path $target

    return
}

proc ::toxy::item_vis {tkclass path target name varname cvpath px py} {
    if {[winfo exists $path]} {
#	puts stderr [concat $path exists]
	set ::toxy::itemfailure 0
    } else {
	set ::toxy::itemfailure [catch {$tkclass $path} ::toxy::itemerrmess]
    }
    if {$::toxy::itemfailure == 0} {
	set ::toxy::itemfailure [catch {::toxy::item_visconfig \
	    $path $target $name $varname $cvpath $px $py} \
	    ::toxy::itemerrmess]
    }
    if {$::toxy::itemfailure} {
	if {[winfo exists $path]} {destroy $path}
	puts stderr [concat tcl error: $::toxy::itemerrmess]
	pd $target.rp _failure \;
    }
}

# empirically, binding event coords as %X - [winfo rootx $cvpath] works
# better, than %x + [winfo x %W], or %x + t->te_xpix, LATER investigate

proc ::toxy::item_click {target cvpath x y b f} {
    pd $target.rp _click \
	[$cvpath canvasx [expr {$x - [winfo rootx $cvpath]}]] \
	[$cvpath canvasy [expr {$y - [winfo rooty $cvpath]}]] $b $f\;
}

proc ::toxy::item_inout {target v} {
    pd [concat $target.rp _inout $v \;]
}

proc ::toxy::master_release {target cvpath x y b} {
    ::toxy::item_inout $target 3
# pdtk_canvas_mouseup is a hack, which we must call anyway
    pdtk_canvas_mouseup $cvpath \
	[expr {$x - [winfo rootx $cvpath]}] \
	[expr {$y - [winfo rooty $cvpath]}] $b
}

proc ::toxy::master_motion {target cvpath x y} {
    pd $target.rp _motion \
	[$cvpath canvasx [expr {$x - [winfo rootx $cvpath]}]] \
	[$cvpath canvasy [expr {$y - [winfo rooty $cvpath]}]] 0 \;
}

proc ::toxy::master {path toppath cvpath target} {
# FIXME subitem handling in megawidgets
    bind $path <ButtonRelease> "::toxy::master_release $target $cvpath %X %Y %b"
    bind $path <1> "::toxy::item_click $target $cvpath %X %Y %b 0"
    bind $path <Shift-1> "::toxy::item_click $target $cvpath %X %Y %b 1"
    bind $path <Control-1> "::toxy::item_click $target $cvpath %X %Y %b 2"
    bind $path <Control-Shift-1> "::toxy::item_click $target $cvpath %X %Y %b 3"
    bind $path <Alt-1> "::toxy::item_click $target $cvpath %X %Y %b 4"
    bind $path <Alt-Shift-1> "::toxy::item_click $target $cvpath %X %Y %b 5"
    bind $path <Alt-Control-1> "::toxy::item_click $target $cvpath %X %Y %b 6"
    bind $path <Alt-Control-Shift-1> \
	"::toxy::item_click $target $cvpath %X %Y %b 7"
    bind $path <3> "::toxy::item_click $target $cvpath %X %Y %b 8"

    bind $path <Motion> "::toxy::master_motion $target $cvpath %X %Y"
    bind $path <Enter> "::toxy::item_inout $target 1"
    bind $path <Leave> "::toxy::item_inout $target 0"
}

# FIXME
proc ::toxy::scale_command {target sel v} {
    if {$::toxy::scale_isactive} {
	pd [concat $target $sel $v \;]
    }
    set ::toxy::scale_isactive 1
}

proc ::toxy::scale_doset {path v} {
    set ::toxy::scale_isactive 0
    $path set $v
}

proc ::toxy::popup_command {path target remote i text} {
    set [$path cget -textvariable] $text
    pd [concat $target _cb $i \;]
    if {$remote != "."} {
	pd [concat $remote $i \;]
    }
}

proc ::toxy::popup {path target remote entries args} {
    if {[winfo exists $path.pop]} {
#	puts stderr [concat $path.pop exists]
    } elseif {[catch {eval {menu $path.pop} $args} err] == 0} {
	set i 0
	foreach e $entries {
	    if {$e == "."} {
		$path.pop add separator
	    } else {
		incr i
		$path.pop add command -label [lindex $e 0] \
		    -command [concat ::toxy::popup_command \
			$path $target $remote $i \
			    [lindex $e [expr {[llength $e] > 1}]]]
	    }
	}
    } else { error [concat in ::toxy::popup: $err] }
}

# master initializer
#> master

::toxy::master .- .- .^.c .|

# FIXME
set ::toxy::scale_isactive 1

# standard widget types

#> bang button
#. -image ::toxy::img::empty -command .<.>
#. -bg pink -activebackground red -width 50 -height 50
#. @bang .- flash .: .- invoke

#> float scale
#. -command [concat ::toxy::scale_command .| _cb]
#. -bg pink -activebackground red -length 200
#. @float .- set .#1
#. @vset ::toxy::scale_doset .- .#1

#> symbol entry
#. -bg pink -font .(helvetica 24.) -width 16
#. @symbol .- delete 0 end .: .- insert 0 .#1

bind .- <Return> {eval .<[.- get].>; focus .^.c}

#> popup menubutton
#. -menu .-.pop
#. -bg purple -fg white -activebackground magenta -text popup
#. -width 8 -relief raised -borderwidth 3
#. @float if .(.#1 >= 1.) .(.-.pop invoke .#1.)
#. #items test
#. #iprops "-bg" purple "-fg" white "-activebackground" magenta "-borderwidth" 3

::toxy::popup .- .| . [concat .#items] .#iprops