1 2 3 4 5 6 7 8 9 10
| GtkWidget *button, *label;
button = gtk_button_new ();
label = gtk_label_new ("Hello");
gtk_container_add (GTK_CONTAINER (button), label);
PangoFontDescription *fd;
fd = pango_font_description_from_string ("Sans 12");
gtk_widget_modify_font (label, fd);
pango_font_description_free (fd); |