Apply system colors to HTML panel in symbol chooser

Fixes https://gitlab.com/kicad/code/kicad/-/issues/6000
This commit is contained in:
Jon Evans 2020-10-13 17:55:14 -04:00
parent a2168c6add
commit cb075d06c2
1 changed files with 13 additions and 3 deletions

View File

@ -411,10 +411,20 @@ void LIB_TREE::onPreselect( wxCommandEvent& aEvent )
int unit = 0;
LIB_ID id = GetSelectedLibId( &unit );
wxString htmlColor = GetBackgroundColour().GetAsString( wxC2S_HTML_SYNTAX );
wxString textColor = GetForegroundColour().GetAsString( wxC2S_HTML_SYNTAX );
wxString linkColor = wxSystemSettings::GetColour( wxSYS_COLOUR_HOTLIGHT )
.GetAsString( wxC2S_HTML_SYNTAX );
wxString html = wxString::Format( wxT( "<html><body bgcolor='%s' text='%s' link='%s'>" ),
htmlColor, textColor, linkColor );
if( id.IsValid() )
m_details_ctrl->SetPage( m_adapter->GenerateInfo( id, unit ) );
else
m_details_ctrl->SetPage( wxEmptyString );
html.Append( m_adapter->GenerateInfo( id, unit ) );
html.Append( wxT( "</body></html>" ) );
m_details_ctrl->SetPage( html );
}
aEvent.Skip();