|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package require Tk |
|
|
|
proc tixDetermineWM {} { |
|
|
|
global tcl_platform env |
|
|
|
set type "" |
|
if {$tcl_platform(platform) eq "windows"} { |
|
set type windows |
|
} else { |
|
|
|
|
|
|
|
if {![catch {exec xlsatoms} xatoms]} { |
|
if {[string match *GNOME_SESSION_CORBA_COOKIE* $xatoms]} { |
|
set type gnome |
|
} elseif {[string match *KDEChangeStyle* $xatoms]} { |
|
set type kde1 |
|
} elseif {[string match *KDE_DESKTOP_WINDOW* $xatoms]} { |
|
set type kde2 |
|
} |
|
} |
|
if {$type != ""} { |
|
|
|
} elseif {[info exists env(KDEDIR)] && [file isdir $env(KDEDIR)]} { |
|
|
|
set type kde2 |
|
} elseif {[info exists env(DTHOME)] && [file isdir $env(DTHOME)]} { |
|
set type cde |
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
return "" |
|
} |
|
} |
|
return $type |
|
} |
|
|
|
namespace eval ::wm_default { |
|
global tcl_platform env |
|
|
|
set _usetix [llength [info commands "tix"]] |
|
|
|
variable wm "" |
|
|
|
variable _frame_widgets {*Frame *Toplevel} |
|
|
|
if {$_usetix} { |
|
lappend _frame_widgets *TixLabelFrame *TixButtonBox *TixCObjView \ |
|
*TixListNoteBook *TixPanedWindow *TixStdButtonBox \ |
|
*TixExFileSelectBox |
|
} |
|
variable _menu_font_widgets {*Menu *Menubutton} |
|
if {$_usetix} {lappend _menu_font_widgets *TixMenu} |
|
variable _button_font_widgets {*Button} |
|
|
|
variable _system_font_widgets {*Label \ |
|
*Message \ |
|
*Scale *Radiobutton *Checkbutton |
|
} |
|
if {$_usetix} { |
|
lappend _system_font_widgets \ |
|
*TixBalloon*message *TixLabelFrame*Label \ |
|
*TixControl*label *TixControl*Label \ |
|
*TixLabelEntry*label *TixNoteBook.nbframe \ |
|
*TixFileEntry*label *TixComboBox*label \ |
|
*TixOptionMenu*menubutton *TixBitmapButton*label \ |
|
*TixMwmClient*title *TixFileSelectBox*Label |
|
} |
|
variable _text_type_widgets {*Canvas *Entry *Listbox *Text} |
|
if {$_usetix} { |
|
lappend _text_type_widgets \ |
|
*TixComboBox*Entry *TixControl*entry *TixScrolledHList*hlist \ |
|
*TixDirTree*hlist *TixDirList*hlist *TixTree*hlist \ |
|
*TixMultiList*Listbox *TixScrolledListBox*listbox \ |
|
*TixFileEntry*Entry *TixLabelEntry*Entry \ |
|
*TixFileEntry*entry *TixLabelEntry*entry \ |
|
*TixScrolledTList*tlist *TixScrolledText*text \ |
|
*TixHList *TixCheckList*hlist |
|
|
|
lappend _text_type_widgets \ |
|
*TixDirTree*f1 *TixDirList*f1 \ |
|
*TixFileSelectBox*file*listbox \ |
|
*TixFileSelectBox*directory*listbox \ |
|
*TixExFileSelectBox*filelist*listbox |
|
} |
|
|
|
variable _insert_type_widgets {*Entry *Text} |
|
if {$_usetix} { |
|
lappend _insert_type_widgets \ |
|
*TixControl*entry *TixComboBox*Entry |
|
} |
|
|
|
variable _select_type_widgets {*Checkbutton \ |
|
*Radiobutton \ |
|
*Menu} |
|
variable _active_borderwidth_widgets {*Button *Radiobutton *Checkbutton} |
|
|
|
|
|
variable _nonzero_borderwidth_widgets {} |
|
|
|
|
|
|
|
variable _null_borderwidth_widgets {*Menubutton *Label} |
|
|
|
variable _scrollbar_widgets {} |
|
variable _scrollbar_widgets {*Scrollbar} |
|
if {$_usetix} { |
|
lappend _scrollbar_widgets \ |
|
*TixTree*Scrollbar *TixDirTree*Scrollbar *TixDirList*Scrollbar \ |
|
*TixScrolledTList*Scrollbar *TixScrolledListBox*Scrollbar \ |
|
*TixScrolledHList*Scrollbar *TixMultiView*Scrollbar \ |
|
*TixScrolledText*Scrollbar *TixScrolledWindow*Scrollbar \ |
|
*TixCObjView*Scrollbar |
|
} |
|
|
|
proc debug {str} { |
|
if {[llength [info commands "tix"]] && |
|
[string is true -strict [tix cget -debug]]} { |
|
puts $str |
|
} |
|
} |
|
|
|
|
|
proc getoptions {} { |
|
set retval {} |
|
set len [string length "::wm_default::"] |
|
foreach variable [lsort [info vars ::wm_default::*]] { |
|
if {[string match ::wm_default::_* $variable]} {continue} |
|
set key [string range $variable $len end] |
|
lappend retval $key [set $variable] |
|
} |
|
return $retval |
|
} |
|
|
|
|
|
proc parray {} { |
|
set retval "" |
|
foreach {key val} [::wm_default::getoptions] { |
|
append retval [join [list $key $val]] "\n" |
|
} |
|
debug $retval |
|
return $retval |
|
} |
|
|
|
|
|
set _bd 2 |
|
|
|
set _screenheight [winfo screenheight .] |
|
if {$_screenheight < 500} { |
|
|
|
set _pixel 10 |
|
set _point 8 |
|
|
|
set _bd 1 |
|
} elseif {$_screenheight < 800} { |
|
|
|
set _pixel 12 |
|
set _point 8 |
|
} elseif {$_screenheight < 1100} { |
|
|
|
set _pixel 12 |
|
set _point 8 |
|
} else { |
|
set _pixel 12 |
|
set _point 10 |
|
} |
|
|
|
|
|
|
|
if {$tcl_platform(platform) eq "windows"} { |
|
|
|
if {$tcl_platform(osVersion) < 5} { |
|
set _prop_default "MS Sans Serif" |
|
} else { |
|
set _prop_default "Tahoma" |
|
} |
|
|
|
|
|
set _allowed [string tolow [font families]] |
|
foreach font [list $_prop_default "MS Sans Serif" Tahoma Arial System] { |
|
if {[lsearch -exact $_allowed [string tolow $font]] > -1} { |
|
set _prop_default $font |
|
break |
|
} |
|
} |
|
|
|
set _fixed_default {Courier New} |
|
|
|
foreach font [list $_fixed_default Courier System] { |
|
if {[lsearch -exact $_allowed [string tolow $font]] > -1} { |
|
set _fixed_default $font |
|
break |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
variable \ |
|
background "SystemButtonFace" \ |
|
foreground "SystemButtonText" \ |
|
disabledforeground "SystemDisabledText" \ |
|
disabledbackground "SystemButtonShadow" \ |
|
textfamily $_prop_default \ |
|
systemfamily $_prop_default \ |
|
menufamily $_prop_default \ |
|
fixedfamily $_fixed_default \ |
|
fontsize $_point \ |
|
textbackground "SystemWindow" \ |
|
textforeground "SystemWindowText" \ |
|
disabledtextbackground "SystemDisabledText" \ |
|
selectbackground "SystemHighlight" \ |
|
selectforeground "SystemHighlightText" \ |
|
selectcolor "SystemWindow" \ |
|
highlightcolor "SystemWindowFrame" \ |
|
highlightbackground "SystemButtonFace" \ |
|
scrollbars "SystemScrollbar" \ |
|
borderwidth $_bd \ |
|
menubackground "SystemMenu" \ |
|
menuforeground "SystemMenuText" |
|
|
|
variable highlightthickness 1 |
|
|
|
|
|
variable activebackground $background |
|
variable activeforeground $foreground |
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set _bg [. cget -background] |
|
|
|
set _prop_default helvetica |
|
|
|
set _allowed [string tolow [font families]] |
|
foreach font [list $_prop_default times fixed] { |
|
if {[lsearch -exact $_allowed [string tolow $font]] > -1} { |
|
set _prop_default $font |
|
break |
|
} |
|
} |
|
set _fixed_default courier |
|
|
|
foreach font [list $_fixed_default fixed] { |
|
if {[lsearch -exact $_allowed [string tolow $font]] > -1} { |
|
set _fixed_default $font |
|
break |
|
} |
|
} |
|
|
|
variable \ |
|
background $_bg \ |
|
foreground Black \ |
|
disabledforeground #808080 \ |
|
disabledbackground #a3a3a3 \ |
|
textfamily $_prop_default \ |
|
systemfamily $_prop_default \ |
|
menufamily $_prop_default \ |
|
fixedfamily $_fixed_default \ |
|
fontsize $_pixel \ |
|
textbackground white \ |
|
textforeground Black \ |
|
disabledtextbackground $_bg \ |
|
selectbackground #000080 \ |
|
selectforeground white \ |
|
selectcolor yellow \ |
|
highlightcolor Black \ |
|
highlightbackground $_bg \ |
|
scrollbars "#c3c3c3" \ |
|
borderwidth $_bd \ |
|
menubackground $_bg \ |
|
menuforeground Black |
|
|
|
variable highlightthickness 1 |
|
|
|
|
|
variable activebackground "#ececec" |
|
variable activeforeground $foreground |
|
} |
|
|
|
|
|
if {$_usetix} { |
|
variable priority [tix cget -schemepriority] |
|
} else { |
|
variable priority 75 |
|
} |
|
|
|
|
|
variable system_font {} |
|
variable menu_font {} |
|
variable fixed_font {} |
|
variable text_font {} |
|
|
|
|
|
|
|
variable geometry 0+0+[winfo screenwidth .]+$_screenheight |
|
|
|
|
|
|
|
variable focusmodel clicktofocus |
|
|
|
|
|
|
|
variable linkcolor "#0000ff" vlinkcolor "#800000" alinkcolor "#800080" |
|
|
|
proc default {args} { |
|
|
|
foreach {var val} $args { |
|
set $var $val |
|
} |
|
} |
|
|
|
proc setup {{type ""}} { |
|
|
|
|
|
global tcl_platform env |
|
|
|
if {$type == ""} { |
|
if {[set type [::tixDetermineWM]] == ""} { |
|
set ::wm_default::wm "" |
|
|
|
return |
|
} |
|
} |
|
setup-$type |
|
set ::wm_default::wm $type |
|
|
|
} |
|
|
|
proc setup-windows {args} { |
|
|
|
|
|
} |
|
|
|
proc setup-gnome {args} { |
|
|
|
|
|
|
|
|
|
global env |
|
|
|
set bg $wm_default::background |
|
set fg $wm_default::foreground |
|
set txtFont $wm_default::textfamily |
|
set btnFont $wm_default::systemfamily |
|
|
|
debug "Setting up Gnome environment" |
|
|
|
set file ~/.gnome/theme-switcher-capplet |
|
if {![file exists $file] || \ |
|
[catch {open $file} fd] || $fd == ""} { |
|
debug "Skipping $file" |
|
} else { |
|
debug "Reading $file" |
|
set contents [read $fd] |
|
catch {close $fd} |
|
|
|
if {![regexp -- "use_theme_font=true" $contents]} { |
|
|
|
} elseif {[regexp -- "\nfont=(\[-a-zA-Z0-9,\]+)" $contents \ |
|
foo font]} { |
|
set_unix_font $font |
|
} |
|
} |
|
|
|
} |
|
|
|
proc set_unix_font {font} { |
|
|
|
set list [split $font "-"] |
|
set font [lindex $list 2] |
|
set font [string tolow $font] |
|
if {$font != "" && [lsearch -exact [font families] $font] > -1} { |
|
set wm_default::textfamily $font |
|
debug "Setting textfamily to $font" |
|
set wm_default::systemfamily $font |
|
set wm_default::menufamily $font |
|
} else { |
|
debug "Unable to set font: '$list'" |
|
} |
|
|
|
if {[set size [lindex $list 7]] != "" && \ |
|
[string is integer -strict $size]} { |
|
debug "Setting fontsize to '$size'" |
|
set wm_default::fontsize $size |
|
} elseif {[set size [lindex $list 8]] != "" && \ |
|
[string is integer -strict $size]} { |
|
if {$size > 100} {set size [expr {$size / 10}]} |
|
debug "Setting fontsize to '$size'" |
|
set wm_default::fontsize $size |
|
} else { |
|
debug "Unable to set fontsize: '$list'" |
|
} |
|
} |
|
|
|
|
|
proc setup-kde {args} { |
|
global env |
|
|
|
set file ~/.kderc |
|
if {![file exists $file] || [catch {open $file} fd] || $fd == ""} { |
|
debug "Skipping $file" |
|
} else { |
|
debug "Reading $file" |
|
set contents [read $fd] |
|
catch {close $fd} |
|
|
|
if {[regexp -- "\nfixedfamily=(\[-a-zA-Z0-9, \]+)" $contents \ |
|
foo font]} { |
|
set list [split $font ","] |
|
set font [lindex $list 0] |
|
set wm_default::fixedfamily $font |
|
debug "Setting fixedfamily to $font" |
|
} |
|
if {[regexp -- "\nfont=(\[-a-zA-Z0-9, \]+)" $contents \ |
|
foo font]} { |
|
set list [split $font ","] |
|
set font [lindex $list 0] |
|
set wm_default::textfamily $font |
|
debug "Setting textfamily to $font" |
|
set wm_default::systemfamily $font |
|
set wm_default::menufamily $font |
|
} |
|
} |
|
|
|
} |
|
|
|
proc setup-kde1 {args} { |
|
|
|
return [eval setup-kde $args] |
|
} |
|
|
|
proc set-kde2-color {str contents var} { |
|
if {[regexp -- "\n${str}=(\[0-9,\]+)" $contents -> color]} { |
|
set color [eval [list format "#%02x%02x%02x"] [split $color ","]] |
|
set ::wm_default::$var $color |
|
debug "setting $var to $color" |
|
} |
|
} |
|
|
|
proc setup-kde2 {args} { |
|
global env |
|
|
|
set bg $wm_default::background |
|
set fg $wm_default::foreground |
|
set txtFont $wm_default::textfamily |
|
set btnFont $wm_default::systemfamily |
|
|
|
debug "Setting up KDE environment" |
|
|
|
|
|
set dirs ~/.kde |
|
if {[info exists env(KDEDIR)] && [file isdir $env(KDEDIR)]} { |
|
lappend dirs $env(KDEDIR) |
|
} |
|
|
|
foreach dir $dirs { |
|
set file $dir/share/config/kdeglobals |
|
if {![file exists $file] || [catch {open $file} fd] || $fd == ""} { |
|
debug "Skipping $file" |
|
} else { |
|
debug "Reading $file" |
|
set contents [read $fd] |
|
catch {close $fd} |
|
set-kde2-color background $contents background |
|
set-kde2-color foreground $contents foreground |
|
set-kde2-color selectBackground $contents selectbackground |
|
set-kde2-color selectForeground $contents selectforeground |
|
set-kde2-color windowBackground $contents textbackground |
|
set-kde2-color visitedLinkColor $contents vlinkcolor |
|
set-kde2-color linkColor $contents linkcolor |
|
if {[regexp -- "\nactiveFont=(\[-a-zA-Z0-9, \]+)" $contents \ |
|
foo font]} { |
|
set list [split $font ","] |
|
set font [lindex $list 0] |
|
set wm_default::textfamily $font |
|
set size [lindex $list 1] |
|
if {[string is integer -strict $size]} { |
|
set wm_default::fontsize $size |
|
} |
|
debug "Setting textfamily to $font" |
|
set wm_default::systemfamily $font |
|
set wm_default::menufamily $font |
|
} |
|
} |
|
|
|
|
|
|
|
set file $dir/share/config/kwmrc |
|
if {![file exists $file] || [catch {open $file} fd] || $fd == ""} { |
|
debug "Skipping $file" |
|
} else { |
|
debug "Reading $file" |
|
set contents [read $fd] |
|
catch {close $fd} |
|
if {[regexp -- "\nDesktop1Region=(\[0-9+\]+)" $contents \ |
|
foo region]} { |
|
set wm_default::geometry $region |
|
debug "Setting geometry to $region" |
|
} |
|
|
|
if {[regexp -- "\nFocusPolicy=ClickToFocus" $contents \ |
|
foo region]} { |
|
set wm_default::focusmodel clicktofocus |
|
debug "Setting focusmodel to clicktofocus" |
|
} else { |
|
|
|
} |
|
} |
|
} |
|
|
|
return [eval setup-kde $args] |
|
} |
|
|
|
proc setup-cde {args} { |
|
namespace import wm_default::* |
|
|
|
set bg $wm_default::background |
|
set fg $wm_default::foreground |
|
set txtFont $wm_default::textfamily |
|
set sysFont $wm_default::systemfamily |
|
|
|
debug "Setting up CDE environment" |
|
|
|
|
|
set txtFont [option get . textfamilyList textfamilyList] |
|
set sysFont [option get . systemfamilyList systemfamilyList] |
|
if {$txtFont ne "" && $sysFont ne ""} { |
|
set txtFont [lindex [split $txtFont :] 0] |
|
set sysFont [lindex [split $sysFont :] 0] |
|
if {$txtFont ne ""} {set textfamily $txtFont} |
|
if {$sysFont ne ""} {set systemfamily $sysFont} |
|
|
|
|
|
|
|
|
|
set txtBg $bg |
|
set txtFg $fg |
|
set selFg $selectforeground |
|
set selBg $selectbackground |
|
set selCol $selectcolor |
|
set fh "" |
|
set palf "" |
|
set cur_rsrc ~/.dt/sessions/current/dt.resources |
|
set hom_rsrc ~/.dt/sessions/home/dt.resources |
|
if {[file readable $cur_rsrc] && [file readable $hom_rsrc]} { |
|
if {[file mtime $cur_rsrc] > [file mtime $hom_rsrc]} { |
|
if {[catch {open $cur_rsrc r} fh]} {set fh ""} |
|
} else { |
|
if {[catch {open $hom_rsrc r} fh]} {set fh ""} |
|
} |
|
} elseif {[file readable $cur_rsrc]} { |
|
if {[catch {open $cur_rsrc r} fh]} {set fh ""} |
|
} elseif {[file readable $hom_rsrc]} { |
|
if {[catch {open $hom_rsrc r} fh]} {set fh ""} |
|
} |
|
if {[string length $fh] > 0} { |
|
while {[gets $fh ln] != -1} { |
|
regexp -- "^\\*0\\*ColorPalette:\[ \t]*(.*)\$" $ln nil palf |
|
regexp -- "^Window.Color.Background:\[ \t]*(.*)\$" $ln nil txtBg |
|
regexp -- "^Window.Color.Foreground:\[ \t]*(.*)\$" $ln nil txtFg |
|
} |
|
catch {close $fh} |
|
if {$txtBg ne $bg} { |
|
set selBg $txtFg |
|
set selFg $txtBg |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
if {[string length $palf]} { |
|
set dtdir /usr/dt |
|
if [info exists env(DTHOME)] { |
|
set dtdir $env(DTHOME) |
|
} |
|
if {[file readable ~/.dt/palettes/$palf]} { |
|
set palf ~/.dt/palettes/$palf |
|
} elseif {[file readable $dtdir/palettes/$palf]} { |
|
set palf $dtdir/palettes/$palf |
|
} else { |
|
set palf "" |
|
} |
|
if {[string length $palf]} { |
|
if {![catch {open $palf r} fh]} { |
|
|
|
set ln ""; catch {gets $fh; gets $fh; gets $fh ln} |
|
set ln [string trim $ln] |
|
if {[string length $ln]} {set selCol $ln} |
|
close $fh |
|
} |
|
} |
|
} |
|
set wm_default::background $bg |
|
set wm_default::foreground $fg |
|
set wm_default::textfamily $txtFont |
|
set wm_default::systemfamily $sysFont |
|
set wm_default::menufamily $sysFont |
|
set wm_default::textbackground $txtBg |
|
set wm_default::textforeground $txtFg |
|
set wm_default::selectbackground $selBg |
|
set wm_default::selectforeground $selFg |
|
set wm_default::selectcolor $selCol |
|
} |
|
} |
|
|
|
proc derivefonts {} { |
|
global tcl_platform env |
|
|
|
|
|
variable system_font |
|
variable menu_font |
|
variable fixed_font |
|
variable text_font |
|
|
|
|
|
|
|
|
|
|
|
global tcl_platform env |
|
switch -exact -- $tcl_platform(platform) windows { |
|
set system_font [list $::wm_default::systemfamily $::wm_default::fontsize] |
|
set menu_font [list $::wm_default::menufamily $::wm_default::fontsize] |
|
set text_font [list $::wm_default::textfamily $::wm_default::fontsize] |
|
set fixed_font [list $::wm_default::fixedfamily $::wm_default::fontsize] |
|
} default { |
|
set system_font [list $::wm_default::systemfamily -$::wm_default::fontsize] |
|
if {[set type $::wm_default::wm] == ""} { |
|
|
|
|
|
set menu_font [list $::wm_default::menufamily -$::wm_default::fontsize bold] |
|
} else { |
|
|
|
set menu_font [list $::wm_default::menufamily -$::wm_default::fontsize] |
|
} |
|
set text_font [list $::wm_default::textfamily -$::wm_default::fontsize] |
|
set fixed_font [list $::wm_default::fixedfamily -$::wm_default::fontsize] |
|
} |
|
} |
|
|
|
proc addoptions {args} { |
|
global tcl_platform env tix_version |
|
|
|
|
|
variable system_font |
|
variable menu_font |
|
variable fixed_font |
|
variable text_font |
|
|
|
if {[info commands "tix"] != ""} {set _usetix 1} {set _usetix 0} |
|
|
|
|
|
foreach {var val} $args { |
|
set var [string trimleft $var "-"] |
|
set ::wm_default::$var $val |
|
} |
|
|
|
set pri $::wm_default::priority |
|
|
|
|
|
if {$_usetix} { |
|
|
|
bind TixComboBox <FocusIn> "" |
|
bind TixComboBox <FocusOut> "" |
|
|
|
if {$tix_version < "8.2"} { |
|
|
|
option add *TixNoteBook.nbframe.inactiveBackground \ |
|
$::wm_default::disabledbackground $pri |
|
} else { |
|
|
|
option add *TixNoteBook.nbframe.inactiveBackground \ |
|
$::wm_default::background $pri |
|
} |
|
|
|
|
|
option add *TixPanedWindow.seperatorBg \ |
|
$::wm_default::disabledbackground $pri |
|
option add *TixPanedWindow.handleBg \ |
|
$::wm_default::disabledbackground $pri |
|
|
|
|
|
option add *TixPanedWindow.separatorActiveBg \ |
|
$::wm_default::activebackground $pri |
|
option add *TixPanedWindow.handleActiveBg \ |
|
$::wm_default::activebackground $pri |
|
option add *TixPanedWindow.Background \ |
|
$::wm_default::disabledbackground $pri |
|
|
|
|
|
option add *TixResizeHandle*background \ |
|
$::wm_default::disabledbackground $pri |
|
|
|
} |
|
foreach pref $wm_default::_frame_widgets { |
|
option add $pref.background $::wm_default::background $pri |
|
} |
|
option add *Background $::wm_default::background $pri |
|
|
|
derivefonts |
|
|
|
|
|
foreach pref [list *Font *font] { |
|
option add $pref $system_font $pri |
|
} |
|
|
|
|
|
foreach pref $wm_default::_menu_font_widgets { |
|
option add $pref.font $menu_font $pri |
|
} |
|
foreach pref $wm_default::_button_font_widgets { |
|
option add $pref.font $system_font $pri |
|
option add $pref.disabledForeground $::wm_default::disabledforeground $pri |
|
option add $pref.background $::wm_default::background $pri |
|
option add $pref.foreground $::wm_default::foreground $pri |
|
option add $pref.highlightBackground $::wm_default::highlightbackground $pri |
|
} |
|
foreach pref $wm_default::_system_font_widgets { |
|
option add $pref.font $system_font $pri |
|
option add $pref.background $::wm_default::background $pri |
|
option add $pref.foreground $::wm_default::foreground $pri |
|
option add $pref.highlightBackground $::wm_default::highlightbackground $pri |
|
} |
|
|
|
foreach pref $wm_default::_text_type_widgets { |
|
option add $pref.font $text_font $pri |
|
option add $pref.relief sunken $pri |
|
option add $pref.borderWidth $::wm_default::borderwidth $pri |
|
|
|
option add $pref.background $::wm_default::textbackground $pri |
|
option add $pref.foreground $::wm_default::textforeground $pri |
|
option add $pref.selectBackground $::wm_default::selectbackground $pri |
|
option add $pref.selectForeground $::wm_default::selectforeground $pri |
|
option add $pref.highlightThickness $::wm_default::highlightthickness $pri |
|
option add $pref.disabledBackground $::wm_default::disabledtextbackground $pri |
|
} |
|
foreach pref $wm_default::_insert_type_widgets { |
|
option add $pref.relief sunken $pri |
|
option add $pref.insertBackground $::wm_default::textforeground $pri |
|
option add $pref.highlightThickness $::wm_default::highlightthickness $pri |
|
} |
|
|
|
|
|
|
|
foreach pref $wm_default::_select_type_widgets { |
|
option add $pref.selectColor $::wm_default::selectcolor $pri |
|
option add $pref.background $::wm_default::background $pri |
|
option add $pref.foreground $::wm_default::foreground $pri |
|
|
|
option add $pref.activeBackground $::wm_default::activebackground $pri |
|
option add $pref.activeForeground $::wm_default::activeforeground $pri |
|
} |
|
|
|
|
|
foreach pref $wm_default::_menu_font_widgets { |
|
option add $pref.activeBackground $::wm_default::activebackground $pri |
|
option add $pref.activeForeground $::wm_default::activeforeground $pri |
|
option add $pref.background $::wm_default::background $pri |
|
option add $pref.foreground $::wm_default::foreground $pri |
|
option add $pref.disabledForeground $::wm_default::disabledforeground $pri |
|
option add $pref.highlightThickness $::wm_default::highlightthickness $pri |
|
} |
|
|
|
switch -exact -- $tcl_platform(platform) windows { |
|
|
|
set _menu_select_color $::wm_default::foreground |
|
} default { |
|
|
|
set _menu_select_color $::wm_default::selectcolor |
|
} |
|
option add *Menu.selectColor $_menu_select_color $pri |
|
if {$_usetix} { |
|
option add *TixMenu.selectColor $_menu_select_color $pri |
|
option add *TixBalloon*message.background $::wm_default::textbackground $pri |
|
} |
|
|
|
|
|
foreach pref $wm_default::_button_font_widgets { |
|
option add $pref.activeBackground $::wm_default::activebackground $pri |
|
option add $pref.activeForeground $::wm_default::activeforeground $pri |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach pref $wm_default::_active_borderwidth_widgets { |
|
option add $pref.activeBorderWidth $::wm_default::borderwidth $pri |
|
option add $pref.borderWidth $::wm_default::borderwidth $pri |
|
} |
|
foreach pref $wm_default::_nonzero_borderwidth_widgets { |
|
option add $pref.borderWidth $::wm_default::borderwidth $pri |
|
} |
|
foreach pref $wm_default::_null_borderwidth_widgets { |
|
option add $pref.borderWidth 0 $pri |
|
} |
|
|
|
if {$_usetix} { |
|
if {$tix_version < "8.2"} { |
|
option add *TixNoteBook.nbframe.inactiveBackground \ |
|
$::wm_default::disabledbackground $pri |
|
option add *TixNoteBook*nbframe.inactiveBackground \ |
|
$::wm_default::disabledbackground $pri |
|
} else { |
|
option add *TixNoteBook.nbframe.inactiveBackground \ |
|
$::wm_default::background $pri |
|
option add *TixNoteBook*nbframe.inactiveBackground \ |
|
$::wm_default::background $pri |
|
} |
|
} |
|
|
|
foreach pref $wm_default::_scrollbar_widgets { |
|
option add $pref.background $::wm_default::background $pri |
|
option add $pref.foreground $::wm_default::foreground $pri |
|
|
|
option add $pref.troughColor $::wm_default::scrollbars $pri |
|
option add $pref.borderWidth $::wm_default::borderwidth $pri |
|
} |
|
option add *Scale.borderWidth $::wm_default::borderwidth $pri |
|
option add *Scale.troughColor $::wm_default::scrollbars $pri |
|
|
|
option add *highlightColor $::wm_default::highlightcolor $pri |
|
option add *highlightBackground $::wm_default::highlightbackground $pri |
|
option add *HighlightBackground $::wm_default::highlightbackground $pri |
|
|
|
|
|
set _focus_widgets [concat \ |
|
$::wm_default::_frame_widgets \ |
|
$::wm_default::_menu_font_widgets \ |
|
$::wm_default::_text_type_widgets \ |
|
$::wm_default::_insert_type_widgets \ |
|
$::wm_default::_select_type_widgets \ |
|
$::wm_default::_active_borderwidth_widgets \ |
|
$::wm_default::_nonzero_borderwidth_widgets \ |
|
$::wm_default::_null_borderwidth_widgets ] |
|
|
|
if {$_usetix} { |
|
set _tix_hl_widgets [list *TixBitmapButton*label \ |
|
*TixComboBox*Entry \ |
|
*TixControl*entry \ |
|
*TixDirList*hlist \ |
|
*TixDirTree*hlist \ |
|
*TixFileEntry*Entry \ |
|
*TixFileEntry*entry \ |
|
*TixMultiList*Listbox \ |
|
*TixNoteBook.nbframe \ |
|
*TixOptionMenu*menubutton \ |
|
*TixScrolledHList*hlist \ |
|
*TixScrolledListBox*listbox\ |
|
*TixScrolledTList*tlist \ |
|
*TixTree*hlist] |
|
eval lappend _focus_widgets $_tix_hl_widgets |
|
} |
|
|
|
foreach pref [lsort -uniq $_focus_widgets] { |
|
option add $pref.highlightBackground $::wm_default::highlightbackground $pri |
|
} |
|
|
|
|
|
|
|
|
|
if {$::wm_default::focusmodel eq "followsmouse"} { |
|
tk_focusFollowsMouse |
|
} |
|
|
|
if {$_usetix} { |
|
tixSetDefaultOptions |
|
|
|
if {[lsearch -exact {windows kde1 kde2} $::wm_default::wm] > -1} { |
|
|
|
if {![llength [info procs ::tixButtonBox:add]]} { |
|
uplevel #0 auto_load tixButtonBox |
|
} |
|
proc ::tixButtonBox:add {w name args} { |
|
upvar #0 $w data |
|
eval [linsert $args 0 button $w.$name] |
|
if {![info exists data(-padx)]} {set data(-padx) 5} |
|
if {![info exists data(-pady)]} {set data(-pady) 10} |
|
if {$data(-orientation) eq "horizontal"} { |
|
|
|
if {[info commands $w.pad] == ""} { |
|
label $w.pad |
|
pack $w.pad -side left -expand yes -fill both |
|
} |
|
pack $w.$name -side left \ |
|
-expand no \ |
|
-padx $data(-padx) -pady $data(-pady) |
|
} else { |
|
pack $w.$name -side top \ |
|
-expand no -fill x \ |
|
-padx $data(-padx) -pady $data(-pady) |
|
} |
|
lappend data(g:buttons) $name |
|
set data(w:$name) $w.$name |
|
return $w.$name |
|
} |
|
option add *TixButtonBox.relief flat $::wm_default::priority |
|
option add *TixButtonBox.borderwidth 2 $::wm_default::priority |
|
} |
|
} |
|
return [getoptions] |
|
} |
|
|
|
namespace export setup addoptions getoptions parray |
|
} |
|
|
|
package provide wm_default 1.0 |
|
|
|
|
|
proc tixSetDefaultOptions {} { |
|
|
|
global tcl_platform env tixOption |
|
|
|
|
|
|
|
|
|
|
|
foreach variable { |
|
wm |
|
linkcolor |
|
vlinkcolor |
|
alinkcolor |
|
background |
|
foreground |
|
disabledforeground |
|
disabledbackground |
|
textfamily |
|
systemfamily |
|
menufamily |
|
fixedfamily |
|
fontsize |
|
textbackground |
|
textforeground |
|
disabledtextbackground |
|
selectbackground |
|
selectforeground |
|
selectcolor |
|
highlightcolor |
|
highlightbackground |
|
scrollbars |
|
borderwidth |
|
priority |
|
menubackground |
|
menuforeground |
|
activebackground |
|
activeforeground |
|
system_font |
|
menu_font |
|
fixed_font |
|
text_font |
|
} { |
|
set tixOption($variable) [set ::wm_default::$variable] |
|
} |
|
|
|
} |
|
|