summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/filechooser/plugin/plugin.h
blob: 11262f830916b4346da474271fce738e4878e697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <qwidgetplugin.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;
};