mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Work in progress
This commit is contained in:
parent
1c8eadcdcc
commit
5acd33b32d
@ -47,7 +47,8 @@ layer.
|
|||||||
AeTypeContainer,
|
AeTypeContainer,
|
||||||
AeTypeField,
|
AeTypeField,
|
||||||
AeTypeRelation,
|
AeTypeRelation,
|
||||||
AeTypeInvalid
|
AeTypeInvalid,
|
||||||
|
AeTypeQmlElement
|
||||||
};
|
};
|
||||||
|
|
||||||
QgsAttributeEditorElement( AttributeEditorType type, const QString &name, QgsAttributeEditorElement *parent = 0 );
|
QgsAttributeEditorElement( AttributeEditorType type, const QString &name, QgsAttributeEditorElement *parent = 0 );
|
||||||
@ -345,6 +346,19 @@ Determines if the "unlink feature" button should be shown
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class QgsAttributeEditorQmlElement : QgsAttributeEditorElement
|
||||||
|
{
|
||||||
|
|
||||||
|
%TypeHeaderCode
|
||||||
|
#include "qgsattributeeditorelement.h"
|
||||||
|
%End
|
||||||
|
public:
|
||||||
|
QgsAttributeEditorQmlElement( QgsAttributeEditorElement *parent );
|
||||||
|
|
||||||
|
QString qmlCode() const;
|
||||||
|
void setQmlCode( const QString &qmlCode );
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* This file has been generated automatically from *
|
* This file has been generated automatically from *
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
// so RTTI for casting is available in the whole module.
|
// so RTTI for casting is available in the whole module.
|
||||||
%ModuleCode
|
%ModuleCode
|
||||||
#include "qgsrelationwidgetwrapper.h"
|
#include "qgsrelationwidgetwrapper.h"
|
||||||
|
#include "qgsqmlwidgetwrapper.h"
|
||||||
%End
|
%End
|
||||||
|
|
||||||
class QgsWidgetWrapper : QObject
|
class QgsWidgetWrapper : QObject
|
||||||
@ -37,6 +38,8 @@ changed status of the widget will be saved.
|
|||||||
sipType = sipType_QgsEditorWidgetWrapper;
|
sipType = sipType_QgsEditorWidgetWrapper;
|
||||||
else if ( qobject_cast<QgsRelationWidgetWrapper *>( sipCpp ) )
|
else if ( qobject_cast<QgsRelationWidgetWrapper *>( sipCpp ) )
|
||||||
sipType = sipType_QgsRelationWidgetWrapper;
|
sipType = sipType_QgsRelationWidgetWrapper;
|
||||||
|
else if ( qobject_cast<QgsQmlWidgetWrapper *>( sipCpp ) )
|
||||||
|
sipType = sipType_QgsQmlWidgetWrapper;
|
||||||
else
|
else
|
||||||
sipType = 0;
|
sipType = 0;
|
||||||
%End
|
%End
|
||||||
|
@ -0,0 +1,57 @@
|
|||||||
|
/************************************************************************
|
||||||
|
* This file has been generated automatically from *
|
||||||
|
* *
|
||||||
|
* src/gui/editorwidgets/qgsqmlwidgetwrapper.h *
|
||||||
|
* *
|
||||||
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
class QgsQmlWidgetWrapper : QgsWidgetWrapper
|
||||||
|
{
|
||||||
|
%Docstring
|
||||||
|
*************************************************************************
|
||||||
|
qgsqmlwidgetwrapper.h
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
**************************************************************************
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify *
|
||||||
|
it under the terms of the GNU General Public License as published by *
|
||||||
|
the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
(at your option) any later version. *
|
||||||
|
|
||||||
|
**************************************************************************
|
||||||
|
%End
|
||||||
|
|
||||||
|
%TypeHeaderCode
|
||||||
|
#include "qgsqmlwidgetwrapper.h"
|
||||||
|
%End
|
||||||
|
public:
|
||||||
|
QgsQmlWidgetWrapper( QgsVectorLayer *layer, QWidget *editor, QWidget *parent );
|
||||||
|
|
||||||
|
virtual bool valid() const;
|
||||||
|
|
||||||
|
|
||||||
|
virtual QWidget *createWidget( QWidget *parent );
|
||||||
|
|
||||||
|
|
||||||
|
virtual void initWidget( QWidget *editor );
|
||||||
|
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
|
||||||
|
virtual void setFeature( const QgsFeature &feature );
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
/************************************************************************
|
||||||
|
* This file has been generated automatically from *
|
||||||
|
* *
|
||||||
|
* src/gui/editorwidgets/qgsqmlwidgetwrapper.h *
|
||||||
|
* *
|
||||||
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
||||||
|
************************************************************************/
|
43
python/gui/auto_generated/qgsqmlwidget.sip.in
Normal file
43
python/gui/auto_generated/qgsqmlwidget.sip.in
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/************************************************************************
|
||||||
|
* This file has been generated automatically from *
|
||||||
|
* *
|
||||||
|
* src/gui/qgsqmlwidget.h *
|
||||||
|
* *
|
||||||
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
class QgsQmlWidget
|
||||||
|
{
|
||||||
|
%Docstring
|
||||||
|
*************************************************************************
|
||||||
|
qgsqmlwidget.h
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
**************************************************************************
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify *
|
||||||
|
it under the terms of the GNU General Public License as published by *
|
||||||
|
the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
(at your option) any later version. *
|
||||||
|
|
||||||
|
**************************************************************************
|
||||||
|
%End
|
||||||
|
|
||||||
|
%TypeHeaderCode
|
||||||
|
#include "qgsqmlwidget.h"
|
||||||
|
%End
|
||||||
|
public:
|
||||||
|
QgsQmlWidget();
|
||||||
|
};
|
||||||
|
|
||||||
|
/************************************************************************
|
||||||
|
* This file has been generated automatically from *
|
||||||
|
* *
|
||||||
|
* src/gui/qgsqmlwidget.h *
|
||||||
|
* *
|
||||||
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
||||||
|
************************************************************************/
|
@ -322,4 +322,5 @@
|
|||||||
%Include auto_generated/processing/qgsprocessingtoolboxmodel.sip
|
%Include auto_generated/processing/qgsprocessingtoolboxmodel.sip
|
||||||
%Include auto_generated/processing/qgsprocessingtoolboxtreeview.sip
|
%Include auto_generated/processing/qgsprocessingtoolboxtreeview.sip
|
||||||
%Include auto_generated/processing/qgsprocessingwidgetwrapper.sip
|
%Include auto_generated/processing/qgsprocessingwidgetwrapper.sip
|
||||||
|
%Include auto_generated/editorwidgets/qgsqmlwidgetwrapper.sip
|
||||||
%Include auto_generated/qgsadvanceddigitizingcanvasitem.sip
|
%Include auto_generated/qgsadvanceddigitizingcanvasitem.sip
|
||||||
|
@ -150,3 +150,24 @@ void QgsAttributeEditorRelation::setShowUnlinkButton( bool showUnlinkButton )
|
|||||||
{
|
{
|
||||||
mShowUnlinkButton = showUnlinkButton;
|
mShowUnlinkButton = showUnlinkButton;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString QgsAttributeEditorQmlElement::qmlCode() const
|
||||||
|
{
|
||||||
|
return mQmlCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
void QgsAttributeEditorQmlElement::setQmlCode( const QString &qmlCode )
|
||||||
|
{
|
||||||
|
mQmlCode = qmlCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
void QgsAttributeEditorQmlElement::saveConfiguration( QDomElement &elem ) const
|
||||||
|
{
|
||||||
|
QDomText codeElem = elem.ownerDocument().createTextNode( mQmlCode );
|
||||||
|
elem.appendChild( codeElem );
|
||||||
|
}
|
||||||
|
|
||||||
|
QString QgsAttributeEditorQmlElement::typeIdentifier() const
|
||||||
|
{
|
||||||
|
return QStringLiteral( "attributeEditorQmlElement" );
|
||||||
|
}
|
||||||
|
@ -61,7 +61,8 @@ class CORE_EXPORT QgsAttributeEditorElement SIP_ABSTRACT
|
|||||||
AeTypeContainer, //!< A container
|
AeTypeContainer, //!< A container
|
||||||
AeTypeField, //!< A field
|
AeTypeField, //!< A field
|
||||||
AeTypeRelation, //!< A relation
|
AeTypeRelation, //!< A relation
|
||||||
AeTypeInvalid //!< Invalid
|
AeTypeInvalid, //!< Invalid
|
||||||
|
AeTypeQmlElement //!< A QML element
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -411,5 +412,20 @@ class CORE_EXPORT QgsAttributeEditorRelation : public QgsAttributeEditorElement
|
|||||||
bool mShowUnlinkButton = true;
|
bool mShowUnlinkButton = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class CORE_EXPORT QgsAttributeEditorQmlElement : public QgsAttributeEditorElement
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QgsAttributeEditorQmlElement( QgsAttributeEditorElement *parent )
|
||||||
|
: QgsAttributeEditorElement( AeTypeQmlElement, "TODO NAME", parent )
|
||||||
|
{}
|
||||||
|
|
||||||
|
QString qmlCode() const;
|
||||||
|
void setQmlCode( const QString &qmlCode );
|
||||||
|
|
||||||
|
private:
|
||||||
|
void saveConfiguration( QDomElement &elem ) const override;
|
||||||
|
QString typeIdentifier() const override;
|
||||||
|
QString mQmlCode;
|
||||||
|
};
|
||||||
|
|
||||||
#endif // QGSATTRIBUTEEDITORELEMENT_H
|
#endif // QGSATTRIBUTEEDITORELEMENT_H
|
||||||
|
@ -61,9 +61,9 @@ void QgsEditFormConfig::setFields( const QgsFields &fields )
|
|||||||
|
|
||||||
void QgsEditFormConfig::onRelationsLoaded()
|
void QgsEditFormConfig::onRelationsLoaded()
|
||||||
{
|
{
|
||||||
QList<QgsAttributeEditorElement *> relations = d->mInvisibleRootContainer->findElements( QgsAttributeEditorElement::AeTypeRelation );
|
const QList<QgsAttributeEditorElement *> relations = d->mInvisibleRootContainer->findElements( QgsAttributeEditorElement::AeTypeRelation );
|
||||||
|
|
||||||
Q_FOREACH ( QgsAttributeEditorElement *relElem, relations )
|
for ( QgsAttributeEditorElement *relElem : relations )
|
||||||
{
|
{
|
||||||
QgsAttributeEditorRelation *rel = dynamic_cast< QgsAttributeEditorRelation * >( relElem );
|
QgsAttributeEditorRelation *rel = dynamic_cast< QgsAttributeEditorRelation * >( relElem );
|
||||||
if ( !rel )
|
if ( !rel )
|
||||||
@ -599,7 +599,9 @@ QgsAttributeEditorElement *QgsAttributeEditorContainer::clone( QgsAttributeEdito
|
|||||||
{
|
{
|
||||||
QgsAttributeEditorContainer *element = new QgsAttributeEditorContainer( name(), parent );
|
QgsAttributeEditorContainer *element = new QgsAttributeEditorContainer( name(), parent );
|
||||||
|
|
||||||
Q_FOREACH ( QgsAttributeEditorElement *child, children() )
|
const auto childElements = children();
|
||||||
|
|
||||||
|
for ( QgsAttributeEditorElement *child : childElements )
|
||||||
{
|
{
|
||||||
element->addChildElement( child->clone( element ) );
|
element->addChildElement( child->clone( element ) );
|
||||||
}
|
}
|
||||||
|
@ -838,6 +838,25 @@ SET(QGIS_GUI_HDRS
|
|||||||
|
|
||||||
symbology/qgssymbolwidgetcontext.h
|
symbology/qgssymbolwidgetcontext.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Find_Package(Qt5Qml)
|
||||||
|
|
||||||
|
IF(Qt5Qml_FOUND)
|
||||||
|
ADD_DEFINITIONS(-DWITH_QML)
|
||||||
|
SET(QGIS_GUI_MOC_HDRS
|
||||||
|
${QGIS_GUI_MOC_HDRS}
|
||||||
|
editorwidgets/qgsqmlwidgetwrapper.h
|
||||||
|
qgsqmlwidget.h
|
||||||
|
)
|
||||||
|
|
||||||
|
SET(QGIS_GUI_SRCS
|
||||||
|
${QGIS_GUI_SRCS}
|
||||||
|
editorwidgets/qgsqmlwidgetwrapper.cpp
|
||||||
|
qgsqmlwidget.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
ENDIF(Qt5Qml_FOUND)
|
||||||
|
|
||||||
SET_PROPERTY(GLOBAL PROPERTY QGIS_GUI_HDRS ${QGIS_GUI_HDRS})
|
SET_PROPERTY(GLOBAL PROPERTY QGIS_GUI_HDRS ${QGIS_GUI_HDRS})
|
||||||
|
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ class QgsVectorLayer;
|
|||||||
// so RTTI for casting is available in the whole module.
|
// so RTTI for casting is available in the whole module.
|
||||||
% ModuleCode
|
% ModuleCode
|
||||||
#include "qgsrelationwidgetwrapper.h"
|
#include "qgsrelationwidgetwrapper.h"
|
||||||
|
#include "qgsqmlwidgetwrapper.h"
|
||||||
% End
|
% End
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -56,6 +57,8 @@ class GUI_EXPORT QgsWidgetWrapper : public QObject
|
|||||||
sipType = sipType_QgsEditorWidgetWrapper;
|
sipType = sipType_QgsEditorWidgetWrapper;
|
||||||
else if ( qobject_cast<QgsRelationWidgetWrapper *>( sipCpp ) )
|
else if ( qobject_cast<QgsRelationWidgetWrapper *>( sipCpp ) )
|
||||||
sipType = sipType_QgsRelationWidgetWrapper;
|
sipType = sipType_QgsRelationWidgetWrapper;
|
||||||
|
else if ( qobject_cast<QgsQmlWidgetWrapper *>( sipCpp ) )
|
||||||
|
sipType = sipType_QgsQmlWidgetWrapper;
|
||||||
else
|
else
|
||||||
sipType = 0;
|
sipType = 0;
|
||||||
SIP_END
|
SIP_END
|
||||||
|
22
src/gui/editorwidgets/qgsqmlwidgetwrapper.cpp
Normal file
22
src/gui/editorwidgets/qgsqmlwidgetwrapper.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
qgsqmlwidgetwrapper.cpp
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
***************************************************************************
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
***************************************************************************/
|
||||||
|
#include "qgsqmlwidgetwrapper.h"
|
||||||
|
|
||||||
|
QgsQmlWidgetWrapper::QgsQmlWidgetWrapper( QgsVectorLayer *layer, QWidget *editor, QWidget *parent )
|
||||||
|
: QgsWidgetWrapper( layer, editor, parent )
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
37
src/gui/editorwidgets/qgsqmlwidgetwrapper.h
Normal file
37
src/gui/editorwidgets/qgsqmlwidgetwrapper.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
qgsqmlwidgetwrapper.h
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
***************************************************************************
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
***************************************************************************/
|
||||||
|
#ifndef QGSQMLWIDGETWRAPPER_H
|
||||||
|
#define QGSQMLWIDGETWRAPPER_H
|
||||||
|
|
||||||
|
#include "qgswidgetwrapper.h"
|
||||||
|
|
||||||
|
class GUI_EXPORT QgsQmlWidgetWrapper : public QgsWidgetWrapper
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QgsQmlWidgetWrapper( QgsVectorLayer *layer, QWidget *editor, QWidget *parent );
|
||||||
|
|
||||||
|
bool valid() const override;
|
||||||
|
|
||||||
|
QWidget *createWidget( QWidget *parent ) override;
|
||||||
|
|
||||||
|
void initWidget( QWidget *editor ) override;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
|
||||||
|
void setFeature( const QgsFeature &feature ) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // QGSQMLWIDGETWRAPPER_H
|
@ -37,6 +37,7 @@
|
|||||||
#include "qgsgui.h"
|
#include "qgsgui.h"
|
||||||
#include "qgsvectorlayerjoinbuffer.h"
|
#include "qgsvectorlayerjoinbuffer.h"
|
||||||
#include "qgsvectorlayerutils.h"
|
#include "qgsvectorlayerutils.h"
|
||||||
|
#include "qgsqmlwidgetwrapper.h"
|
||||||
|
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
@ -1709,9 +1710,9 @@ QgsAttributeForm::WidgetInfo QgsAttributeForm::createWidgetFromDef( const QgsAtt
|
|||||||
int row = 0;
|
int row = 0;
|
||||||
int column = 0;
|
int column = 0;
|
||||||
|
|
||||||
QList<QgsAttributeEditorElement *> children = container->children();
|
const QList<QgsAttributeEditorElement *> children = container->children();
|
||||||
|
|
||||||
Q_FOREACH ( QgsAttributeEditorElement *childDef, children )
|
for ( QgsAttributeEditorElement *childDef : children )
|
||||||
{
|
{
|
||||||
WidgetInfo widgetInfo = createWidgetFromDef( childDef, myContainer, vl, context );
|
WidgetInfo widgetInfo = createWidgetFromDef( childDef, myContainer, vl, context );
|
||||||
|
|
||||||
@ -1769,6 +1770,25 @@ QgsAttributeForm::WidgetInfo QgsAttributeForm::createWidgetFromDef( const QgsAtt
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case QgsAttributeEditorElement::AeTypeQmlElement:
|
||||||
|
{
|
||||||
|
const QgsAttributeEditorQmlElement *elementDef = static_cast<const QgsAttributeEditorQmlElement *>( widgetDef );
|
||||||
|
|
||||||
|
QgsQmlWidgetWrapper *qmlWrapper = new QgsQmlWidgetWrapper( mLayer, nullptr, this );
|
||||||
|
qmlWrapper->setConfig( mLayer->editFormConfig().widgetConfig( "TODO NAME??" ) );
|
||||||
|
qmlWrapper->setContext( context );
|
||||||
|
|
||||||
|
// QgsAttributeFormRelationEditorWidget *formWidget = new QgsAttributeFormRelationEditorWidget( rww, this );
|
||||||
|
|
||||||
|
mWidgets.append( qmlWrapper );
|
||||||
|
// mFormWidgets.append( formWidget );
|
||||||
|
|
||||||
|
newWidgetInfo.widget = qmlWrapper->widget();
|
||||||
|
newWidgetInfo.labelText = QString();
|
||||||
|
newWidgetInfo.labelOnTop = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
QgsDebugMsg( "Unknown attribute editor widget type encountered..." );
|
QgsDebugMsg( "Unknown attribute editor widget type encountered..." );
|
||||||
break;
|
break;
|
||||||
|
21
src/gui/qgsqmlwidget.cpp
Normal file
21
src/gui/qgsqmlwidget.cpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
qgsqmlwidget.cpp
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
***************************************************************************
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
***************************************************************************/
|
||||||
|
#include "qgsqmlwidget.h"
|
||||||
|
|
||||||
|
QgsQmlWidget::QgsQmlWidget()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
27
src/gui/qgsqmlwidget.h
Normal file
27
src/gui/qgsqmlwidget.h
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
qgsqmlwidget.h
|
||||||
|
|
||||||
|
---------------------
|
||||||
|
begin : 25.6.2018
|
||||||
|
copyright : (C) 2018 by Matthias Kuhn
|
||||||
|
email : matthias@opengis.ch
|
||||||
|
***************************************************************************
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
***************************************************************************/
|
||||||
|
#ifndef QGSQMLWIDGET_H
|
||||||
|
#define QGSQMLWIDGET_H
|
||||||
|
|
||||||
|
#include "qgis_gui.h"
|
||||||
|
|
||||||
|
class GUI_EXPORT QgsQmlWidget
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QgsQmlWidget();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // QGSQMLWIDGET_H
|
Loading…
x
Reference in New Issue
Block a user