/usr/share/tcltk/tklib0.6/widget/toolbar.tcl is in tklib 0.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- tcl -*-
#
# toolbar - /snit::widget
# Manage items in a toolbar.
#
# RCS: @(#) $Id: toolbar.tcl,v 1.12 2010/06/01 18:06:52 hobbs Exp $
#
# ## Padding can be a list of {padx pady}
# -ipad -default 1 ; provides padding around each status bar item
# -pad -default 0 ; provides general padding around the status bar
# -separator -default {} ; one of {top left bottom right {}}
#
# All other options to frame
#
# Methods
# $path getframe => $frame
# $path add $widget ?args? => $widget
# All other methods to frame
#
# Bindings
# NONE
#
if 0 {
# Example
lappend auto_path ~/cvs/tcllib/tklib/modules/widget
package require widget::toolbar
set f [ttk::frame .f -padding 4]
pack $f -fill both -expand 1
set tb [widget::toolbar .f.tb]
pack $tb -fill both -expand 1
$tb add button foo -text Foo
$tb add button bar -text Bar -separator 1
$tb add button baz -text Baz
set b [ttk::button $tb.zippy -text Zippy -state disabled]
$tb add $b
}
package require widget
#package require tooltip
snit::widget widget::toolbar {
hulltype ttk::frame
component separator
component frame
delegate option * to hull
delegate method * to hull
option -wrap -default 0 -type [list snit::boolean]
option -separator -default {} -configuremethod C-separator \
-type [list snit::enum -values [list top left bottom right {}]]
# -pad provides general padding around the status bar
# -ipad provides padding around each status bar item
# Padding can be a list of {padx pady}
option -ipad -default 2 -configuremethod C-ipad \
-type [list snit::listtype -type {snit::integer} -minlen 1 -maxlen 4]
delegate option -pad to frame as -padding
variable ITEMS -array {}
variable uid 0
constructor {args} {
$hull configure -height 18
install frame using ttk::frame $win.frame
install separator using ttk::separator $win.separator
grid $frame -row 1 -column 1 -sticky news
grid columnconfigure $win 1 -weight 1
# we should have a <Configure> binding to wrap long toolbars
#bind $win <Configure> [mymethod resize [list $win] %w]
$self configurelist $args
}
method C-ipad {option value} {
set options($option) $value
# returns pad values - each will be a list of 2 ints
foreach {px py} [$self _padval $value] { break }
foreach w [grid slaves $frame] {
if {[string match _sep* $w]} {
grid configure $w -padx $px -pady 0
} else {
grid configure $w -padx $px -pady $py
}
}
}
method C-separator {option value} {
set options($option) $value
switch -exact -- $value {
top {
$separator configure -orient horizontal
grid $separator -row 0 -column 1 -sticky ew
}
left {
$separator configure -orient vertical
grid $separator -row 1 -column 0 -sticky ns
}
bottom {
$separator configure -orient horizontal
grid $separator -row 2 -column 1 -sticky ew
}
right {
$separator configure -orient vertical
grid $separator -row 1 -column 2 -sticky ns
}
{} {
grid remove $separator
}
}
}
# Use this or 'add' - but not both
method getframe {} { return $frame }
method add {what args} {
if {[winfo exists $what]} {
set w $what
set symbol $w
set ours 0
} else {
set w $frame._$what[incr uid]
set symbol [lindex $args 0]
set args [lrange $args 1 end]
if {![llength $args] || $symbol eq "%AUTO%"} {
# Autogenerate symbol name
set symbol _$what$uid
}
if {[info exists ITEMS($symbol)]} {
return -code error "item '$symbol' already exists"
}
if {$what eq "label" || $what eq "button"
|| $what eq "checkbutton" || $what eq "radiobutton"} {
set w [ttk::$what $w -style Toolbutton -takefocus 0]
} elseif {$what eq "separator"} {
set w [ttk::separator $w -orient vertical]
} elseif {$what eq "space"} {
set w [ttk::frame $w]
} else {
return -code error "unknown item type '$what'"
}
set ours 1
}
set opts(-weight) [string equal $what "space"]
set opts(-separator) 0
set opts(-sticky) news
set opts(-pad) $options(-ipad)
if {$what eq "separator"} {
# separators should not have pady by default
lappend opts(-pad) 0
}
set cmdargs [list]
set len [llength $args]
for {set i 0} {$i < $len} {incr i} {
set key [lindex $args $i]
set val [lindex $args [incr i]]
if {$key eq "--"} {
eval [list lappend cmdargs] [lrange $args $i end]
break
}
if {[info exists opts($key)]} {
set opts($key) $val
} else {
# no error - pass to command
lappend cmdargs $key $val
}
}
if {[catch {eval [linsert $cmdargs 0 $w configure]} err]} {
# we only want to destroy widgets we created
if {$ours} { destroy $w }
return -code error $err
}
set ITEMS($symbol) $w
widget::isa listofint 4 -pad $opts(-pad)
# returns pad values - each will be a list of 2 ints
foreach {px py} [$self _padval $opts(-pad)] { break }
# get cols,rows extent
foreach {cols rows} [grid size $frame] break
# Add separator if requested, and we aren't the first element
if {$opts(-separator) && $cols != 0} {
set sep [ttk::separator $frame._sep[winfo name $w] \
-orient vertical]
# No pady for separators, and adjust padx for separator space
set sx [lindex $px 0]
if {$sx < 2} { set sx 2 }
lset px 0 0
grid $sep -row 0 -column $cols -sticky ns -padx $sx -pady 0
incr cols
}
grid $w -in $frame -row 0 -column $cols -sticky $opts(-sticky) \
-pady $py -padx $px
grid columnconfigure $frame $cols -weight $opts(-weight)
return $symbol
}
method remove {args} {
set destroy [string equal [lindex $args 0] "-destroy"]
if {$destroy} {
set args [lrange $args 1 end]
}
foreach sym $args {
# Should we ignore unknown (possibly already removed) items?
#if {![info exists ITEMS($sym)]} { continue }
set w $ITEMS($sym)
# separator name is based off item name
set sep $frame._sep[winfo name $w]
# destroy separator for remove or destroy case
destroy $sep
if {$destroy} {
destroy $w
} else {
grid forget $w
}
unset ITEMS($sym)
# XXX separator of next item is no longer necessary, if it exists
}
}
method delete {args} {
eval [linsert $args 0 $self remove -destroy]
}
method itemconfigure {symbol args} {
if {[info exists ITEMS($symbol)]} {
# configure exact item
return [eval [linsert $args 0 $ITEMS($symbol) configure]]
}
# configure based on $symbol as a glob pattern
set res {}
foreach sym [array names ITEMS -glob $symbol] {
lappend res \
[catch { eval [linsert $args 0 $ITEMS($sym) configure] } msg] \
$msg
}
# return something when we can figure out what is good to return
#return $res
}
method itemcget {symbol option} {
if {![info exists ITEMS($symbol)]} {
return -code error "unknown toolbar item '$symbol'"
}
return [$ITEMS($symbol) cget $option]
}
method itemid {symbol} {
if {![info exists ITEMS($symbol)]} {
return -code error "unknown toolbar item '$symbol'"
}
return $ITEMS($symbol)
}
method items {{ptn *}} {
if {$ptn ne "*"} {
return [array names ITEMS $ptn]
}
return [array names ITEMS]
}
method _padval {val} {
set len [llength $val]
if {$len == 0} {
return [list 0 0 0 0]
} elseif {$len == 1} {
return [list [list $val $val] [list $val $val]]
} elseif {$len == 2} {
set x [lindex $val 0] ; set y [lindex $val 1]
return [list [list $x $x] [list $y $y]]
} elseif {$len == 3} {
return [list [list [lindex $val 0] [lindex $val 2]] \
[list [lindex $val 1] [lindex $val 1]]]
} else {
return $val
}
}
method resize {w width} {
if {$w ne $win} { return }
if {$width < [winfo reqwidth $win]} {
# Take the last column item and move it down
}
}
}
package provide widget::toolbar 1.2.1
|