giacomo boffi <giacomo.boffi(a)polimi.it> writes:
nbecker(a)fred.net writes:
> OK, I built gtk-xemacs (21.1.11 gtk)
>
> I used to set my colors from xrdb:
>
> emacs*Background: DarkSlateGray
> [...]
> Now these seem to be ignored.
of course they are, you're in gtk-land! now you have those .gtkrc
things, whose syntax is documented in the sources of gtk, as well as
most of gtk itself... ;-)
no, not really, i found somewhere how to modify the gtkrc (i was
unhappy with the gimp), so i think that you too could find something
appropriate --- i'm sorry, but i cannot remember where i found that
info
The best way to do this for XEmacs/GTK is putting this in ~/.gtkrc (or
~/.gtkrc.mine if you are using GNOME).
style "XEmacs"
{
font = "-adobe-courier-medium-r-normal-*-*-180-*-*-m-*-iso8859-1"
bg[ACTIVE] = "#ffffff"
bg[NORMAL] = "#ffffff"
bg[PRELIGHT] = "#ffffff"
bg[SELECTED] = "#ffffff"
bg[INSENSITIVE] = "#ffffff"
fg[ACTIVE] = "#000000"
fg[NORMAL] = "#000000"
fg[PRELIGHT] = "#000000"
fg[SELECTED] = "#000000"
fg[INSENSITIVE] = "#000000"
}
class "GtkXEmacs" style "XEmacs"
This will control the XEmacs drawing frame, but scrollbars/menubars will be
in your normal theme style.
-Bill P.