diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2008-05-15 23:41:08 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2008-05-15 23:41:08 (GMT) |
commit | 2cef89254b6055b551abf622fe895276984a59ec (patch) | |
tree | 0131a54b91f24bc94ea97a7228b0e501cd1968bf /library | |
parent | a4067b2f9b9e15de47baf424516fdc4bedd120e1 (diff) | |
download | tk-2cef89254b6055b551abf622fe895276984a59ec.zip tk-2cef89254b6055b551abf622fe895276984a59ec.tar.gz tk-2cef89254b6055b551abf622fe895276984a59ec.tar.bz2 |
Add correct border to combobox on Vista
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/xpTheme.tcl | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/library/ttk/xpTheme.tcl b/library/ttk/xpTheme.tcl index a82315b..d85d415 100644 --- a/library/ttk/xpTheme.tcl +++ b/library/ttk/xpTheme.tcl @@ -1,5 +1,5 @@ # -# $Id: xpTheme.tcl,v 1.7 2008/04/03 11:52:42 patthoyts Exp $ +# $Id: xpTheme.tcl,v 1.8 2008/05/15 23:41:08 patthoyts Exp $ # # Settings for 'xpnative' theme # @@ -60,5 +60,28 @@ namespace eval ttk::theme::xpnative { ; ttk::style configure Toolbutton -padding {4 4} + + # Vista requires some style modifications. There are some + # additional or different elements in use. + if {[tk windowingsystem] eq "win32" + && [info exists tcl_platform(osVersion)] + && $tcl_platform(osVersion) >= 6.0} { + + ttk::style element create Combobox.field vsapi \ + COMBOBOX 2 {{} 1} + ttk::style element create Combobox.border vsapi \ + COMBOBOX 4 {disabled 4 focus 3 active 2 {} 1} + ttk::style layout TCombobox { + Combobox.border -sticky nswe -border 0 -children { + Combobox.downarrow -side right -sticky ns + Combobox.padding -expand 1 -sticky nswe -children { + Combobox.focus -expand 1 -sticky nswe -children { + Combobox.textarea -sticky nswe + } + } + } + } + + } } } |