Revision 607f819e152726bb00b0e4df89e024f9f97dd067 authored by Andrea Giudiceandrea on 15 April 2021, 11:19:02 UTC, committed by GitHub on 15 April 2021, 11:19:02 UTC
1 parent bfa38f2
Raw File
qgiscustomwidgets.h
/***************************************************************************
   qgscustomwidgets.h
    --------------------------------------
   Date                 : 25.04.2014
   Copyright            : (C) 2014 Denis Rouzaud
   Email                : denis.rouzaud@gmail.com
***************************************************************************
*                                                                         *
*   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 QGISCUSTOMWIDGETS_H
#define QGISCUSTOMWIDGETS_H


#include <QtGlobal>
#include <QtUiPlugin/QDesignerCustomWidgetCollectionInterface>
#include <qplugin.h>


class QgisCustomWidgets : public QObject, public QDesignerCustomWidgetCollectionInterface
{
    Q_OBJECT
    Q_PLUGIN_METADATA( IID "org.qgis.customwidgets" )
    Q_INTERFACES( QDesignerCustomWidgetCollectionInterface )

  public:
    explicit QgisCustomWidgets( QObject *parent = nullptr );

    QList<QDesignerCustomWidgetInterface *> customWidgets() const override;

    static QString groupName() { return tr( "QGIS custom widgets" ); }

  private:
    QList<QDesignerCustomWidgetInterface *> mWidgets;
};

#endif // QGISCUSTOMWIDGETS_H
back to top