Having downloaded Pango and GLib from the GTK+ Project's Win32 downloads page and having created and configured a Win32 project under Visual Studio 2005 so it points to the proper lib and include directories, how do you initialize Pango for rendering to a Win32 window?

Should the first call be to pango_win32_get_context()? Calling that function causes the application to hang on that call, as the function never returns.

What should be the first call? What other calls are needed to initialize Pango for Win32 and render a simple text string? Are there any examples available online for rendering with Pango under Win32?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Pango is a GObject based library. As such, you need to make sure that the glib dynamic type system is initialized before using any of its functionality. This can be done by calling g_type_init() (either directly or indirectly via something like gtk_init()). Could this be your problem?

link|improve this answer
Thanks. That took care of the problem with hanging on the call to pango_win32_get_context(). Now to see if I can render some text. Additional advice is welcome. – Tim Sullivan Sep 22 '08 at 23:05
feedback

Have you looked here ?

link|improve this answer
Yes. I did RTFM. Unfortunately, automatically generated documentation often fails to provide enough clues on where to start. – Tim Sullivan Sep 22 '08 at 21:58
feedback

Your Answer

 
or
required, but never shown