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