123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- # ------------------------------------------------------------------------------
- # spinbox.tcl
- # This file is part of Unifix BWidget Toolkit
- # ------------------------------------------------------------------------------
- # Index of commands:
- # - SpinBox::create
- # - SpinBox::configure
- # - SpinBox::cget
- # - SpinBox::setvalue
- # - SpinBox::_destroy
- # - SpinBox::_modify_value
- # - SpinBox::_test_options
- # ------------------------------------------------------------------------------
- namespace eval SpinBox {
- ArrowButton::use
- Entry::use
- LabelFrame::use
- Widget::bwinclude SpinBox LabelFrame .labf \
- rename {-text -label} \
- prefix {label -justify -width -anchor -height -font} \
- remove {-focus} \
- initialize {-relief sunken -borderwidth 2}
- Widget::bwinclude SpinBox Entry .e \
- remove {-relief -bd -borderwidth -fg -bg} \
- rename {-foreground -entryfg -background -entrybg}
- Widget::declare SpinBox {
- {-range String "" 0}
- {-values String "" 0}
- {-modifycmd String "" 0}
- {-repeatdelay Int 400 0 {=0}}
- {-repeatinterval Int 100 0 {=0}}
- }
- Widget::addmap SpinBox "" :cmd {-background {}}
- Widget::addmap SpinBox ArrowButton .arrup {
- -foreground {} -background {} -disabledforeground {} -state {}
- -repeatdelay {} -repeatinterval {}
- }
- Widget::addmap SpinBox ArrowButton .arrdn {
- -foreground {} -background {} -disabledforeground {} -state {}
- -repeatdelay {} -repeatinterval {}
- }
- Widget::syncoptions SpinBox Entry .e {-text {}}
- Widget::syncoptions SpinBox LabelFrame .labf {-label -text -underline {}}
- ::bind BwSpinBox <FocusIn> {focus %W.labf}
- ::bind BwSpinBox <Destroy> {SpinBox::_destroy %W}
- proc ::SpinBox { path args } { return [eval SpinBox::create $path $args] }
- proc use {} {}
- variable _widget
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::create
- # ------------------------------------------------------------------------------
- proc SpinBox::create { path args } {
- variable _widget
- Widget::init SpinBox $path $args
- _test_options $path
- eval frame $path [Widget::subcget $path :cmd] \
- -highlightthickness 0 -bd 0 -relief flat -takefocus 0
- set labf [eval LabelFrame::create $path.labf [Widget::subcget $path .labf] \
- -borderwidth 2 -relief sunken -focus $path.e]
- set entry [eval Entry::create $path.e [Widget::subcget $path .e] \
- -relief flat -borderwidth 0]
- bindtags $path [list $path BwSpinBox [winfo toplevel $path] all]
- set farr [frame $path.farr -relief flat -bd 0 -highlightthickness 0]
- set height [expr {[winfo reqheight $path.e]/2-2}]
- set width 11
- set arrup [eval ArrowButton::create $path.arrup -dir top \
- [Widget::subcget $path .arrup] \
- -highlightthickness 0 -borderwidth 1 -takefocus 0 \
- -type button \
- -width $width -height $height \
- -armcommand [list "SpinBox::_modify_value $path next arm"] \
- -disarmcommand [list "SpinBox::_modify_value $path next disarm"]]
- set arrdn [eval ArrowButton::create $path.arrdn -dir bottom \
- [Widget::subcget $path .arrdn] \
- -highlightthickness 0 -borderwidth 1 -takefocus 0 \
- -type button \
- -width $width -height $height \
- -armcommand [list "SpinBox::_modify_value $path previous arm"] \
- -disarmcommand [list "SpinBox::_modify_value $path previous disarm"]]
- set frame [LabelFrame::getframe $path.labf]
- # --- update -value ---
- if { [set val [Entry::cget $path.e -text]] != "" } {
- set _widget($path,curval) $val
- } else {
- if { [set var [Widget::getoption $path -textvariable]] != "" } {
- GlobalVar::setvar $var $_widget($path,curval)
- } else {
- Entry::configure $path.e -text $_widget($path,curval)
- }
- }
- Widget::setoption $path -text $_widget($path,curval)
- grid $arrup -in $farr -column 0 -row 0 -sticky nsew
- grid $arrdn -in $farr -column 0 -row 2 -sticky nsew
- grid rowconfigure $farr 0 -weight 1
- grid rowconfigure $farr 2 -weight 1
- pack $farr -in $frame -side right -fill y
- pack $entry -in $frame -side left -fill both -expand yes
- pack $labf -fill both -expand yes
- ::bind $entry <Key-Up> "SpinBox::_modify_value $path next activate"
- ::bind $entry <Key-Down> "SpinBox::_modify_value $path previous activate"
- ::bind $entry <Key-Prior> "SpinBox::_modify_value $path last activate"
- ::bind $entry <Key-Next> "SpinBox::_modify_value $path first activate"
- ::bind $farr <Configure> {grid rowconfigure %W 1 -minsize [expr {%h%%2}]}
- rename $path ::$path:cmd
- proc ::$path { cmd args } "return \[eval SpinBox::\$cmd $path \$args\]"
- return $path
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::configure
- # ------------------------------------------------------------------------------
- proc SpinBox::configure { path args } {
- set res [Widget::configure $path $args]
- if { [Widget::hasChanged $path -values val] ||
- [Widget::hasChanged $path -range val] } {
- _test_options $path
- }
- return $res
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::cget
- # ------------------------------------------------------------------------------
- proc SpinBox::cget { path option } {
- return [Widget::cget $path $option]
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::setvalue
- # ------------------------------------------------------------------------------
- proc SpinBox::setvalue { path index } {
- variable _widget
- set values [Widget::getoption $path -values]
- set value [Entry::cget $path.e -text]
- if { [llength $values] } {
- # --- -values SpinBox ---
- switch -- $index {
- next {
- if { [set idx [lsearch $values $value]] != -1 } {
- incr idx
- } elseif { [set idx [lsearch $values "$value*"]] == -1 } {
- set idx [lsearch $values $_widget($path,curval)]
- }
- }
- previous {
- if { [set idx [lsearch $values $value]] != -1 } {
- incr idx -1
- } elseif { [set idx [lsearch $values "$value*"]] == -1 } {
- set idx [lsearch $values $_widget($path,curval)]
- }
- }
- first {
- set idx 0
- }
- last {
- set idx [expr {[llength $values]-1}]
- }
- default {
- if { [string index $index 0] == "@" } {
- set idx [string range $index 1 end]
- if { [catch {string compare [expr {int($idx)}] $idx} res] || $res != 0 } {
- return -code error "bad index \"$index\""
- }
- } else {
- return -code error "bad index \"$index\""
- }
- }
- }
- if { $idx >= 0 && $idx < [llength $values] } {
- set newval [lindex $values $idx]
- } else {
- return 0
- }
- } else {
- # --- -range SpinBox ---
- set range [Widget::getoption $path -range]
- set vmin [lindex $range 0]
- set vmax [lindex $range 1]
- set incr [lindex $range 2]
- switch -- $index {
- next {
- if { [catch {expr {double($value-$vmin)/$incr}} idx] } {
- set newval $_widget($path,curval)
- } else {
- set newval [expr {$vmin+(round($idx)+1)*$incr}]
- if { $newval < $vmin } {
- set newval $vmin
- } elseif { $newval > $vmax } {
- set newval $vmax
- }
- }
- }
- previous {
- if { [catch {expr {double($value-$vmin)/$incr}} idx] } {
- set newval $_widget($path,curval)
- } else {
- set newval [expr {$vmin+(round($idx)-1)*$incr}]
- if { $newval < $vmin } {
- set newval $vmin
- } elseif { $newval > $vmax } {
- set newval $vmax
- }
- }
- }
- first {
- set newval $vmin
- }
- last {
- set newval $vmax
- }
- default {
- if { [string index $index 0] == "@" } {
- set idx [string range $index 1 end]
- if { [catch {string compare [expr {int($idx)}] $idx} res] || $res != 0 } {
- return -code error "bad index \"$index\""
- }
- set newval [expr {$vmin+int($idx)*$incr}]
- if { $newval < $vmin || $newval > $vmax } {
- return 0
- }
- } else {
- return -code error "bad index \"$index\""
- }
- }
- }
- }
- set _widget($path,curval) $newval
- Widget::setoption $path -text $newval
- if { [set varname [Entry::cget $path.e -textvariable]] != "" } {
- GlobalVar::setvar $varname $newval
- } else {
- Entry::configure $path.e -text $newval
- }
- return 1
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::getvalue
- # ------------------------------------------------------------------------------
- proc SpinBox::getvalue { path } {
- variable _widget
- set values [Widget::getoption $path -values]
- set value [Entry::cget $path.e -text]
- if { [llength $values] } {
- # --- -values SpinBox ---
- return [lsearch $values $value]
- } else {
- set range [Widget::getoption $path -range]
- set vmin [lindex $range 0]
- set vmax [lindex $range 1]
- set incr [lindex $range 2]
- if { ![catch {expr {double($value-$vmin)/$incr}} idx] &&
- $idx == int($idx) } {
- return [expr {int($idx)}]
- }
- return -1
- }
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::bind
- # ------------------------------------------------------------------------------
- proc SpinBox::bind { path args } {
- return [eval ::bind $path.e $args]
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::_destroy
- # ------------------------------------------------------------------------------
- proc SpinBox::_destroy { path } {
- variable _widget
- unset _widget($path,curval)
- Widget::destroy $path
- rename $path {}
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::_modify_value
- # ------------------------------------------------------------------------------
- proc SpinBox::_modify_value { path direction reason } {
- if { $reason == "arm" || $reason == "activate" } {
- SpinBox::setvalue $path $direction
- }
- if { ($reason == "disarm" || $reason == "activate") &&
- [set cmd [Widget::getoption $path -modifycmd]] != "" } {
- uplevel \#0 $cmd
- }
- }
- # ------------------------------------------------------------------------------
- # Command SpinBox::_test_options
- # ------------------------------------------------------------------------------
- proc SpinBox::_test_options { path } {
- variable _widget
- set values [Widget::getoption $path -values]
- if { [llength $values] } {
- set _widget($path,curval) [lindex $values 0]
- } else {
- set range [Widget::getoption $path -range]
- set vmin [lindex $range 0]
- set vmax [lindex $range 1]
- set incr [lindex $range 2]
- if { [catch {expr {int($vmin)}}] } {
- set vmin 0
- }
- if { [catch {expr {$vmax<$vmin}} res] || $res } {
- set vmax $vmin
- }
- if { [catch {expr {$incr<0}} res] || $res } {
- set incr 1
- }
- Widget::setoption $path -range [list $vmin $vmax $incr]
- set _widget($path,curval) $vmin
- }
- }
|