Re: gtk2 win32 and default font



On Tuesday 01 July 2003 17:25, Rastatter, Ken (OH32) wrote:
> Jiri Pavlovsky wrote on Thu, 26 Jun 2003:
> > I'm using gtk+-2.2.1 on win32. I need to change default font.
>
> After gtk_init() has been called, I do the following to change the
> font:
>
>     gtk_rc_parse_string("gtk-font-name=\"sans 9\"      \n");


Thanks.
I found the following to work too:

---------------------------------
PangoFontDescription *pdf;
GtkStyle *style;
.
.
.

style = gtk_style_new();
pdf = pango_font_description_from_string("Sans 9");
style->font_desc = pdf;
gtk_style_attach(style, GDK_WINDOW(window));

-- 
Jiri Pavlovsky
jpavlovsky mbox dkm cz
tel: (+420) 737196433




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]