Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/gui/gui/rc @ 4031

Last change on this file since 4031 was 4031, checked in by bensch, 19 years ago

orxonox/trunk: rc now also part of gui-code

File size: 1.6 KB
Line 
1static const gchar* rc_string =
2(       
3"style'window'"
4"{"                     
5"bg[NORMAL] = { 0, 0, 0 }"
6"fg[NORMAL] = { 0, 1.0, 0 }"
7"base[NORMAL] = { 0, 0, 0 }"
8"base[INSENSITIVE] = { 0, 0, 0 }"
9"}"
10
11"style'scale'"
12"{"
13"fg[NORMAL] = { 0, 1.0, 0 }"
14"bg[NORMAL] = { 0, 1.0, 0 }"
15"bg[INSENSITIVE] = { 0, 1.0, 0 }"
16"bg[PRELIGHT] = { 0, 1.0, 0 }"
17"bg[ACTIVE] =   {0.2, 0.2, 0.2 }"
18"}"
19
20"style'button'"
21"{"
22"fg[PRELIGHT] = { 0, 0, 0 }"
23"bg[PRELIGHT] = { 0, 1.0, 0 }"
24"bg[ACTIVE] = { 0, 1.0, 0 }"
25"fg[ACTIVE] = { 0, 1.0, 0 }"
26"bg[NORMAL] = { 0, 0, 0 }"
27"fg[NORMAL] = { 0, 1.0, 0 }"
28"bg[INSENSITIVE] = { 1.0, 0, 1.0 }"
29"fg[INSENSITIVE] = { 1.0, 0, 1.0 }"
30"base[NORMAL] = { 0, 1.0, 0 }"
31"base[PRELIGHT] = { 0, 1.0, 0 }"
32"}"
33
34"style'main_button' = 'button'"
35"{"
36"font = '-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*'"
37"bg[PRELIGHT] = { 0, 0.75, 0 }"
38"}"
39
40"style'toggle_button' = 'button'"
41"{"
42"fg[NORMAL] = { 0, 1.0, 0 }"
43"fg[ACTIVE] = { 0, 1.0, 0 }"
44"text[NORMAL] = { 0, 0, 0}"
45"}"
46
47"style'text'"
48"{"
49"fg[NORMAL] = { 0, 1.0, 0 }"
50"}"
51
52"style'ruler'"
53"{"
54"font = '-adobe-helvetica-medium-r-normal--*-20-*-*-*-*-*-*'"
55"}"
56
57"widget'GtkWindow'              style'window'"
58"widget'GtkFrame'               style'window'"
59"widget'Gtk*EventBox'           style'window'"
60"widget'GtkDialog'              style'window'"
61"widget'GtkFileSelection'       style'window'"
62"widget'*Gtk*Scale'             style'scale'"
63"widget'*GtkCheckButton*'       style'toggle_button'"
64"widget'*Gtk*Menu*'             style'toggle_button'"
65"widget'*GtkRadioButton*'       style'toggle_button'"
66"widget'*GtkButton*'            style'button'"
67"widget'*Ruler'                 style'ruler'"
68"widget'*GtkText'               style'text'"
69"widget'*GtkLabel'              style'text'"
70
71"widget'main window.*GtkButton*' style 'main_button'"
72
73
74);
Note: See TracBrowser for help on using the repository browser.