gaim/www

Parents 25333ce6251b
Children 57c888595f21
When I asked Sadrul about making the previous control-r patch work with
the gtkrc-2.0, he noted that the current examples didn't work. done this
way, and with the last patch, they do.
--- a/htdocs/gtkrc-2.0 Tue Aug 30 22:11:47 2005 -0400
+++ b/htdocs/gtkrc-2.0 Wed Aug 31 11:10:14 2005 -0400
@@ -56,6 +56,9 @@
# And apply the style to the buddy list:
widget "*gaim_gtkblist_treeview" style "my-narrow-tree"
+#to let you edit your gaim key bindings
+gtk-can-change-accels = 1
+
# In Gaim 2.0.0 and later, you can set custom keybindings in your theme. Here
# is an example to follow
@@ -64,14 +67,14 @@
# ctrl-s sends message
bind "<ctrl>s" { "message_send" () }
# shift-f1 toggles bold
- bind "<shft>F1" { "format_toggle" (1) }
+ bind "<shft>F1" { "format_function_toggle" (1) }
# alt-f2 toggles italic
- bind "<alt>F2" { "format_toggle" (2) }
+ bind "<alt>F2" { "format_function_toggle" (2) }
# Ctrl-alt-shift-f3 toggles underline
- bind "<ctrl><alt><shift>F3" { "format_toggle" (4) }
+ bind "<ctrl><alt><shift>F3" { "format_function_toggle" (4) }
+# Ctrl-f1 resets the formatting
+ bind "<ctrl>F1" { "format_function_clear" () }
}
widget "*gaim_gtkconv_entry" binding "my-bindings"
-#to let you edit your gaim key bindings
-gtk-can-change-accels = 1