1 2 3 4 5 6
| tag_operation = gtk_text_buffer_create_tag(texte1, "tag_operation", "foreground", "red", NULL);
tag_nombre = gtk_text_buffer_create_tag(texte1, "tag_nombre", "foreground", "blue", NULL);
style=pango_font_description_new();
pango_font_description_set_style (style,PANGO_STYLE_ITALIC);
pango_font_description_set_weight (style,PANGO_WEIGHT_ULTRABOLD);
tag_presentation = gtk_text_buffer_create_tag(texte1,"tag_presentation","font-desc",style,"tag_presentation", "background","black", "foreground", "white","underline",PANGO_UNDERLINE_SINGLE, NULL); |
Partager