123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- # ------------------------------------------------------------------------------
- # buttonbox.tcl
- # This file is part of Unifix BWidget Toolkit
- # ------------------------------------------------------------------------------
- # Index of commands:
- # - ButtonBox::create
- # - ButtonBox::configure
- # - ButtonBox::cget
- # - ButtonBox::add
- # - ButtonBox::itemconfigure
- # - ButtonBox::itemcget
- # - ButtonBox::setfocus
- # - ButtonBox::invoke
- # - ButtonBox::index
- # - ButtonBox::_destroy
- # ------------------------------------------------------------------------------
- namespace eval ButtonBox {
- Button::use
- Widget::declare ButtonBox {
- {-background TkResource "" 0 frame}
- {-orient Enum horizontal 1 {horizontal vertical}}
- {-homogeneous Boolean 1 1}
- {-spacing Int 10 0 {=0}}
- {-padx TkResource "" 0 button}
- {-pady TkResource "" 0 button}
- {-default Int -1 0 {=-1}}
- {-bg Synonym -background}
- }
- Widget::addmap ButtonBox "" :cmd {-background {}}
- proc ::ButtonBox { path args } { return [eval ButtonBox::create $path $args] }
- proc use {} {}
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::create
- # ------------------------------------------------------------------------------
- proc ButtonBox::create { path args } {
- Widget::init ButtonBox $path $args
- variable $path
- upvar 0 $path data
- eval frame $path [Widget::subcget $path :cmd] -takefocus 0 -highlightthickness 0
- set data(default) [Widget::getoption $path -default]
- set data(nbuttons) 0
- set data(max) 0
- bind $path <Destroy> "ButtonBox::_destroy $path"
- rename $path ::$path:cmd
- proc ::$path { cmd args } "return \[eval ButtonBox::\$cmd $path \$args\]"
- return $path
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::configure
- # ------------------------------------------------------------------------------
- proc ButtonBox::configure { path args } {
- variable $path
- upvar 0 $path data
- set res [Widget::configure $path $args]
- if { [Widget::hasChanged $path -default val] } {
- if { $data(default) != -1 && $val != -1 } {
- set but $path.b$data(default)
- if { [winfo exists $but] } {
- $but configure -default normal
- }
- set but $path.b$val
- if { [winfo exists $but] } {
- $but configure -default active
- }
- set data(default) $val
- } else {
- Widget::setoption $path -default $data(default)
- }
- }
- return $res
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::cget
- # ------------------------------------------------------------------------------
- proc ButtonBox::cget { path option } {
- return [Widget::cget $path $option]
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::add
- # ------------------------------------------------------------------------------
- proc ButtonBox::add { path args } {
- variable $path
- upvar 0 $path data
- set but $path.b$data(nbuttons)
- set spacing [Widget::getoption $path -spacing]
- if { $data(nbuttons) == $data(default) } {
- set style active
- } elseif { $data(default) == -1 } {
- set style disabled
- } else {
- set style normal
- }
- eval Button::create $but \
- -background [Widget::getoption $path -background]\
- -padx [Widget::getoption $path -padx] \
- -pady [Widget::getoption $path -pady] \
- $args \
- -default $style
- set idx [expr {2*$data(nbuttons)}]
- if { ![string compare [Widget::getoption $path -orient] "horizontal"] } {
- grid $but -column $idx -row 0 -sticky nsew
- if { [Widget::getoption $path -homogeneous] } {
- set req [winfo reqwidth $but]
- if { $req > $data(max) } {
- for {set i 0} {$i < $data(nbuttons)} {incr i} {
- grid columnconfigure $path [expr {2*$i}] -minsize $req
- }
- set data(max) $req
- }
- grid columnconfigure $path $idx -minsize $data(max) -weight 1
- } else {
- grid columnconfigure $path $idx -weight 0
- }
- if { $data(nbuttons) > 0 } {
- grid columnconfigure $path [expr {$idx-1}] -minsize $spacing
- }
- } else {
- grid $but -column 0 -row $idx -sticky nsew
- grid rowconfigure $path $idx -weight 0
- if { $data(nbuttons) > 0 } {
- grid rowconfigure $path [expr {$idx-1}] -minsize $spacing
- }
- }
- incr data(nbuttons)
- return $but
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::itemconfigure
- # ------------------------------------------------------------------------------
- proc ButtonBox::itemconfigure { path index args } {
- if { [set idx [lsearch $args -default]] != -1 } {
- set args [lreplace $args $idx [expr {$idx+1}]]
- }
- return [eval Button::configure $path.b[index $path $index] $args]
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::itemcget
- # ------------------------------------------------------------------------------
- proc ButtonBox::itemcget { path index option } {
- return [Button::cget $path.b[index $path $index] $option]
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::setfocus
- # ------------------------------------------------------------------------------
- proc ButtonBox::setfocus { path index } {
- set but $path.b[index $path $index]
- if { [winfo exists $but] } {
- focus $but
- }
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::invoke
- # ------------------------------------------------------------------------------
- proc ButtonBox::invoke { path index } {
- set but $path.b[index $path $index]
- if { [winfo exists $but] } {
- Button::invoke $but
- }
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::index
- # ------------------------------------------------------------------------------
- proc ButtonBox::index { path index } {
- if { ![string compare $index "default"] } {
- set res [Widget::getoption $path -default]
- } elseif { ![string compare $index "end"] || ![string compare $index "last"] } {
- variable $path
- upvar 0 $path data
- set res [expr {$data(nbuttons)-1}]
- } else {
- set res $index
- }
- return $res
- }
- # ------------------------------------------------------------------------------
- # Command ButtonBox::_destroy
- # ------------------------------------------------------------------------------
- proc ButtonBox::_destroy { path } {
- variable $path
- upvar 0 $path data
- Widget::destroy $path
- unset data
- rename $path {}
- }
|