mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
d07573c090
Mon Nov 12 23:06:38 2001 Tim Janik <timj@gtk.org> * added gtkaccelmap.sgml. other updates. Mon Nov 12 23:08:37 2001 Tim Janik <timj@gtk.org> * gtk/maketypes.awk: fix type utils generation on unix. * gtk/gtkaccelmap.[hc]: new files, implementing a global accelerator registry. * gtk/gtkaccelgroup.[hc]: major API/implementation revamp: removed GTK_ACCEL_SIGNAL_VISIBLE, gtk_accel_group_get_default, gtk_accel_group_get_entry, gtk_accel_group_(un)lock_entry, gtk_accel_group_add/remove, gtk_accel_group_handle_add/remove, gtk_accel_group_create_add/remove, gtk_accel_group_entries_from_object. introduced ::accel_changed signal for change notification, and gtk_accel_group_connect/disconnect to connect closures to accel groups. made gtk_accel_group_attach/detach and gtk_accel_group_activate private functions. deprecated gtk_accel_group_ref/unref. * gtk/gtkaccellabel.[hc]: changes to make accellabels pay attention to accel group changed notification and basically operate on closures. removed gtk_accel_label_get_accel_object and gtk_accel_label_set_accel_object. introduced gtk_accel_label_set_accel_closure, and for convenience, gtk_accel_label_set_accel_widget. * gtk/gtkitemfactory.[hc]: removed accelerator propagation code which mostly moved into gtkaccelmap.[hc]. removed gtk_item_factory_parse_rc*, gtk_item_factory_dump_* and gtk_item_factory_print_func. * gtk/gtkmain.c: call _gtk_accel_map_init(). * gtk/gtkmenuitem.[hc]: introduced gtk_menu_item_set_accel_path(), that associates an accelerator path with menu items, through which persistent accelerator settings on menu items are enabled. * gtk/gtkmenu.[hc]: added gtk_menu_set_accel_path() so accelerator paths of menu item can be default constructed to allow installation of accelerators on menu items that don't come with an accelerator binding by default. * gtk/gtksettings.c: fix STRING type rc settings by special casing them appropriately in the parser. * gtk/gtksignal.[hc]: allow a class function offset of 0 for gtk_signal_newv(). * gtk/gtkwidget.[hc]: accelerator API revamp. removed ::accelerator_add/remove signals, gtk_widget_accelerator_signal, gtk_widget_accelerators_locked, gtk_widget_remove_accelerators and gtk_widget_(un)lock_accelerators. accelerators maintained through gtk_widget_add/remove_accelerator() are not runtime changable now, the correct sequence to setup a widget for runtime changable accelerators is now: gtk_accel_map_add_entry(accel_path, key, mods); _gtk_widget_set_accel_path(widget, accel_path, accel_group); * gtk/gtkwindow.[hc]: accelerator changes, proxy and coalesce accel group changes (as well as mnemonic changes) through the new signal ::accels_changed. Sat Nov 10 12:08:56 2001 Tim Janik <timj@gtk.org> * gtk/gtksettings.c (_gtk_settings_parse_convert): properly handle GString->string conversions.
191 lines
4.0 KiB
Plaintext
191 lines
4.0 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
|
|
|
|
gtk-cursor-blink-time = 200
|
|
# gtk-menu-bar-accel = F10
|
|
|
|
style "global-style-properties"
|
|
{
|
|
# xthickness = 20
|
|
GtkButton::child_displacement_x = 1
|
|
GtkButton::child_displacement_y = 1
|
|
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"
|