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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
style "checkradiobutton" {
engine "pixmap" {
image
{
function = CHECK
recolorable = TRUE
shadow = OUT
overlay_file = "mdk-check_off.png"
overlay_stretch = FALSE
}
image
{
function = CHECK
recolorable = TRUE
shadow = IN
overlay_file = "mdk-check_on.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
recolorable = TRUE
shadow = OUT
overlay_file = "mdk-toggle_off.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
recolorable = TRUE
shadow = IN
overlay_file = "mdk-toggle_on.png"
overlay_stretch = FALSE
}
image
{
function = FOCUS
recolorable = TRUE
overlay_file = "focus.png"
overlay_border = { 4, 4, 4, 4 }
overlay_stretch = TRUE
}
}
}
style "window"
{
engine "pixmap" {
image
{
function = FLAT_BOX
recolorable = TRUE
file = "mdk-bg.png"
stretch = FALSE
}
}
}
style "any"
{
base[NORMAL] = { 0.2, 0.2, 0.4 }
bg[NORMAL] = { 0.2, 0.2, 0.4 }
bg[INSENSITIVE] = { 0.6, 0.6, 0.8 }
base[INSENSITIVE]={ 0.6, 0.6, 0.8 }
bg[ACTIVE] = { 0.6, 0.6, 0.8 }
bg[PRELIGHT] = { 0.4, 0.4, 0.6 }
text[NORMAL] = { 1.0, 1.0, 1.0 }
fg[NORMAL] = { 1.0, 1.0, 1.0 }
fg[INSENSITIVE] = { 1.0, 1.0, 1.0 }
text[INSENSITIVE]={ 1.0, 1.0, 1.0 }
fg[ACTIVE] = { 1.0, 1.0, 1.0 }
fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
bg[SELECTED] = { 1.0, 1.0, 1.0 }
fg[SELECTED] = { 0.2, 0.2, 0.4 }
}
style "entry"
{
base[NORMAL] = { 0.4, 0.4, 0.6 }
base[ACTIVE] = { 0.4, 0.4, 0.6 }
fg[NORMAL] = { 1.0, 1.0, 1.0 }
}
style "notebook"
{
bg[NORMAL] = { 0, 0, 1.0 }
bg[ACTIVE] = { 0, 0, 0.67 }
fg[NORMAL] = { 1.0, 1.0, 1.0 }
}
style "button" = "any"
{
bg[NORMAL] = { 0.4, 0.4, 0.6 }
fg[NORMAL] = { 1.0, 1.0, 1.0 }
bg[PRELIGHT] = { 0.36, 0.36, 0.56 }
fg[PRELIGHT] = { 0.8, 0.8, 1.0 }
}
style "background"
{
bg[NORMAL] = { 0.6, 0.6, 0.8 }
bg[PRELIGHT] = { 0.8, 0.8, 0.99 }
}
style "steps"
{
bg[NORMAL] = { 0.4, 0.4, 0.6 }
fg[NORMAL] = { 1.0, 1.0, 1.0 }
}
widget_class "GtkWindow" style "window"
widget_class "*" style "any"
widget_class "*GtkSpin*" style "entry"
widget_class "*GtkEntry*" style "entry"
widget_class "*Gtk*List*" style "entry"
widget_class "*GtkCTree*" style "entry"
widget_class "*GtkNotebook*" style "notebook"
widget "*GtkButton*" style "button"
widget "*background*" style "background"
widget "*Steps*" style "steps"
class "GtkRadioButton" style "checkradiobutton"
class "GtkCheckButton" style "checkradiobutton"
|