Skip to content
AirframeComponentController.h 2.9 KiB
Newer Older
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed

/// @file
///     @author Don Gagne <don@thegagnes.com>

#ifndef AIRFRAMECOMPONENTCONTROLLER_H
#define AIRFRAMECOMPONENTCONTROLLER_H

#include <QObject>
#include <QQuickItem>
#include <QList>

#include "UASInterface.h"
#include "AutoPilotPlugin.h"
#include "FactPanelController.h"
Don Gagne's avatar
Don Gagne committed

/// MVC Controller for AirframeComponent.qml.
class AirframeComponentController : public FactPanelController
Don Gagne's avatar
Don Gagne committed
{
    Q_OBJECT
    
public:
    AirframeComponentController(void);
Don Gagne's avatar
Don Gagne committed
    ~AirframeComponentController();
    
    Q_PROPERTY(bool showCustomConfigPanel MEMBER _showCustomConfigPanel NOTIFY showCustomConfigPanelChanged)
    
Don Gagne's avatar
Don Gagne committed
    Q_PROPERTY(QVariantList airframeTypes MEMBER _airframeTypes CONSTANT)
    
    Q_PROPERTY(QString currentAirframeType MEMBER _currentAirframeType CONSTANT)
    Q_PROPERTY(QString currentVehicleName MEMBER _currentVehicleName CONSTANT)
    Q_PROPERTY(int currentVehicleIndex MEMBER _currentVehicleIndex CONSTANT)
    
    Q_PROPERTY(int autostartId MEMBER _autostartId NOTIFY autostartIdChanged)
    
    Q_INVOKABLE void changeAutostart(void);
    
    int currentAirframeIndex(void);
    void setCurrentAirframeIndex(int newIndex);
    
signals:
    void autostartIdChanged(int newAutostartId);
    void showCustomConfigPanelChanged(bool show);
Don Gagne's avatar
Don Gagne committed
private slots:
    void _waitParamWriteSignal(QVariant value);
    void _rebootAfterStackUnwind(void);
    
Don Gagne's avatar
Don Gagne committed
private:
    static bool _typesRegistered;
    
Don Gagne's avatar
Don Gagne committed
    QVariantList    _airframeTypes;
    QString         _currentAirframeType;
    QString         _currentVehicleName;
    int             _currentVehicleIndex;
    int             _autostartId;
    bool            _showCustomConfigPanel;
    int             _waitParamWriteSignalCount;
Don Gagne's avatar
Don Gagne committed
};

class Airframe : public QObject
{
    Q_OBJECT
    
public:
    Airframe(const QString& name, int autostartId, QObject* parent = NULL);
    ~Airframe();
    
    Q_PROPERTY(QString text MEMBER _name CONSTANT)
    Q_PROPERTY(int autostartId MEMBER _autostartId CONSTANT)
    
private:
    QString _name;
    int     _autostartId;
};

class AirframeType : public QObject
{
    Q_OBJECT
    
public:
    AirframeType(const QString& name, const QString& imageResource, QObject* parent = NULL);
    ~AirframeType();
    
    Q_PROPERTY(QString name MEMBER _name CONSTANT)
    Q_PROPERTY(QString imageResource MEMBER _imageResource CONSTANT)
    Q_PROPERTY(QVariantList airframes MEMBER _airframes CONSTANT)
    
    void addAirframe(const QString& name, int autostartId);
    
private:
    QString         _name;
    QString         _imageResource;
    QVariantList    _airframes;
};

#endif