/**************************************************************************** * * (c) 2009-2016 QGROUNDCONTROL PROJECT * * QGroundControl is licensed according to the terms in the file * COPYING.md in the root of the source code directory. * ****************************************************************************/ /// @file /// @author Don Gagne #include "APMAirframeComponentAirframes.h" #include "APMAirframeComponentController.h" QMap APMAirframeComponentAirframes::rgAirframeTypes; QMap& APMAirframeComponentAirframes::get() { return rgAirframeTypes; } void APMAirframeComponentAirframes::insert(const QString& group, int groupId, const QString& image,const QString& name, const QString& file) { AirframeType_t *g; if (!rgAirframeTypes.contains(group)) { g = new AirframeType_t; g->name = group; g->type = groupId; g->imageResource = image.isEmpty() ? QString() : QStringLiteral("qrc:/qmlimages/") + image; rgAirframeTypes.insert(group, g); } else { g = rgAirframeTypes.value(group); } if (!name.isEmpty() && !file.isEmpty()) g->rgAirframeInfo.append(new APMAirframe(name, file, g->type)); } void APMAirframeComponentAirframes::clear() { QList valueList = get().values(); foreach(AirframeType_t *pType, valueList) { qDeleteAll(pType->rgAirframeInfo); delete pType; } rgAirframeTypes.clear(); }