-
Notifications
You must be signed in to change notification settings - Fork 14
/
button.tcl
431 lines (355 loc) · 13.7 KB
/
button.tcl
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# ----------------------------------------------------------------------------
# button.tcl
# This file is part of Unifix BWidget Toolkit
# $Id: button.tcl,v 1.16 2009/11/01 20:46:50 oberdorfer Exp $
# ----------------------------------------------------------------------------
# Index of commands:
# Public commands
# - Button::create
# - Button::configure
# - Button::cget
# - Button::invoke
# - Button::getSlimButtonStyle
# Private commands (event bindings)
# - Button::_destroy
# - Button::_enter
# - Button::_leave
# - Button::_press
# - Button::_release
# - Button::_repeat
# - Button::_styleconfigure
# ----------------------------------------------------------------------------
namespace eval Button {
Widget::define Button button DynamicHelp
set remove [list -command -relief -text -textvariable -underline -state]
if {[info tclversion] > 8.3} {
lappend remove -repeatdelay -repeatinterval
}
if { [BWidget::using ttk] } { lappend remove -borderwidth }
Widget::tkinclude Button button :cmd remove $remove
Widget::declare Button {
{-name String "" 0}
{-text String "" 0}
{-textvariable String "" 0}
{-underline Int -1 0 "%d >= -1"}
{-armcommand String "" 0}
{-disarmcommand String "" 0}
{-command String "" 0}
{-state TkResource "" 0 button}
{-repeatdelay Int 0 0 "%d >= 0"}
{-repeatinterval Int 0 0 "%d >= 0"}
{-relief Enum raised 0 {raised sunken flat ridge solid groove link}}
{-style String "" 0}
}
DynamicHelp::include Button balloon
Widget::syncoptions Button "" :cmd {-text {} -underline {}}
if { [BWidget::using ttk] } {
Widget::addmap Button "" :cmd {-style {}}
}
variable _current ""
variable _pressed ""
bind BwButton <Enter> {Button::_enter %W}
bind BwButton <Leave> {Button::_leave %W}
bind BwButton <ButtonPress-1> {Button::_press %W}
bind BwButton <ButtonRelease-1> {Button::_release %W}
bind BwButton <Key-space> {Button::invoke %W; break}
bind BwButton <Return> {Button::invoke %W; break}
bind BwButton <Destroy> {Widget::destroy %W}
variable _ttkunsupported
set _ttkunsupported_opt \
{ -font -fg -foreground -background
-highlightthickness -bd -borderwidth
-padx -pady -anchor }
}
# ----------------------------------------------------------------------------
# Command Button::create
# ----------------------------------------------------------------------------
proc Button::create { path args } {
variable _ttkunsupported_opt
if { [BWidget::using ttk] } {
# remove unsupported tk options
# (hope that's all we need to take care about)
foreach opt $_ttkunsupported_opt {
set args [Widget::getArgument $args $opt tmp]
}
set args [Widget::getArgument $args "-relief" relief]
} else {
set args [Widget::getArgument $args "-style" tmp]
}
array set maps [list Button {} :cmd {}]
array set maps [Widget::parseArgs Button $args]
if { [BWidget::using ttk] } {
eval [concat [list ttk::button $path] $maps(:cmd)]
} else { eval [concat [list button $path] $maps(:cmd)] }
Widget::initFromODB Button $path $maps(Button)
# do some extra configuration on the button
set relief [Widget::getMegawidgetOption $path -relief]
if { ![BWidget::using ttk] && [string equal $relief "link"] } {
set relief "flat"
}
set var [Widget::getMegawidgetOption $path -textvariable]
set st [Widget::getMegawidgetOption $path -state]
if { ![string length $var] } {
set desc [BWidget::getname [Widget::getMegawidgetOption $path -name]]
if { [llength $desc] } {
set text [lindex $desc 0]
set under [lindex $desc 1]
Widget::configure $path [list -text $text]
Widget::configure $path [list -underline $under]
} else {
set text [Widget::getMegawidgetOption $path -text]
set under [Widget::getMegawidgetOption $path -underline]
}
} else {
set under -1
set text ""
Widget::configure $path [list -underline $under]
}
if { [BWidget::using ttk] } {
$path configure -text $text -underline $under \
-textvariable $var -state $st
# distinguish between a standard button (raised) which sould appear
# as declared in the celated style and button with user defined arg's
# where the style 'll be overwritten to emulate existing behavior
if { $relief != "raised" &&
[$path cget -style] != "BWSlim.Toolbutton" } {
$path configure -style "BW${relief}.Toolbutton"
}
} else {
$path configure -relief $relief -text $text -underline $under \
-textvariable $var -state $st
}
bindtags $path [list $path BwButton [winfo toplevel $path] all]
set accel1 [string tolower [string index $text $under]]
set accel2 [string toupper $accel1]
if { $accel1 != "" } {
bind [winfo toplevel $path] <Alt-$accel1> [list Button::invoke $path]
bind [winfo toplevel $path] <Alt-$accel2> [list Button::invoke $path]
}
DynamicHelp::sethelp $path $path 1
return [Widget::create Button $path]
}
# ----------------------------------------------------------------------------
# Command Button::configure
# ----------------------------------------------------------------------------
proc Button::configure { path args } {
variable _ttkunsupported_opt
# remove unsupported tk options 1st...
if { [BWidget::using ttk] } {
foreach opt $_ttkunsupported_opt {
set args [Widget::getArgument $args $opt tmp]
}
}
set oldunder [$path:cmd cget -underline]
if { $oldunder != -1 } {
set oldaccel1 [string tolower [string index [$path:cmd cget -text] $oldunder]]
set oldaccel2 [string toupper $oldaccel1]
} else {
set oldaccel1 ""
set oldaccel2 ""
}
set res [Widget::configure $path $args]
# Extract all the modified bits we're interested in
foreach {cr cs cv cn ct cu} [Widget::hasChangedX $path \
-relief -state -textvariable -name -text -underline] break
if { $cr || $cs } {
set relief [Widget::cget $path -relief]
set state [Widget::cget $path -state]
if { ![BWidget::using ttk] && [string equal $relief "link"] } {
if { [string equal $state "active"] } {
set relief "raised"
} else { set relief "flat" }
}
if { [BWidget::using ttk] } {
$path:cmd configure -state $state
if { [string compare [$path:cmd cget -style] "BWSlim.Toolbutton"] != 0 } {
$path:cmd configure -style "BW${relief}.Toolbutton"
}
} else {
$path:cmd configure -relief $relief -state $state
}
}
if { $cv || $cn || $ct || $cu } {
set var [Widget::cget $path -textvariable]
set text [Widget::cget $path -text]
set under [Widget::cget $path -underline]
if { ![string length $var] } {
set desc [BWidget::getname [Widget::cget $path -name]]
if { [llength $desc] } {
set text [lindex $desc 0]
set under [lindex $desc 1]
}
} else {
set under -1
set text ""
}
set top [winfo toplevel $path]
if { $oldaccel1 != "" } {
bind $top <Alt-$oldaccel1> {}
bind $top <Alt-$oldaccel2> {}
}
set accel1 [string tolower [string index $text $under]]
set accel2 [string toupper $accel1]
if { $accel1 != "" } {
bind $top <Alt-$accel1> [list Button::invoke $path]
bind $top <Alt-$accel2> [list Button::invoke $path]
}
$path:cmd configure -text $text -underline $under -textvariable $var
}
DynamicHelp::sethelp $path $path
set res
}
# without this dummy function, an error occures
# when operating under tile control
proc Button::instate { path args } {
return [expr { [$path cget -state] == "normal" ? 1 : 0}]
}
# ----------------------------------------------------------------------------
# Command Button::cget
# ----------------------------------------------------------------------------
proc Button::cget { path option } {
Widget::cget $path $option
}
proc Button::getSlimButtonStyle {} {
if { [BWidget::using ttk] } {
return "BWSlim.Toolbutton"
}
return ""
}
# ----------------------------------------------------------------------------
# Command Button::invoke
# ----------------------------------------------------------------------------
proc Button::invoke { path } {
if { ![string equal [$path:cmd cget -state] "disabled"] } {
_styleconfigure $path sunken
update idletasks
set cmd [Widget::getMegawidgetOption $path -armcommand]
if { $cmd != "" } {
uplevel \#0 $cmd
}
after 100
set relief [Widget::getMegawidgetOption $path -relief]
if { ![BWidget::using ttk] && [string equal $relief "link"] } {
set relief flat
}
set state [Widget::getMegawidgetOption $path -state]
_styleconfigure $path $relief
set cmd [Widget::getMegawidgetOption $path -disarmcommand]
if { $cmd != "" } {
uplevel \#0 $cmd
}
set cmd [Widget::getMegawidgetOption $path -command]
if { $cmd != "" } {
uplevel \#0 $cmd
}
}
}
# ----------------------------------------------------------------------------
# Command Button::_enter
# ----------------------------------------------------------------------------
proc Button::_enter { path } {
variable _current
variable _pressed
set _current $path
if { ![string equal [$path:cmd cget -state] "disabled"] } {
$path:cmd configure -state active
if { $_pressed == $path } {
_styleconfigure $path sunken
} elseif { [string equal [Widget::cget $path -relief] "link"] } {
_styleconfigure $path raised
}
}
}
proc Button::_styleconfigure { path relief_or_style } {
if { [BWidget::using ttk] } {
# do not override the toolbutton style:
if { [$path:cmd cget -style] != "BWSlim.Toolbutton" } {
$path:cmd configure -style "BW${relief_or_style}.Toolbutton"
}
} else {
$path:cmd configure -relief $relief_or_style
}
}
# ----------------------------------------------------------------------------
# Command Button::_leave
# ----------------------------------------------------------------------------
proc Button::_leave { path } {
variable _current
variable _pressed
set _current ""
if { ![string equal [$path:cmd cget -state] "disabled"] } {
$path:cmd configure -state [Widget::cget $path -state]
set relief [Widget::cget $path -relief]
if { $_pressed == $path } {
if { [string equal $relief "link"] } {
set relief raised
}
_styleconfigure $path $relief
} elseif { [string equal $relief "link"] } {
_styleconfigure $path flat
}
}
}
# ----------------------------------------------------------------------------
# Command Button::_press
# ----------------------------------------------------------------------------
proc Button::_press { path } {
variable _pressed
if { ![string equal [$path:cmd cget -state] "disabled"] } {
set _pressed $path
if { ![BWidget::using ttk] } { _styleconfigure $path sunken }
set cmd [Widget::getMegawidgetOption $path -armcommand]
if { $cmd != "" } {
uplevel \#0 $cmd
set repeatdelay [Widget::getMegawidgetOption $path -repeatdelay]
set repeatint [Widget::getMegawidgetOption $path -repeatinterval]
if { $repeatdelay > 0 } {
after $repeatdelay "Button::_repeat $path"
} elseif { $repeatint > 0 } {
after $repeatint "Button::_repeat $path"
}
}
}
}
# ----------------------------------------------------------------------------
# Command Button::_release
# ----------------------------------------------------------------------------
proc Button::_release { path } {
variable _current
variable _pressed
if { $_pressed == $path } {
set _pressed ""
set relief [Widget::getMegawidgetOption $path -relief]
after cancel "Button::_repeat $path"
if { [string equal $relief "link"] } {
set relief raised
}
if { ![BWidget::using ttk] } { _styleconfigure $path $relief }
set cmd [Widget::getMegawidgetOption $path -disarmcommand]
if { $cmd != "" } {
uplevel \#0 $cmd
}
if { $_current == $path &&
![string equal [$path:cmd cget -state] "disabled"] && \
[set cmd [Widget::getMegawidgetOption $path -command]] != "" } {
uplevel \#0 $cmd
}
}
}
# ----------------------------------------------------------------------------
# Command Button::_repeat
# ----------------------------------------------------------------------------
proc Button::_repeat { path } {
variable _current
variable _pressed
if { $_current == $path && $_pressed == $path &&
![string equal [$path:cmd cget -state] "disabled"] &&
[set cmd [Widget::getMegawidgetOption $path -armcommand]] != "" } {
uplevel \#0 $cmd
}
if { $_pressed == $path &&
([set delay [Widget::getMegawidgetOption $path -repeatinterval]] >0 ||
[set delay [Widget::getMegawidgetOption $path -repeatdelay]] > 0) } {
after $delay "Button::_repeat $path"
}
}