diff --git a/qgroundcontrol.pro b/qgroundcontrol.pro index 54d58cf70a8acaee6f9148e47d71202b54f8bf31..e8f5e04bdd1f5f753d80cb91b7ac1d19f664db3e 100644 --- a/qgroundcontrol.pro +++ b/qgroundcontrol.pro @@ -392,11 +392,13 @@ FORMS += \ HEADERS += \ src/api/QGCCorePlugin.h \ src/api/QGCOptions.h \ + src/api/QGCSettings.h \ src/api/QmlComponentInfo.h \ SOURCES += \ src/api/QGCCorePlugin.cc \ src/api/QGCOptions.cc \ + src/api/QGCSettings.cc \ src/api/QmlComponentInfo.cc \ # diff --git a/src/api/QGCSettings.cc b/src/api/QGCSettings.cc new file mode 100644 index 0000000000000000000000000000000000000000..6fbe9dbe336b6bda84e2913a817ff6356382ba0c --- /dev/null +++ b/src/api/QGCSettings.cc @@ -0,0 +1,21 @@ +/**************************************************************************** + * + * (c) 2009-2016 QGROUNDCONTROL PROJECT + * + * QGroundControl is licensed according to the terms in the file + * COPYING.md in the root of the source code directory. + * + ****************************************************************************/ + +#include "QGCSettings.h" + +/// @file +/// @brief Core Plugin Interface for QGroundControl. Settings element. +/// @author Gus Grubba + +QGCSettings::QGCSettings(QString title, QUrl url, QUrl icon) + : _title(title) + , _url(url) + , _icon(icon) +{ +} diff --git a/src/api/QGCSettings.h b/src/api/QGCSettings.h new file mode 100644 index 0000000000000000000000000000000000000000..682364cb20b796167f8a787e341001c26ebd6991 --- /dev/null +++ b/src/api/QGCSettings.h @@ -0,0 +1,37 @@ +/**************************************************************************** + * + * (c) 2009-2016 QGROUNDCONTROL PROJECT + * + * QGroundControl is licensed according to the terms in the file + * COPYING.md in the root of the source code directory. + * + ****************************************************************************/ + +#pragma once + +#include +#include + +/// @file +/// @brief Core Plugin Interface for QGroundControl. Settings element. +/// @author Gus Grubba + +class QGCSettings : public QObject +{ + Q_OBJECT +public: + QGCSettings(QString title, QUrl url, QUrl icon = QUrl()); + + Q_PROPERTY(QString title READ title CONSTANT) + Q_PROPERTY(QUrl url READ url CONSTANT) + Q_PROPERTY(QUrl icon READ icon CONSTANT) + + virtual QString title () { return _title; } + virtual QUrl url () { return _url; } + virtual QUrl icon () { return _icon; } + +protected: + QString _title; + QUrl _url; + QUrl _icon; +};