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:
@@ -1717,7 +1717,14 @@ bool wxTextCtrl::GetStyle(long position, wxTextAttr& style)
|
|||||||
style.SetBackgroundColour(pattr->appearance.bg_color);
|
style.SetBackgroundColour(pattr->appearance.bg_color);
|
||||||
style.SetTextColour(pattr->appearance.fg_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;
|
return true;
|
||||||
|
Reference in New Issue
Block a user