/**************************************************************************** * * (c) 2009-2019 QGROUNDCONTROL PROJECT * * QGroundControl is licensed according to the terms in the file * COPYING.md in the root of the source code directory. * * @file * @brief Custom Firmware Plugin (PX4) * @author Gus Grubba * */ #pragma once #include "FirmwarePlugin.h" #include "PX4FirmwarePlugin.h" class CustomCameraManager; class CustomFirmwarePlugin : public PX4FirmwarePlugin { Q_OBJECT public: CustomFirmwarePlugin(); // FirmwarePlugin overrides AutoPilotPlugin* autopilotPlugin (Vehicle* vehicle) override; QGCCameraManager* createCameraManager (Vehicle *vehicle) override; QGCCameraControl* createCameraControl (const mavlink_camera_information_t* info, Vehicle* vehicle, int compID, QObject* parent = nullptr) override; const QVariantList& toolBarIndicators (const Vehicle* vehicle) override; private: QVariantList _toolBarIndicatorList; };