/usr/share/saods9/blt3.0/combobutton.tcl is in saods9-blt 7.2+dfsg-4.
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 | namespace eval blt::ComboButton {
variable _private
array set _private {
activeMenu {}
posted {}
activeItem {}
cursor {}
focus {}
oldGrab {}
trace 0
}
proc trace { mesg } {
variable _private
if { $_private(trace) } {
puts stderr $mesg
}
}
}
bind ComboButton <Enter> {
%W activate yes
}
bind ComboButton <Leave> {
%W activate no
}
bind ComboButton <B1-Motion> {
blt::ComboButton::trace "ComboButton <B1-Motion> %W state=[%W cget -state]"
blt::ComboButton::NextButton %W %X %Y
}
bind ComboButton <B1-Leave> {
blt::ComboButton::trace "ComboButton <B1-Leave> state=[%W cget -state]"
}
# Standard Motif bindings:
bind ComboButton <ButtonPress-1> {
blt::ComboButton::trace "ComboButton <ButtonPress-1> state=[%W cget -state]"
if { [%W cget -state] == "posted" } {
%W unpost
blt::ComboButton::UnpostMenu %W
} else {
grab -global %W
blt::ComboButton::PostMenu %W
}
}
bind ComboButton <ButtonRelease-1> {
blt::ComboButton::trace \
"ComboButton <ButtonRelease-1> state=[%W cget -state]"
if { [winfo containing -display %W %X %Y] == "%W" } {
blt::ComboButton::trace "invoke"
%W invoke
} else {
%W activate off
blt::ComboButton::trace "unpost"
blt::ComboButton::UnpostMenu %W
}
}
bind ComboButton <KeyPress-Down> {
if { [%W cget -state] != "disabled" } {
blt::ComboButton::PostMenu %W
}
}
# Ignore all Alt, Meta, and Control keypresses unless explicitly bound.
# Otherwise, if a widget binding for one of these is defined, the
# <KeyPress> class binding will also fire and insert the character,
# which is wrong. Ditto for Escape, Return, and Tab.
bind ComboButton <Alt-KeyPress> {# nothing}
bind ComboButton <Meta-KeyPress> { puts %K }
bind ComboButton <Control-KeyPress> {# nothing}
bind ComboButton <Escape> {# nothing}
#bind ComboButton <KP_Enter> {# nothing}
bind ComboButton <Tab> {# nothing}
if {[string equal [tk windowingsystem] "classic"] ||
[string equal [tk windowingsystem] "aqua"]} {
bind ComboButton <Command-KeyPress> {# nothing}
}
proc blt::ComboButton::SaveGrab { w } {
variable _private
set grab [grab current $w]
set _private(oldGrab) ""
if { $grab != "" } {
set type [grab status $grab]
if { $type == "global" } {
#set _private(oldGrab) [list grab set -global $grab]
} else {
#set _private(oldGrab) [list grab set $grab]
}
}
}
# ::blt::ComboButton::RestoreOldGrab --
# Restores the grab to what it was before TkSaveGrabInfo was called.
#
proc ::blt::ComboButton::RestoreOldGrab {} {
variable _private
if { $_private(oldGrab) != "" } {
# Be careful restoring the old grab, since it's window may not be
# visible anymore.
catch $_private(oldGrab)
set _private(oldGrab) ""
}
}
# ::blt::ComboButton::PostMenu --
# Given a menubutton, this procedure does all the work of posting
# its associated menu and unposting any other menu that is currently
# posted.
#
# Arguments:
# w - The name of the menubutton widget whose menu
# is to be posted.
# x, y - Root coordinates of cursor, used for positioning
# option menus. If not specified, then the center
# of the menubutton is used for an option menu.
proc ::blt::ComboButton::PostMenu { cbutton } {
variable _private
trace "proc ComboButton::PostMenu $cbutton, state=[$cbutton cget -state]"
if { [$cbutton cget -state] == "disabled" } {
return
}
if { [$cbutton cget -state] == "posted" } {
UnpostMenu $cbutton
return
}
set menu [$cbutton cget -menu]
if { $menu == "" } {
return
}
set last $_private(posted)
if { $last != "" } {
UnpostMenu $last
}
set _private(cursor) [$cbutton cget -cursor]
$cbutton configure -cursor arrow
set _private(posted) $cbutton
set _private(focus) [focus]
$menu activate none
GenerateMenuSelect $menu
# If this looks like an option menubutton then post the menu so
# that the current entry is on top of the mouse. Otherwise post
# the menu just below the menubutton, as for a pull-down.
update idletasks
if { [catch { $cbutton post } msg] != 0 } {
# Error posting menu (e.g. bogus -postcommand). Unpost it and
# reflect the error.
global errorInfo
set savedInfo $errorInfo
#
UnpostMenu $cbutton
error $msg $savedInfo
}
focus $menu
if { [winfo viewable $menu] } {
SaveGrab $menu
trace "setting global grab on $menu"
#grab -global $menu
}
}
# ::blt::ComboButton::UnpostMenu --
# This procedure unposts a given menu, plus all of its ancestors up
# to (and including) a menubutton, if any. It also restores various
# values to what they were before the menu was posted, and releases
# a grab if there's a menubutton involved. Special notes:
# 1. It's important to unpost all menus before releasing the grab, so
# that any Enter-Leave events (e.g. from menu back to main
# application) have mode NotifyGrab.
# 2. Be sure to enclose various groups of commands in "catch" so that
# the procedure will complete even if the menubutton or the menu
# or the grab window has been deleted.
#
# Arguments:
# menu - Name of a menu to unpost. Ignored if there
# is a posted menubutton.
proc ::blt::ComboButton::UnpostMenu { cbutton } {
variable _private
trace "proc ComboButton::UnpostMenu $cbutton"
# Restore focus right away (otherwise X will take focus away when the
# menu is unmapped and under some window managers (e.g. olvwm) we'll
# lose the focus completely).
catch { focus $_private(focus) }
set _private(focus) ""
# Unpost menu(s) and restore some stuff that's dependent on what was
# posted.
$cbutton unpost
set _private(posted) {}
if { [info exists _private(cursor)] } {
$cbutton configure -cursor $_private(cursor)
}
if { [$cbutton cget -state] != "disabled" } {
#$cbutton configure -state normal
}
set menu [$cbutton cget -menu]
trace MENU=$menu
trace GRAB=[grab current $menu]
# Release grab, if any, and restore the previous grab, if there
# was one.
if { $menu != "" } {
set grab [grab current $menu]
if { $grab != "" } {
grab release $grab
}
}
RestoreOldGrab
}
proc blt::ComboButton::GenerateMenuSelect {menu} {
variable _private
set item [$menu index active]
if { $_private(activeMenu) != $menu ||
$_private(activeItem) != $item } {
set _private(activeMenu) $menu
set _private(activeItem) $item
event generate $menu <<MenuSelect>>
}
}
proc blt::ComboButton::NextButton { cbutton rootx rooty } {
variable _private
set next [winfo containing -display $cbutton $rootx $rooty]
if { $next == "" || $next == $_private(posted) ||
[winfo class $next] != "ComboButton" } {
return
}
# Release the current combobutton, including removing the grab.
event generate $cbutton <ButtonRelease-1>
grab -global $next
# Simulate pressing the new combobutton widget.
event generate $next <ButtonPress-1>
}
|