summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2008-05-15 23:41:08 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2008-05-15 23:41:08 (GMT)
commit2cef89254b6055b551abf622fe895276984a59ec (patch)
tree0131a54b91f24bc94ea97a7228b0e501cd1968bf /library/ttk
parenta4067b2f9b9e15de47baf424516fdc4bedd120e1 (diff)
downloadtk-2cef89254b6055b551abf622fe895276984a59ec.zip
tk-2cef89254b6055b551abf622fe895276984a59ec.tar.gz
tk-2cef89254b6055b551abf622fe895276984a59ec.tar.bz2
Add correct border to combobox on Vista
Diffstat (limited to 'library/ttk')
-rw-r--r--library/ttk/xpTheme.tcl25
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
+ }
+ }
+ }
+ }
+
+ }
}
}