forked from AuroraMiddleware/gtk
fbfc305174
Tue Jun 26 19:39:03 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwidget.c (gtk_widget_set_style): Allow %NULL for style to mean "revert to default style" * gtk/gtkwidget.[ch] (gtk_widget_set_rc_style, gtk_widget_restore_default_style): Make this functions deprecated aliases for gtk_widget_set_style (widget, NULL). * gtk/gtkwidget.[ch]: Remove: gtk_widget_set_default_style () gtk_widget_push_style () gtk_widget_pop_style () These functions interact are overriden by RC files, and thus virtually useless, and complicated. Fri Jun 22 18:49:48 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkrc.c: Add a GtkRcContext structure to hold most of the previous global variables in gtkrc.c. This is in preparation for multi-head, since each screen can have different GtkSettings and RC information. * gtk/gtkrc.[ch]: * gtk/gtkrc.h (struct _GtkRcStyleClass): Add a GtkSettings parameter to GtkRcStyle::parse. * gdk/x11/gdkevents-x11.c gtk/gtksettings.c gtk/gtkrc.c: Add two new settings gtk-theme-name, gtk-key-theme-name, for RC files that are loaded by name after reading the default RC files. * gtk/gtkrc.c: Allow priorities for styles, as wll as bindings. * gtk/gtkenums.h gtk/gtkrc.c: Add GTK_PATH_PRIO_THEME, and use it by default for RC files loaded via gtk-theme-name, gtk-key-theme-name. * gtk/gtkiconfactory.c (gtk_icon_source_set_filename) gtk/gtkrc.c (gtk_rc_parse_pixmap_path_string) tests/testgtkrc: Require pathnames to be absolute. * gtk/gtkrc.c gtk/gtkiconfactory.c: Look up the full filename for the source when parsing, since the operation of looking up a pixmap from an RC file depends on the parsing context. * gtk/gtkrc.c (gtk_rc_context_reparse_all): Automatically reset RC styles on all widgets when files are reparsed. * tests/testgtk.c (create_rc_file) gtk/gtkwindow.c (gtk_window_read_rcfiles): Simplify, now that gtk_rc_reparse_all() resets styles on all widgets itself. * gtk/gtkmain.c (gtk_get_default_language): Fix broken return value. * gtk/gtksettings.[ch] (gtk_settings_install_property[_ch]): Remove GtkSettings argument. * gtk/gtksettings.[ch] (gtk_settings_get_default): Rename from gtk_settings_get_global(). * gtk/gtkwidget.[ch]: Add a function gtk_widget_Get_settings() to get the appropriate GtkSettings for a widget. (For now, just gets the default GtkSetttings.) * gtk/gtkcolorsel.c gtk/gtkentry.c gtk/gtkmenu.c gtk/gtkmenubar.c gtk/gtktextview.c gtk/gtktoolbar.c: Fixes for GtkSettings changes. * gtk/gtkrc.[ch]: Add gtk_rc_get_style_by_paths() to allow getting a style for a path without actually having a widget. (Allows using a style for a subpart of a widget, for example.) * gtk/gtkrc.[ch]: Add gtk_rc_reparse_all_for_setting() to allow forcing the RC files to be reloaded for just one GtkSettings (not sure how useful this really is.) * gtk/gtkrc.h: Deprecate gtk_rc_add_widget_name/widget_class/class_style
186 lines
3.8 KiB
Plaintext
186 lines
3.8 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
|
|
|
|
style "global-style-properties"
|
|
{
|
|
# xthickness = 20
|
|
GtkSpinButton::shadow_type = etched-out
|
|
GtkEntry::cursor_color = "#ff0000"
|
|
GtkToolbar::space_size = 10
|
|
GtkToolbar::space_style = line
|
|
GtkToolbar::button_relief = none
|
|
GtkButtonBox::child_min_width = 0
|
|
GtkButtonBox::child_min_height = 0
|
|
}
|
|
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"
|