Also support fonts in wxTextCtrl::GetStyle() in wxGTK.
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
This commit is contained in:
parent
306a5d9515
commit
2205ca7463
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user