QGIS/designer_plugins/qgsdesignerwidgets.h
timlinux dff7ae7c09 New stuff for designer plugins. Initial implementation for legend and map cavnase. There is still a symbol relocation error that needs to be resolved.
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
2005-03-13 10:38:20 +00:00

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;
};