mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
First version of CRadarComponent
This commit is contained in:
committed by
Mat Sutcliffe
parent
e0d04e7b92
commit
4273eb4260
@@ -416,6 +416,7 @@
|
||||
<file>icons/diagona/icons/folders.png</file>
|
||||
<file>icons/diagona/icons/blue-folder-search-result.png</file>
|
||||
<file>icons/diagona/icons/folder-search-result.png</file>
|
||||
<file>icons/diagona/icons/building.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="/own">
|
||||
<file>icons/own/app.jpg</file>
|
||||
|
||||
@@ -61,6 +61,7 @@ namespace BlackMisc
|
||||
CIcon(CIcons::ApplicationSimulator, "simulator"),
|
||||
CIcon(CIcons::ApplicationTextMessages, "text messages"),
|
||||
CIcon(CIcons::ApplicationWeather, "weather"),
|
||||
CIcon(CIcons::ApplicationRadar, "radar"),
|
||||
CIcon(CIcons::AviationAtis, "ATIS"),
|
||||
CIcon(CIcons::AviationAttitudeIndicator, "attitude indicator"),
|
||||
CIcon(CIcons::AviationMetar, "METAR"),
|
||||
@@ -190,6 +191,7 @@ namespace BlackMisc
|
||||
CIcon(CIcons::StandardIconWarning16, "warning"),
|
||||
CIcon(CIcons::StandardIconWeatherCloudy16, "cloudy"),
|
||||
CIcon(CIcons::StandardIconWrench16, "wrench"),
|
||||
CIcon(CIcons::StandardIconBuilding16, "building"),
|
||||
CIcon(CIcons::Swift16, "swift"),
|
||||
CIcon(CIcons::Swift24, "swift"),
|
||||
CIcon(CIcons::Swift48, "swift"),
|
||||
|
||||
@@ -413,6 +413,12 @@ namespace BlackMisc
|
||||
return pm;
|
||||
}
|
||||
|
||||
const QPixmap &CIcons::building16()
|
||||
{
|
||||
static const QPixmap pm(":/diagona/icons/diagona/icons/building.png");
|
||||
return pm;
|
||||
}
|
||||
|
||||
const QPixmap &CIcons::filter16()
|
||||
{
|
||||
return tableSheet16();
|
||||
@@ -820,7 +826,7 @@ namespace BlackMisc
|
||||
|
||||
const QPixmap &CIcons::appAtc16()
|
||||
{
|
||||
return radar16();
|
||||
return building16();
|
||||
}
|
||||
|
||||
const QPixmap &CIcons::appAircraft16()
|
||||
@@ -893,6 +899,11 @@ namespace BlackMisc
|
||||
return databaseAdd16();
|
||||
}
|
||||
|
||||
const QPixmap &CIcons::appRadar16()
|
||||
{
|
||||
return radar16();
|
||||
}
|
||||
|
||||
const QPixmap &CIcons::roleC1()
|
||||
{
|
||||
static const QPixmap pm(":/vatsim/icons/vatsim/C1.png");
|
||||
@@ -1126,6 +1137,7 @@ namespace BlackMisc
|
||||
case ApplicationSimulator: return appSimulator16();
|
||||
case ApplicationTextMessages: return appTextMessages16();
|
||||
case ApplicationWeather: return appWeather16();
|
||||
case ApplicationRadar: return appRadar16();
|
||||
case AviationAtis: return atis();
|
||||
case AviationAttitudeIndicator: return attitudeIndicator16();
|
||||
case AviationMetar: return metar();
|
||||
@@ -1254,6 +1266,7 @@ namespace BlackMisc
|
||||
case StandardIconWarning16: return warning16();
|
||||
case StandardIconWeatherCloudy16: return weatherCloudy16();
|
||||
case StandardIconWrench16: return wrench16();
|
||||
case StandardIconBuilding16: return building16();
|
||||
case Swift1024: return swift1024();
|
||||
case Swift128: return swift128();
|
||||
case Swift16: return swift16();
|
||||
|
||||
@@ -56,6 +56,7 @@ namespace BlackMisc
|
||||
ApplicationSimulator,
|
||||
ApplicationTextMessages,
|
||||
ApplicationWeather,
|
||||
ApplicationRadar,
|
||||
AviationAtis,
|
||||
AviationAttitudeIndicator,
|
||||
AviationMetar,
|
||||
@@ -185,6 +186,7 @@ namespace BlackMisc
|
||||
StandardIconWarning16,
|
||||
StandardIconWeatherCloudy16,
|
||||
StandardIconWrench16,
|
||||
StandardIconBuilding16,
|
||||
Swift16,
|
||||
Swift24,
|
||||
Swift48,
|
||||
@@ -426,6 +428,9 @@ namespace BlackMisc
|
||||
//! Cut
|
||||
static const QPixmap &cut16();
|
||||
|
||||
//! Building
|
||||
static const QPixmap &building16();
|
||||
|
||||
// --------------------------------------------------
|
||||
// -- Database
|
||||
// --------------------------------------------------
|
||||
@@ -626,6 +631,9 @@ namespace BlackMisc
|
||||
//! Stash
|
||||
static const QPixmap &appDbStash16();
|
||||
|
||||
//! Radar
|
||||
static const QPixmap &appRadar16();
|
||||
|
||||
// -------------------------------------------------------------
|
||||
// Network and aviation
|
||||
// -------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user