]> git.saurik.com Git - wxWidgets.git/commitdiff
Also support fonts in wxTextCtrl::GetStyle() in wxGTK.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 8 Oct 2009 22:38:10 +0000 (22:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 8 Oct 2009 22:38:10 +0000 (22:38 +0000)
This extends the change of r62262 with support for the fonts.

Closes #11281.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62338 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/textctrl.cpp

index a29fc541833eabf1600c7d79d07dbb6b5ab27db2..8af511ffc7cbf04e1b908d613f9986fcd83baec7 100644 (file)
@@ -1717,7 +1717,14 @@ bool wxTextCtrl::GetStyle(long position, wxTextAttr& style)
         style.SetBackgroundColour(pattr->appearance.bg_color);
         style.SetTextColour(pattr->appearance.fg_color);
 
-        // TODO: set font, alignment, tabs and indents
+        const wxGtkString
+            pangoFontString(pango_font_description_to_string(pattr->font));
+
+        wxFont font;
+        if ( font.SetNativeFontInfo(wxString(pangoFontString)) )
+            style.SetFont(font);
+
+        // TODO: set alignment, tabs and indents
     }
 
     return true;