CustomCommandWidgetController.h 1.32 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 17

#ifndef CustomCommandWidgetController_H
#define CustomCommandWidgetController_H

#include <QObject>

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

20
class CustomCommandWidgetController : public FactPanelController
Don Gagne's avatar
Don Gagne committed
21 22 23 24 25 26 27 28
{
	Q_OBJECT
	
public:
	CustomCommandWidgetController(void);
    
    Q_PROPERTY(QString customQmlFile MEMBER _customQmlFile NOTIFY customQmlFileChanged)
	
dogmaphobic's avatar
dogmaphobic committed
29 30 31
    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
32 33
    
signals:
dogmaphobic's avatar
dogmaphobic committed
34 35 36 37 38
    void customQmlFileChanged   (const QString& customQmlFile);

private slots:
    void _activeVehicleChanged  (Vehicle* activeVehicle);

Don Gagne's avatar
Don Gagne committed
39 40 41 42 43 44
private:
	UASInterface*       _uas;
    QString             _customQmlFile;
    static const char*  _settingsKey;
};

dogmaphobic's avatar
dogmaphobic committed
45
#endif