You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/tools/designer/examples/filechooser/plugin/plugin.h

17 lines
532 B

#include <ntqwidgetplugin.h>
class CustomWidgetPlugin : public TQWidgetPlugin
{
public:
CustomWidgetPlugin();
TQStringList keys() const;
TQWidget* create( const TQString &classname, TQWidget* parent = 0, const char* name = 0 );
TQString group( const TQString& ) const;
TQIconSet iconSet( const TQString& ) const;
TQString includeFile( const TQString& ) const;
TQString toolTip( const TQString& ) const;
TQString whatsThis( const TQString& ) const;
bool isContainer( const TQString& ) const;
};