First version of CRadarComponent

This commit is contained in:
Roland Rossgotterer
2019-01-30 09:45:16 +01:00
committed by Mat Sutcliffe
parent e0d04e7b92
commit 4273eb4260
14 changed files with 706 additions and 7 deletions

View File

@@ -97,6 +97,11 @@ namespace BlackGui
return ui->comp_TextMessages;
}
CRadarComponent *CMainInfoAreaComponent::getRadarComponent()
{
return ui->comp_Radar;
}
void CMainInfoAreaComponent::displayLog()
{
ui->comp_Log->displayLog();
@@ -195,6 +200,7 @@ namespace BlackGui
case InfoAreaLog: return CIcons::appLog16();
case InfoAreaTextMessages: return CIcons::appTextMessages16();
case InfoAreaInterpolation: return CIcons::appInterpolation16();
case InfoAreaRadar: return CIcons::appRadar16();
default: return CIcons::empty();
}
}