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