+#if wxUSE_UNICODE
+ PangoLayout *layout = pango_layout_new( wxTheApp->GetPangoContext() );
+
+ PangoFontDescription *desc = fontToUse.GetNativeFontInfo()->description;
+ pango_layout_set_font_description(layout, desc);
+
+ const wxCharBuffer data = wxConvUTF8.cWC2MB( string.wc_str() );
+ pango_layout_set_text(layout, (const char*) data, strlen( (const char*) data ));
+
+ PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data;
+
+
+ PangoRectangle rect;
+ pango_layout_line_get_extents(line, NULL, &rect);
+
+ if (x) (*x) = (wxCoord) (rect.width / PANGO_SCALE);
+ if (y) (*y) = (wxCoord) (rect.height / PANGO_SCALE);
+ if (descent)
+ {
+ // Do something about metrics here
+ (*descent) = 0;
+ }
+ if (externalLeading) (*externalLeading) = 0; // ??
+
+ g_object_unref( G_OBJECT( layout ) );
+#else