1997-11-24 22:37:52 +00:00
|
|
|
# pixmap_path "<dir 1>:<dir 2>:<dir 3>:..."
|
|
|
|
#
|
1998-05-01 04:23:59 +00:00
|
|
|
# include "rc-file"
|
|
|
|
#
|
1997-11-24 22:37:52 +00:00
|
|
|
# style <name> [= <name>]
|
|
|
|
# {
|
|
|
|
# <option>
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# widget <widget_set> style <style_name>
|
|
|
|
# widget_class <widget_class_set> style <style_name>
|
|
|
|
|
1998-11-13 21:28:36 +00:00
|
|
|
#include "/opt/themes/share/themes/W/gtk/gtkrc"
|
1998-11-06 22:05:02 +00:00
|
|
|
#include "/home/otaylor/.themes/Ignorant/gtk/gtkrc"
|
1998-05-01 04:23:59 +00:00
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
style "defaultfont" {
|
1998-11-13 21:28:36 +00:00
|
|
|
font = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*,*"
|
1998-03-28 00:10:49 +00:00
|
|
|
# fontset = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*,*"
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
class "GtkWidget" style "defaultfont"
|
1998-07-22 22:29:10 +00:00
|
|
|
|
|
|
|
binding "test1"
|
|
|
|
{
|
|
|
|
bind "<ctrl>1" {
|
|
|
|
"debug-msg" ("hallo and")
|
|
|
|
"debug-msg" ("huhu")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
binding "test2"
|
|
|
|
{
|
|
|
|
bind "<ctrl>1" {
|
|
|
|
"debug-msg" ("jup!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# possible priorities are (in ascending order):
|
|
|
|
# lowest
|
|
|
|
# gtk (used by gtk for internal class bindings)
|
|
|
|
# application (for hard coded bindings on application basis)
|
1998-11-06 22:05:02 +00:00
|
|
|
# rc (used implicitly by rc files)
|
1998-07-22 22:29:10 +00:00
|
|
|
# highest
|
|
|
|
class "GtkButton" binding "test1" # implicit : rc
|
|
|
|
class "GtkButton" binding : highest "test2" # override "rc" priority
|
|
|
|
|
1998-07-27 01:50:16 +00:00
|
|
|
binding "clist-test"
|
|
|
|
{
|
|
|
|
bind "j" {
|
|
|
|
"scroll-vertical" (step-backward, 0.0)
|
|
|
|
}
|
|
|
|
bind "k" {
|
|
|
|
"scroll-vertical" (step-forward, 0.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class "GtkCList" binding "clist-test"
|