summaryrefslogtreecommitdiffstats
path: root/library/ttk/xpTheme.tcl
blob: 7749e565f5f8eb99edd8dcec0efc37f3cb287bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# $Id: xpTheme.tcl,v 1.1 2006/10/31 01:42:27 hobbs Exp $
#
# Ttk widget set: XP Native theme
#
# @@@ todo: spacing and padding needs tweaking

namespace eval ttk {

    style theme settings xpnative {

	style configure . \
	    -background SystemButtonFace \
	    -foreground SystemWindowText \
	    -selectforeground SystemHighlightText \
	    -selectbackground SystemHighlight \
	    -font TkDefaultFont \
	    ;

	style map "." \
	    -foreground [list disabled SystemGrayText] \
	    ;

	style configure TButton -padding {1 1} -width -11
	style configure TRadiobutton -padding 2
	style configure TCheckbutton -padding 2
	style configure TMenubutton -padding {8 4}

	style configure TNotebook -tabmargins {2 2 2 0}
	style map TNotebook.Tab \
	    -expand [list selected {2 2 2 2}]

	style configure TLabelframe -foreground "#0046d5"

	# OR: -padding {3 3 3 6}, which some apps seem to use.
	style configure TEntry -padding {2 2 2 4}
	style map TEntry \
	    -selectbackground [list !focus SystemWindow] \
	    -selectforeground [list !focus SystemWindowText] \
	    ;
	style configure TCombobox -padding 2
	style map TCombobox \
	    -selectbackground [list !focus SystemWindow] \
	    -selectforeground [list !focus SystemWindowText] \
	    -foreground	[list {readonly focus} SystemHighlightText] \
	    -focusfill	[list {readonly focus} SystemHighlight] \
	    ;

	style configure Toolbutton -padding {4 4}
    }
}