Hola Rafa,
What's the status for the gtk printing system on gtk 2.10.x ? Are you
planning do something ?
Also, I found a bug in gtk 2.8.20 & 2.10.7 related to the
gtk_editable_insert_text and utf, it's looks like that we have a bug
under windows. Did you get the same issue ?
Just get the entry.c sample in gtk\examples\entry\entry.c and change
the lines where we have the gtk_editable_insert:
gchar *szText;
...
szText = g_locale_to_utf8( "ÁÉÍÓÚ", 5, NULL, NULL, NULL);
//szText = g_convert("ÁÉÍÓÚ", 5, "UTF-8", "ISO-8859-1", NULL, NULL, NULL);
gtk_editable_insert_text (GTK_EDITABLE (entry), szText, -1, &tmp_pos);
g_free(szText);
About the gtk_entry_set_text, it works fine.
Saludos
Rodrigo Moreno