/usr/lib/grass64/bwidget/dialog.tcl is in grass-gui 6.4.3-3.
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 | # ------------------------------------------------------------------------------
# dialog.tcl
# This file is part of Unifix BWidget Toolkit
# $Id: dialog.tcl 10192 2002-01-24 19:25:32Z radim $
# ------------------------------------------------------------------------------
# Index of commands:
# - Dialog::create
# - Dialog::configure
# - Dialog::cget
# - Dialog::getframe
# - Dialog::add
# - Dialog::itemconfigure
# - Dialog::itemcget
# - Dialog::invoke
# - Dialog::setfocus
# - Dialog::enddialog
# - Dialog::draw
# - Dialog::withdraw
# - Dialog::_destroy
# ------------------------------------------------------------------------------
namespace eval Dialog {
ButtonBox::use
Widget::bwinclude Dialog ButtonBox .bbox \
remove {-orient} \
initialize {-spacing 10 -padx 10}
Widget::declare Dialog {
{-title String "" 0}
{-modal Enum local 0 {none local global}}
{-bitmap TkResource "" 1 label}
{-image TkResource "" 1 label}
{-separator Boolean 0 1}
{-cancel Int -1 0 {=-1 ""}}
{-parent String "" 0}
{-side Enum bottom 1 {bottom left top right}}
{-anchor Enum c 1 {n e w s c}}
}
Widget::addmap Dialog "" :cmd {-background {}}
Widget::addmap Dialog "" .frame {-background {}}
proc ::Dialog { path args } { return [eval Dialog::create $path $args] }
proc use {} {}
bind BwDialog <Destroy> {Dialog::enddialog %W -1; Dialog::_destroy %W}
variable _widget
}
# ------------------------------------------------------------------------------
# Command Dialog::create
# ------------------------------------------------------------------------------
proc Dialog::create { path args } {
global tcl_platform
variable _widget
Widget::init Dialog $path $args
set bg [Widget::getoption $path -background]
if { ![string compare $tcl_platform(platform) "unix"] } {
toplevel $path -relief raised -borderwidth 1 -background $bg
} else {
toplevel $path -relief flat -borderwidth 0 -background $bg
}
bindtags $path [list $path BwDialog all]
wm overrideredirect $path 1
wm title $path [Widget::getoption $path -title]
set parent [Widget::getoption $path -parent]
if { ![winfo exists $parent] } {
set parent [winfo parent $path]
}
wm transient $path [winfo toplevel $parent]
wm withdraw $path
set side [Widget::getoption $path -side]
if { ![string compare $side "left"] || ![string compare $side "right"] } {
set orient vertical
} else {
set orient horizontal
}
set bbox [eval ButtonBox::create $path.bbox [Widget::subcget $path .bbox] \
-orient $orient]
set frame [frame $path.frame -relief flat -borderwidth 0 -background $bg]
if { [set bitmap [Widget::getoption $path -image]] != "" } {
set label [label $path.label -image $bitmap -background $bg]
} elseif { [set bitmap [Widget::getoption $path -bitmap]] != "" } {
set label [label $path.label -bitmap $bitmap -background $bg]
}
if { [Widget::getoption $path -separator] } {
Separator::create $path.sep -orient $orient -background $bg
}
set _widget($path,realized) 0
set _widget($path,nbut) 0
bind $path <Escape> "ButtonBox::invoke $path.bbox [Widget::getoption $path -cancel]"
bind $path <Return> "ButtonBox::invoke $path.bbox default"
rename $path ::$path:cmd
proc ::$path { cmd args } "return \[eval Dialog::\$cmd $path \$args\]"
return $path
}
# ------------------------------------------------------------------------------
# Command Dialog::configure
# ------------------------------------------------------------------------------
proc Dialog::configure { path args } {
set res [Widget::configure $path $args]
if { [Widget::hasChanged $path -title title] } {
wm title $path $title
}
if { [Widget::hasChanged $path -background bg] } {
if { [winfo exists $path.label] } {
$path.label configure -background $bg
}
if { [winfo exists $path.sep] } {
Separator::configure $path.sep -background $bg
}
}
return $res
}
# ------------------------------------------------------------------------------
# Command Dialog::cget
# ------------------------------------------------------------------------------
proc Dialog::cget { path option } {
return [Widget::cget $path $option]
}
# ------------------------------------------------------------------------------
# Command Dialog::getframe
# ------------------------------------------------------------------------------
proc Dialog::getframe { path } {
return $path.frame
}
# ------------------------------------------------------------------------------
# Command Dialog::add
# ------------------------------------------------------------------------------
proc Dialog::add { path args } {
variable _widget
set res [eval ButtonBox::add $path.bbox \
-command [list "Dialog::enddialog $path $_widget($path,nbut)"] $args]
incr _widget($path,nbut)
return $res
}
# ------------------------------------------------------------------------------
# Command Dialog::itemconfigure
# ------------------------------------------------------------------------------
proc Dialog::itemconfigure { path index args } {
return [eval ButtonBox::itemconfigure $path.bbox $index $args]
}
# ------------------------------------------------------------------------------
# Command Dialog::itemcget
# ------------------------------------------------------------------------------
proc Dialog::itemcget { path index option } {
return [ButtonBox::itemcget $path.bbox $index $option]
}
# ------------------------------------------------------------------------------
# Command Dialog::invoke
# ------------------------------------------------------------------------------
proc Dialog::invoke { path index } {
ButtonBox::invoke $path.bbox $index
}
# ------------------------------------------------------------------------------
# Command Dialog::setfocus
# ------------------------------------------------------------------------------
proc Dialog::setfocus { path index } {
ButtonBox::setfocus $path.bbox $index
}
# ------------------------------------------------------------------------------
# Command Dialog::enddialog
# ------------------------------------------------------------------------------
proc Dialog::enddialog { path result } {
variable _widget
set _widget($path,result) $result
}
# ------------------------------------------------------------------------------
# Command Dialog::draw
# ------------------------------------------------------------------------------
proc Dialog::draw { path {focus ""}} {
variable _widget
set parent [Widget::getoption $path -parent]
if { !$_widget($path,realized) } {
set _widget($path,realized) 1
if { [llength [winfo children $path.bbox]] } {
set side [Widget::getoption $path -side]
if { ![string compare $side "left"] || ![string compare $side "right"] } {
set pad -padx
set fill y
} else {
set pad -pady
set fill x
}
pack $path.bbox -side $side -anchor [Widget::getoption $path -anchor] -padx 1m -pady 1m
if { [winfo exists $path.sep] } {
pack $path.sep -side $side -fill $fill $pad 2m
}
}
if { [winfo exists $path.label] } {
pack $path.label -side left -anchor n -padx 3m -pady 3m
}
pack $path.frame -padx 1m -pady 1m -fill both -expand yes
}
if { [winfo exists $parent] } {
BWidget::place $path 0 0 center $parent
} else {
BWidget::place $path 0 0 center
}
update idletasks
wm overrideredirect $path 0
wm deiconify $path
tkwait visibility $path
BWidget::focus set $path
if { [winfo exists $focus] } {
focus -force $focus
} else {
ButtonBox::setfocus $path.bbox default
}
if { [set grab [Widget::getoption $path -modal]] != "none" } {
BWidget::grab $grab $path
catch {unset _widget($path,result)}
tkwait variable Dialog::_widget($path,result)
if { [info exists _widget($path,result)] } {
set res $_widget($path,result)
unset _widget($path,result)
} else {
set res -1
}
withdraw $path
return $res
}
return ""
}
# ------------------------------------------------------------------------------
# Command Dialog::withdraw
# ------------------------------------------------------------------------------
proc Dialog::withdraw { path } {
BWidget::grab release $path
BWidget::focus release $path
if { [winfo exists $path] } {
wm withdraw $path
}
}
# ------------------------------------------------------------------------------
# Command Dialog::_destroy
# ------------------------------------------------------------------------------
proc Dialog::_destroy { path } {
variable _widget
BWidget::grab release $path
BWidget::focus release $path
catch {unset _widget($path,result)}
unset _widget($path,realized)
unset _widget($path,nbut)
Widget::destroy $path
rename $path {}
}
|