summaryrefslogtreecommitdiff
path: root/gtk/testgtkrc
blob: 7f5646cc37b7e6ea74924db269df7263ea46073d (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
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
# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
#
# include "rc-file"
#
# style <name> [= <name>]
# {
#   <option>
# }
#
# widget <widget_set> style <style_name>
# widget_class <widget_class_set> style <style_name>

# testgtkrc2 introduces the green color in the button list
include "testgtkrc2"

pixmap_path "."

style "default"
{
#  fontset = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*,*"
  font = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*"
}

style "window"
{
#  bg_pixmap[NORMAL] = "warning.xpm"
}

style "scale"
{
  fg[NORMAL] = { 1.0, 0, 0 }
  bg_pixmap[NORMAL] = "<parent>"
}

style "button"
{
#  fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
#  bg[PRELIGHT] = { 0, 0, 0.75 }
}

# we set all the buttons in the main window to be blue by default
style 'main_buttons' = 'button'
{
  font = "-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*"
  bg[PRELIGHT] = { 0, 0, 0.75 }
}

style "toggle_button" = "button"
{
  fg[NORMAL] = { 1.0, 0, 0 }
  fg[ACTIVE] = { 1.0, 0, 0 }
  bg_pixmap[NORMAL] = "<parent>"
}

style "text"
{
  bg_pixmap[NORMAL] = "marble.xpm"
  text[NORMAL] = { 0.2, 0.2, 1.0 }
  fg[NORMAL] = { 1.0, 1.0, 1.0 }
  base[NORMAL] = { 0.0, 0.0, 0.0 }
}

style "slider"
{
  fg[NORMAL] = { 1.0, 1.0, 1.0 }
  bg[NORMAL] = { 0.0, 0.0, 1.0 }
  bg[ACTIVE] = { 0.0 ,0.0, 0.5 }
  bg[PRELIGHT] = { 0.75 ,0.75, 1.0 }
}

style "ruler"
{
  font = '-adobe-helvetica-medium-r-normal--*-80-*-*-*-*-*-*'
}

style "curve"
{
  fg[NORMAL] = { 58000, 0, 0 }			# red
}

widget_class "GtkWindow" style "window"
widget_class "GtkDialog" style "window"
widget_class "GtkFileSelection" style "window"
widget_class "*Gtk*Scale" style "scale"
widget_class "*GtkCheckButton*" style "toggle_button"
widget_class "*GtkRadioButton*" style "toggle_button"
widget_class "*GtkButton*" style "button"
widget_class "*Ruler" style "ruler"
widget_class "*GtkText" style "text"
widget_class "*" style "default"
widget "main window.*GtkButton*" style "main_buttons"
widget "*GtkCurve" style "curve"