CustomCommandWidgetController.h 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (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
10 11 12 13 14 15 16

#ifndef CustomCommandWidgetController_H
#define CustomCommandWidgetController_H

#include <QObject>

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

19
class CustomCommandWidgetController : public FactPanelController
Don Gagne's avatar
Don Gagne committed
20 21 22 23 24 25 26 27
{
	Q_OBJECT
	
public:
	CustomCommandWidgetController(void);
    
    Q_PROPERTY(QString customQmlFile MEMBER _customQmlFile NOTIFY customQmlFileChanged)
	
dogmaphobic's avatar
dogmaphobic committed
28 29 30
    Q_INVOKABLE void sendCommand    (int commandId, QVariant componentId, QVariant confirm, QVariant param1, QVariant param2, QVariant param3, QVariant param4, QVariant param5, QVariant param6, QVariant param7);
    Q_INVOKABLE void selectQmlFile  (void);
    Q_INVOKABLE void clearQmlFile   (void);
Don Gagne's avatar
Don Gagne committed
31 32
    
signals:
dogmaphobic's avatar
dogmaphobic committed
33 34 35 36 37
    void customQmlFileChanged   (const QString& customQmlFile);

private slots:
    void _activeVehicleChanged  (Vehicle* activeVehicle);

Don Gagne's avatar
Don Gagne committed
38
private:
39
    Vehicle*            _vehicle;
Don Gagne's avatar
Don Gagne committed
40 41 42 43
    QString             _customQmlFile;
    static const char*  _settingsKey;
};

dogmaphobic's avatar
dogmaphobic committed
44
#endif