vote up 0 vote down star

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?

flag

2 Answers

vote up 2 vote down check

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|flag
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
vote up 0 vote down

Have you looked here ?

link|flag
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

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.