# blue.tcl - Copyright (C) 2004 Pat Thoyts # # blue.tcl,v 1.30 2005/12/13 23:04:25 patthoyts Exp # # namespace eval ttk::theme::blue { package provide ttk::theme::blue 0.7 proc LoadImages {imgdir {patterns {*.gif}}} { foreach pattern $patterns { foreach file [glob -directory $imgdir $pattern] { set img [file tail [file rootname $file]] if {![info exists images($img)]} { set images($img) [image create photo -file $file] } } } return [array get images] } variable I array set I [LoadImages \ [file join [file dirname [info script]] blue] *.gif] variable colors array set colors { -frame "#6699cc" -lighter "#bcd2e8" -window "#e6f3ff" -selectbg "#ffff33" -selectfg "#000000" -disabledfg "#666666" } ttk::style theme create blue -settings { ttk::style configure . \ -borderwidth 1 \ -background $colors(-frame) \ -fieldbackground $colors(-window) \ -troughcolor $colors(-lighter) \ -selectbackground $colors(-selectbg) \ -selectforeground $colors(-selectfg) \ ; ttk::style map . -foreground [list disabled $colors(-disabledfg)] ## Buttons. # ttk::style configure TButton -padding "10 0" ttk::style layout TButton { Button.button -children { Button.focus -children { Button.padding -children { Button.label } } } } ttk::style element create button image \ [list $I(button-n) pressed $I(button-p) active $I(button-h)] \ -border 4 -sticky ew ttk::style element create Checkbutton.indicator image \ [list $I(check-nu) \ {!disabled active selected} $I(check-hc) \ {!disabled active} $I(check-hu) \ {!disabled selected} $I(check-nc) \ ] \ -width 24 -sticky w ttk::style element create Radiobutton.indicator image \ [list $I(radio-nu) \ {!disabled active selected} $I(radio-hc) \ {!disabled active} $I(radio-hu) \ selected $I(radio-nc) \ ] \ -width 24 -sticky w ttk::style configure TMenubutton -relief raised -padding {10 2} ttk::style configure TRadiobutton -padding 1 ttk::style configure TCheckbutton -padding 1 ## Toolbar buttons. # ttk::style configure Toolbutton \ -width 0 -relief flat -borderwidth 2 -padding 4 \ -background $colors(-frame) -foreground #000000 ; ttk::style map Toolbutton -background [list active $colors(-selectbg)] ttk::style map Toolbutton -foreground [list active $colors(-selectfg)] ttk::style map Toolbutton -relief { disabled flat selected sunken pressed sunken active raised } ## Entry widgets. # ttk::style configure TEntry \ -selectborderwidth 1 -padding 2 -insertwidth 2 -font TkTextFont ttk::style configure TCombobox \ -selectborderwidth 1 -padding 2 -insertwidth 2 -font TkTextFont ## Notebooks. # ttk::style configure TNotebook.Tab -padding {4 2 4 2} ttk::style map TNotebook.Tab \ -background \ [list selected $colors(-frame) active $colors(-lighter)] \ -padding [list selected {4 4 4 2}] ## Labelframes. # ttk::style configure TLabelframe -borderwidth 2 -relief groove ## Scrollbars. # ttk::style layout Vertical.TScrollbar { Scrollbar.trough -children { Scrollbar.uparrow -side top Scrollbar.downarrow -side bottom Scrollbar.uparrow -side bottom Vertical.Scrollbar.thumb -side top -expand true -sticky ns } } ttk::style layout Horizontal.TScrollbar { Scrollbar.trough -children { Scrollbar.leftarrow -side left Scrollbar.rightarrow -side right Scrollbar.leftarrow -side right Horizontal.Scrollbar.thumb -side left -expand true -sticky we } } ttk::style element create Horizontal.Scrollbar.thumb image \ [list $I(sb-thumb) {pressed !disabled} $I(sb-thumb-p)] -border 3 ttk::style element create Vertical.Scrollbar.thumb image \ [list $I(sb-vthumb) {pressed !disabled} $I(sb-vthumb-p)] -border 3 foreach dir {up down left right} { ttk::style element create ${dir}arrow image \ [list $I(arrow${dir}) \ disabled $I(arrow${dir}) \ pressed $I(arrow${dir}-p) \ active $I(arrow${dir}-h) \ ] \ -border 1 -sticky {} } ## Scales. # ttk::style element create Scale.slider \ image [list $I(slider) {pressed !disabled} $I(slider-p)] ttk::style element create Vertical.Scale.slider \ image [list $I(vslider) {pressed !disabled} $I(vslider-p)] ttk::style element create Horizontal.Progress.bar \ image [list $I(sb-thumb)] -border 2 ttk::style element create Vertical.Progress.bar \ image [list $I(sb-vthumb)] -border 2 } }