summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/filechooser/plugin/plugin.h
blob: a465c29e410341466800db0583545f122997c961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <qwidgetplugin.h>

class CustomWidgetPlugin : public QWidgetPlugin
{
public:
    CustomWidgetPlugin();

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