forked from AuroraMiddleware/gtk
ac68581f96
Sun Mar 18 01:15:30 2001 Tim Janik <timj@gtk.org> * gtk/gtkspinbutton.[hc]: added rc-style argument GtkSpinButton::shadow_type. removed spin_button->shadow_type, gtk_spin_button_set_shadow_type() and ARG_SHADOW_TYPE as it doesn' make much sense to try to override rc-style settings. * gtk/gtkfixed.c: removed gtk_fixed_paint() (was unused). * gtk/gtkwidget.c: quark cleanups. * gtk/gtkrc.[hc]: added gtk_rc_scanner_new() to create an rc-file scanner with appropriate configuration, renamed GtkRcStyleClass.clone to create_rc_style() (we don't do cloning in standard OO sense). added per rc style properties. * gtk/gtkstyle.[hc]: added code to retrive pspec conformant rc-style property values and for caching those. some cleanups. * gtk/Makefile.am: -DG_DISABLE_CONST_RETURNS. * gtk/gtksettings.[hc]: new file for global rc-file properties (at least currently, should get extended to support X properties and other communication mechanisms). * gtk/gtkwidget.[hc]: added style property support: (gtk_widget_class_install_style_property_parser): install style property pspec with parser function for rc-file values other than LONG, DOUBLE or STRING. (gtk_widget_class_install_style_property): same as above without parser (parsers are going to be needed quite infrequently). (gtk_widget_style_get_property): retrive style property value. (gtk_widget_style_get_valist): same as above with varargs support, has NOCOPY semantics. (gtk_widget_style_get): wrapper around gtk_widget_style_get_valist().
182 lines
3.6 KiB
Plaintext
182 lines
3.6 KiB
Plaintext
# 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 sets all the buttons in the main window to blue by default
|
|
include "testgtkrc2"
|
|
|
|
#include "/usr/local/share/themes/Pixmap/gtk/gtkrc"
|
|
#include "/usr/local/share/themes/Redmond95/gtk/gtkrc"
|
|
#include "/usr/local/share/themes/Metal/gtk/gtkrc"
|
|
#include "/usr/local/share/themes/Notif/gtk/gtkrc"
|
|
#include "/usr/local/share/themes/Default/gtk/gtkrc"
|
|
|
|
# On Windows, if you have installed gtk-engines, try this for instance:
|
|
#include "\\windows\\gtk\\themes\\Pixmap\\gtk\\gtkrc"
|
|
|
|
double-click_timeout = 42
|
|
bell-duration = 39
|
|
bell_duration = 40
|
|
|
|
pixmap_path "."
|
|
|
|
style "global-style-properties"
|
|
{
|
|
# xthickness = 20
|
|
GtkSpinButton::shadow_type = etched-out
|
|
}
|
|
class "GtkWidget" style "global-style-properties"
|
|
|
|
style "defaultfont"
|
|
{
|
|
font_name = "Sans 12"
|
|
|
|
Gtest::foo = 47
|
|
Gtest::bar = 47
|
|
# GtkScrollbar::spacing = 33
|
|
# GtkButton::color = { 3, 2,45, 6, 6, 4, 23 }
|
|
}
|
|
|
|
style "myicons"
|
|
{
|
|
stock["gtk-dialog-warning"] =
|
|
{
|
|
{ "3DRings.xpm", *, *, *}
|
|
}
|
|
}
|
|
|
|
class "GtkImage" style "myicons"
|
|
|
|
# common default
|
|
class "GtkWidget" style "defaultfont"
|
|
|
|
style "window"
|
|
{
|
|
# bg_pixmap[NORMAL] = "marble.xpm"
|
|
}
|
|
|
|
style "scale"
|
|
{
|
|
fg[NORMAL] = { 1.0, 0, 0 }
|
|
bg_pixmap[NORMAL] = "<parent>"
|
|
}
|
|
|
|
style "button" = "default"
|
|
{
|
|
# fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
|
|
# bg[PRELIGHT] = { 0, 0, 0.75 }
|
|
# bg[PRELIGHT] = { 0.75, 0, 0x00 }
|
|
}
|
|
|
|
style "toggle_button" = "button"
|
|
{
|
|
fg[NORMAL] = { 1.0, 0, 0 }
|
|
fg[ACTIVE] = { 1.0, 0, 0 }
|
|
# bg_pixmap[ACTIVE] = "check-y.xpm"
|
|
# bg_pixmap[NORMAL] = "check-n.xpm"
|
|
}
|
|
|
|
style "text"
|
|
{
|
|
bg_pixmap[NORMAL] = "marble.xpm"
|
|
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 "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_name = 'Sans 8'
|
|
}
|
|
|
|
style "curve"
|
|
{
|
|
fg[NORMAL] = { 58000, 0, 0 } # red
|
|
}
|
|
|
|
style "red-bar"
|
|
{
|
|
bg[PRELIGHT] = { 0.95, .55, 0.55 }
|
|
}
|
|
|
|
# override testgtk2, introduce the green color in the button list
|
|
style 'button_list' = 'button'
|
|
{
|
|
font_name = "Monospace 10"
|
|
bg[PRELIGHT] = { 0, 0.75, 0x00 }
|
|
}
|
|
widget "main window.*GtkScrolledWindow.*GtkButton*" style "button_list"
|
|
|
|
|
|
class "GtkScrollbar" style "red-bar"
|
|
|
|
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 "*GtkCurve" style "curve"
|
|
|
|
binding "test1"
|
|
{
|
|
bind "<ctrl>1" {
|
|
"debug-msg" ("jup!")
|
|
}
|
|
}
|
|
|
|
binding "test2"
|
|
{
|
|
bind "<ctrl>1" {
|
|
"debug-msg" ("hallo and")
|
|
"debug-msg" ("huhu")
|
|
}
|
|
}
|
|
|
|
# possible priorities are (in ascending order):
|
|
# lowest
|
|
# gtk (used by gtk for internal class bindings)
|
|
# application (for hard coded bindings on application basis)
|
|
# rc (used implicitel by rc files)
|
|
# highest
|
|
class "GtkCList" binding "test1" # implicit : rc
|
|
#class "GtkWindow" binding : highest "test2" # override "rc" priority
|
|
|
|
binding "clist-test"
|
|
{
|
|
bind "j" {
|
|
"scroll-vertical" (step-backward, 0.0)
|
|
}
|
|
bind "k" {
|
|
"scroll-vertical" (step-forward, 0.0)
|
|
}
|
|
}
|
|
|
|
class "GtkCList" binding "clist-test"
|
|
|
|
style "testthickness" {
|
|
xthickness = 15
|
|
ythickness = 15
|
|
}
|
|
|
|
#class "GtkFrame" style "testthickness"
|