CustomCommandWidgetController.h 1.16 KB
Newer Older
1 2
/****************************************************************************
 *
3
 *   (c) 2009-2018 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * 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
#pragma once
Don Gagne's avatar
Don Gagne committed
12 13 14 15

#include <QObject>

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

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

Don Gagne's avatar
Don Gagne committed
34
private:
35
    Vehicle*            _vehicle;
Don Gagne's avatar
Don Gagne committed
36 37 38 39
    QString             _customQmlFile;
    static const char*  _settingsKey;
};