mirror of https://github.com/fspc/gbootroot.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
1.9 KiB
101 lines
1.9 KiB
# 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>
|
|
|
|
pixmap_path "."
|
|
|
|
style "default"
|
|
{
|
|
fontset = "-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*,*"
|
|
font = "-adobe-helvetica-medium-r-normal--*-85-*-*-*-*-*-*"
|
|
}
|
|
|
|
style "window"
|
|
{
|
|
font = "-adobe-helvetica-medium-r-normal--*-85-*-*-*-*-*-*"
|
|
}
|
|
|
|
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--*-85-*-*-*-*-*-*"
|
|
# bg[PRELIGHT] = { 0, 0, 0.75 }
|
|
# bg[PRELIGHT] = { 0, 0.75, 0x00 }
|
|
|
|
}
|
|
|
|
style "toggle_button" = "button"
|
|
{
|
|
# fg[NORMAL] = { 1.0, 0, 0 }
|
|
# fg[ACTIVE] = { 1.0, 0, 0 }
|
|
bg_pixmap[NORMAL] = "<parent>"
|
|
}
|
|
|
|
style "text"
|
|
{
|
|
|
|
text[NORMAL] = { 1.0, 1.0, 1.0 }
|
|
fg[NORMAL] = { 1.0, 1.0, 1.0 }
|
|
base[NORMAL] = { 0.0, 0.0, 0.0 }
|
|
}
|
|
|
|
style "ruler"
|
|
{
|
|
font = '-adobe-helvetica-medium-r-normal--*-80-*-*-*-*-*-*'
|
|
}
|
|
|
|
style 'main_entry' = 'entry'
|
|
{
|
|
font = "-adobe-helvetica-medium-r-normal--*-85-*-*-*-*-*-*"
|
|
# bg[PRELIGHT] = { 0, 0, 0.75 }
|
|
# bg[PRELIGHT] = { 0, 0.75, 0x00 }
|
|
|
|
}
|
|
|
|
|
|
widget "main window.*GtkObject*" style "window"
|
|
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 "window"
|
|
widget_class "*" style "default"
|
|
widget "main window.*GtkButton*" style "main_buttons"
|
|
#widget "main window.*GtkEntry*" style "main_entry"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|