mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 11:05:33 +08:00
refs #393, allow to highlight a certain aircraft by blinking
* signatures in contexts * some specialized functions in aircraft list * context menus in aircraft view * default "blinking" implementation in driver common base class
This commit is contained in:
@@ -107,5 +107,25 @@ namespace BlackMisc
|
||||
}
|
||||
}
|
||||
|
||||
void CAircraftLights::setAllOn()
|
||||
{
|
||||
m_beaconOn = true;
|
||||
m_landingOn = true;
|
||||
m_logoOn = true;
|
||||
m_navOn = true;
|
||||
m_strobeOn = true;
|
||||
m_taxiOn = true;
|
||||
}
|
||||
|
||||
void CAircraftLights::setAllOff()
|
||||
{
|
||||
m_beaconOn = false;
|
||||
m_landingOn = false;
|
||||
m_logoOn = false;
|
||||
m_navOn = false;
|
||||
m_strobeOn = false;
|
||||
m_taxiOn = false;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user