uichooser_part.h
Go to the documentation of this file.00001 /* 00002 * Copyright (C) 2001 Matthias Hoelzer-Kluepfel <mhk@caldera.de> 00003 */ 00004 00005 00006 #ifndef __KDEVPART_UICHOOSER_H__ 00007 #define __KDEVPART_UICHOOSER_H__ 00008 00009 00010 class KDialogBase; 00011 class ConfigWidgetProxy; 00012 00013 #include <kdevplugin.h> 00014 00015 class UIChooserPart : public KDevPlugin 00016 { 00017 Q_OBJECT 00018 00019 public: 00020 UIChooserPart(QObject *parent, const char *name, const QStringList &); 00021 ~UIChooserPart(); 00022 00023 private slots: 00024 void insertConfigWidget( const KDialogBase * dlg, QWidget * page, unsigned int ); 00025 00026 private: 00027 ConfigWidgetProxy * _configProxy; 00028 00029 }; 00030 00031 00032 #endif