gtk_container_add(GTK_CONTAINER(window), vbox);
font = pango_font_description_new();
+ pango_font_description_set_family(font, "sans-serif");
pango_font_description_set_size(font, 20*PANGO_SCALE);
layout= gtk_widget_create_pango_layout(draw,get_text());
window.add(vbox)
font = pango.FontDescription()
+font.set_family("sans-serif")
font.set_size(60*pango.SCALE)
layout = draw.create_pango_layout(get_text())
layout.set_font_description(font)