Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [4025b05b] propper Engish in comments and error messages. Thanks, Lindblad |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | bwidget |
Files: | files | file ages | folders |
SHA3-256: |
0be16a089537a65bca915a6930591820 |
User & Date: | oehhar 2025-06-17 08:25:57.462 |
References
2025-06-17
| ||
08:29 | • Closed ticket [4025b05b21]: R Project plus 7 other changes artifact: 7859b2e14e user: oehhar | |
Context
2025-06-23
| ||
10:52 | Manpage spelling correction from ticket [c1054975] (except catched->cached in DropSite.html) Thanks, lindblad check-in: 4de3775b56 user: oehhar tags: bwidget | |
2025-06-17
| ||
08:25 | [4025b05b] propper Engish in comments and error messages. Thanks, Lindblad check-in: 0be16a0895 user: oehhar tags: bwidget | |
2025-02-25
| ||
06:42 | Update German localization of the password dialog. Thanks to Thomas Wunderlich for the proposal check-in: 14355b0aa3 user: oehhar tags: bwidget | |
Changes
Changes to utils.tcl.
︙ | ︙ | |||
202 203 204 205 206 207 208 | set font "-*-*-*-*-*-*-*-*-*-*-*-*-*-*" } configure { set font [lindex $args 0] set args [lrange $args 1 end] } default { | | | | 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 | set font "-*-*-*-*-*-*-*-*-*-*-*-*-*-*" } configure { set font [lindex $args 0] set args [lrange $args 1 end] } default { return -code error "XLFDfont: command incorrect: $cmd" } } set lfont [split $font "-"] if { [llength $lfont] != 15 } { return -code error "XLFDfont: description XLFD incorrect: $font" } foreach {option value} $args { switch -- $option { -foundry { set index 1 } -family { set index 2 } -weight { set index 3 } -slant { set index 4 } -size { set index 7 } default { return -code error "XLFDfont: option incorrect: $option" } } set lfont [lreplace $lfont $index $index $value] } return [join $lfont "-"] } |
︙ | ︙ |
Changes to widget.tcl.
︙ | ︙ | |||
88 89 90 91 92 93 94 | # ---------------------------------------------------------------------------- # Command Widget::tkinclude # Includes tk widget resources to BWidget widget. # class class name of the BWidget # tkwidget tk widget to include # subpath subpath to configure | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | # ---------------------------------------------------------------------------- # Command Widget::tkinclude # Includes tk widget resources to BWidget widget. # class class name of the BWidget # tkwidget tk widget to include # subpath subpath to configure # args additional args for included options # ---------------------------------------------------------------------------- proc Widget::tkinclude { class tkwidget subpath args } { foreach {cmd lopt} $args { # cmd can be # include options to include lopt = {opt ...} # remove options to remove lopt = {opt ...} # rename options to rename lopt = {opt newopt ...} |
︙ | ︙ | |||
133 134 135 136 137 138 139 | namespace eval $class {} upvar 0 ${class}::opt classopt upvar 0 ${class}::map classmap upvar 0 ${class}::map$subpath submap upvar 0 ${class}::optionExports exports | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | namespace eval $class {} upvar 0 ${class}::opt classopt upvar 0 ${class}::map classmap upvar 0 ${class}::map$subpath submap upvar 0 ${class}::optionExports exports # create resources information from tk widget resources foreach optdesc [_get_tkwidget_options $tkwidget] { set option [lindex $optdesc 0] if { (![info exists include] || [info exists include($option)]) && ![info exists remove($option)] } { if { [llength $optdesc] == 3 } { # option is a synonym set syn [lindex $optdesc 1] |
︙ | ︙ | |||
193 194 195 196 197 198 199 | # ---------------------------------------------------------------------------- # Command Widget::bwinclude # Includes BWidget resources to BWidget widget. # class class name of the BWidget # subclass BWidget class to include # subpath subpath to configure | | | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | # ---------------------------------------------------------------------------- # Command Widget::bwinclude # Includes BWidget resources to BWidget widget. # class class name of the BWidget # subclass BWidget class to include # subpath subpath to configure # args additional args for included options # ---------------------------------------------------------------------------- proc Widget::bwinclude { class subclass subpath args } { foreach {cmd lopt} $args { # cmd can be # include options to include lopt = {opt ...} # remove options to remove lopt = {opt ...} # rename options to rename lopt = {opt newopt ...} |
︙ | ︙ | |||
240 241 242 243 244 245 246 | upvar 0 ${class}::opt classopt upvar 0 ${class}::map classmap upvar 0 ${class}::map$subpath submap upvar 0 ${class}::optionExports exports upvar 0 ${subclass}::opt subclassopt upvar 0 ${subclass}::optionExports subexports | | | 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | upvar 0 ${class}::opt classopt upvar 0 ${class}::map classmap upvar 0 ${class}::map$subpath submap upvar 0 ${class}::optionExports exports upvar 0 ${subclass}::opt subclassopt upvar 0 ${subclass}::optionExports subexports # create resources information from BWidget resources foreach {option optdesc} [array get subclassopt] { set subOption $option if { (![info exists include] || [info exists include($option)]) && ![info exists remove($option)] } { set type [lindex $optdesc 0] if { [string equal $type "Synonym"] } { # option is a synonym |
︙ | ︙ |