diff options
author | andreask <andreask> | 2013-01-22 19:30:43 (GMT) |
---|---|---|
committer | andreask <andreask> | 2013-01-22 19:30:43 (GMT) |
commit | 48c9fcb7281cc6aa076113db874c7ae0e105795d (patch) | |
tree | 7187940ff056462bfa41705a2ce04d0ed07d424e /library/spinbox.tcl | |
parent | 41f5d19540b0b3f053da352e1569c9a4ed019dd5 (diff) | |
download | tk-contrib_patrick_fradin_code_cleanup.zip tk-contrib_patrick_fradin_code_cleanup.tar.gz tk-contrib_patrick_fradin_code_cleanup.tar.bz2 |
Contribution by Patrick Fradin <patrick.fradin@planar.com>contrib_patrick_fradin_code_cleanup
Quoting his mail:
<pre>
==========================================================
Hi Jeff,
I spent some of my time to contribute to the TclTk community ! I'm in
late for Christmas gift but like we said in French : "Mieux vaut tard
que jamais". ;-)
I've use TclDevKit 5.3.0 tclchecker to analyse TclTk code in Tcl and
Tk library directories (library, tools and tests) to correct a lot of
warnings and few errors. (encapsulate some expr, use 'chan xxx'
instead of fconfigure, fileevent...)
I've made some improvements too :
Examples :
- Use 'lassign' instead of many 'lindex' of 'foreach/break' loop.
- Use 'in' or 'ni' operators instead of 'lsearch -exact' or to
factorise some eq/ne && / || tests.
- Use 'eq' or 'ne' to tests strings instead of '==' or '!='.
- Use 'unset -nocomplain' to avoid 'catch {unset...}'.
- Remove some useless catch around 'destroy' calls.
- Use expand {*} instead of 'eval'. Don't touch a lot of code because
I don't know all structs and lists. I think it could be a greater
improvement to reduce 'eval' calls.
Due to previous experience, I dot not change any indentation ! ;-)
==========================================================
</pre>
Diffstat (limited to 'library/spinbox.tcl')
-rw-r--r-- | library/spinbox.tcl | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/library/spinbox.tcl b/library/spinbox.tcl index 641584d..8efef70 100644 --- a/library/spinbox.tcl +++ b/library/spinbox.tcl @@ -67,8 +67,9 @@ bind Spinbox <<Clear>> { %W delete sel.first sel.last } bind Spinbox <<PasteSelection>> { - if {$tk_strictMotif || ![info exists tk::Priv(mouseMoved)] - || !$tk::Priv(mouseMoved)} { + if {$tk_strictMotif || + (![info exists tk::Priv(mouseMoved)]) || + (!$tk::Priv(mouseMoved))} { ::tk::spinbox::Paste %W %x } } @@ -322,8 +323,8 @@ proc ::tk::spinbox::Invoke {w elem} { proc ::tk::spinbox::ClosestGap {w x} { set pos [$w index @$x] - set bbox [$w bbox $pos] - if {($x - [lindex $bbox 0]) < ([lindex $bbox 2]/2)} { + lassign [$w bbox $pos] x1 ___ x2 + if {($x - $x1) < ($x2 / 2)} { return $pos } incr pos @@ -349,7 +350,7 @@ proc ::tk::spinbox::ButtonDown {w x y} { set Priv(element) "entry" } - switch -exact $Priv(element) { + switch -exact -- $Priv(element) { "buttonup" - "buttondown" { if {"disabled" ne [$w cget -state]} { $w selection element $Priv(element) @@ -419,7 +420,7 @@ proc ::tk::spinbox::ButtonUp {w x y} { # x - The x-coordinate of the mouse. # cursor - optional place to set cursor. -proc ::tk::spinbox::MouseSelect {w x {cursor {}}} { +proc ::tk::spinbox::MouseSelect {w x {cursor ""}} { variable ::tk::Priv if {$Priv(element) ne "entry"} { @@ -429,10 +430,10 @@ proc ::tk::spinbox::MouseSelect {w x {cursor {}}} { } set cur [::tk::spinbox::ClosestGap $w $x] set anchor [$w index anchor] - if {($cur ne $anchor) || (abs($Priv(pressX) - $x) >= 3)} { + if {($cur ne $anchor) || ( abs ($Priv(pressX) - $x) >= 3)} { set Priv(mouseMoved) 1 } - switch $Priv(selectMode) { + switch -- $Priv(selectMode) { char { if {$Priv(mouseMoved)} { if {$cur < $anchor} { @@ -447,7 +448,7 @@ proc ::tk::spinbox::MouseSelect {w x {cursor {}}} { word { if {$cur < [$w index anchor]} { set before [tcl_wordBreakBefore [$w get] $cur] - set after [tcl_wordBreakAfter [$w get] [expr {$anchor-1}]] + set after [tcl_wordBreakAfter [$w get] [expr {$anchor - 1}]] } else { set before [tcl_wordBreakBefore [$w get] $anchor] set after [tcl_wordBreakAfter [$w get] [expr {$cur - 1}]] @@ -463,8 +464,9 @@ proc ::tk::spinbox::MouseSelect {w x {cursor {}}} { line { $w selection range 0 end } + default {} } - if {$cursor ne {} && $cursor ne "ignore"} { + if {$cursor ni "{} ignore"} { catch {$w icursor $cursor} } update idletasks |