/**************************************************************************** * * (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. * ****************************************************************************/#pragma once#include <QObject>#include <QUrl>/// Represents aclassQmlPageInfo:publicQObject{Q_OBJECTpublic:QmlPageInfo(QStringtitle,QUrlurl,QUrlicon=QUrl(),QObject*parent=NULL);Q_PROPERTY(QStringtitleREADtitleCONSTANT)///< Title for pageQ_PROPERTY(QUrlurlREADurlCONSTANT)///< Qml source codeQ_PROPERTY(QUrliconREADiconCONSTANT)///< Icon for pagevirtualQStringtitle(){return_title;}virtualQUrlurl(){return_url;}virtualQUrlicon(){return_icon;}protected:QString_title;QUrl_url;QUrl_icon;};