diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-10-12 18:22:42 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-10-12 18:22:42 +0000 |
commit | 583a618e46f4dfd8d987bf3158a46b0362505889 (patch) | |
tree | 42aae6cb36e4f98e62a73e49d6fc7cbbf77d16e4 /man/xresources.texi | |
parent | 8937a0e13a51d8ec779eacabb524f6bffc0c7523 (diff) | |
download | emacs-583a618e46f4dfd8d987bf3158a46b0362505889.tar.gz |
* xresources.texi (GTK resources): Added a note that some themes
disallow customizations. Added scroll theme example.
Diffstat (limited to 'man/xresources.texi')
-rw-r--r-- | man/xresources.texi | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/man/xresources.texi b/man/xresources.texi index 4c4e840e776..3141aee2d34 100644 --- a/man/xresources.texi +++ b/man/xresources.texi @@ -559,7 +559,14 @@ the standard GTK @file{~/.gtkrc-2.0} file or with the Emacs specific customizing specific GTK widget features. To customize Emacs font, background, faces etc., use the normal X resources, see @ref{Resources}. -In these files you first defines a style and then how to apply that style + NOTE: Some themes does not allow cutomizations and the mechanisms +described here may not work for those themes. The theme may ignore the +attempt to customization, or things are just not drawn correctly. +Also, it is recommended that you use @file{~/.emacs.d/gtkrc} for +customizations, @file{~/.gtkrc-2.0} seems to be ignored when running +GConf with Gnome. + + In these files you first defines a style and then how to apply that style to widgets (@pxref{GTK widget names}). Here is an example of how to change the font for Emacs menus: @@ -574,6 +581,21 @@ widget "*emacs-menuitem*" style "menufont" @end smallexample + Here is a more elaborate example, showing how to change the parts of +the scroll bar: +@smallexample +style "scroll" +@{ + fg[NORMAL] = "red"@ @ @ @ @ # The arrow color. + bg[NORMAL] = "yellow"@ @ # The thumb and background around the arrow. + bg[ACTIVE] = "blue"@ @ @ @ # The trough color. + bg[PRELIGHT] = "white"@ # The thumb color when the mouse is over it. +@} + +widget "*verticalScrollBar*" style "scroll" + +@end smallexample + There are some things you can set without using any style or widget name, which affect GTK as a whole. Most of these are poorly documented, but can be found in the `Properties' section of the documentation page for |