mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Community reg plugin updates (not useable or included in build process yet though). git-svn-id: http://svn.osgeo.org/qgis/trunk@2954 c8812cc2-4d05-0410-92ff-de0c093fc19c
18 lines
525 B
C++
18 lines
525 B
C++
#include <qwidgetplugin.h>
|
|
|
|
class QgsDesignerWidgets : public QWidgetPlugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QgsDesignerWidgets();
|
|
|
|
QStringList keys() const;
|
|
QWidget* create( const QString &classname, QWidget* parent = 0, const char* name = 0 );
|
|
QString group( const QString& ) const;
|
|
QIconSet iconSet( const QString& ) const;
|
|
QString includeFile( const QString& ) const;
|
|
QString toolTip( const QString& ) const;
|
|
QString whatsThis( const QString& ) const;
|
|
bool isContainer( const QString& ) const;
|
|
};
|