I can't seem to change the style of the GtkButton
object using resource files. I call gtk_rc_parse("res.rc");, and "res.rc"
is a file in the same directory as my app containing the following:
style "button"
{ bg[PRELIGHT] = (1.0, 0.25, 0) fg[NORMAL] = (1.0, 0, 0) } class "GtkButton" style "button" I was, however, able to change the style from within the code using
GtkRcStyle stuff. I'm also using Win32.
|