/* * Copyright (C) 2001 Matthias Hoelzer-Kluepfel */ #ifndef __KDEVPART_UICHOOSER_H__ #define __KDEVPART_UICHOOSER_H__ class KDialogBase; class ConfigWidgetProxy; #include class UIChooserPart : public KDevPlugin { Q_OBJECT public: UIChooserPart(TQObject *parent, const char *name, const TQStringList &); ~UIChooserPart(); private slots: void insertConfigWidget( const KDialogBase * dlg, TQWidget * page, unsigned int ); private: ConfigWidgetProxy * _configProxy; }; #endif