You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
514 B
C++
17 lines
514 B
C++
#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;
|
|
};
|