Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

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

File size: 1.6 KB
RevLine 
[4031]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"}"
[2018]10
[4031]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"}"
[2018]19
[4031]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"}"
[2018]33
[4031]34"style'main_button' = 'button'"
35"{"
36"font = '-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*'"
37"bg[PRELIGHT] = { 0, 0.75, 0 }"
38"}"
[2018]39
[4031]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"}"
[2018]46
[4031]47"style'text'"
48"{"
49"fg[NORMAL] = { 0, 1.0, 0 }"
50"}"
[2018]51
[4031]52"style'ruler'"
53"{"
54"font = '-adobe-helvetica-medium-r-normal--*-20-*-*-*-*-*-*'"
55"}"
[2018]56
[4031]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'"
[2018]70
[4031]71"widget'main window.*GtkButton*' style 'main_button'"
[2018]72
73
[4031]74);
Note: See TracBrowser for help on using the repository browser.