parts/uimode/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 00012 00013 #include <kdevplugin.h> 00014 00015 00016 class UIChooserPart : public KDevPlugin 00017 { 00018 Q_OBJECT 00019 00020 public: 00021 00022 UIChooserPart(QObject *parent, const char *name, const QStringList &); 00023 ~UIChooserPart(); 00024 00025 00026 private slots: 00027 00028 void configWidget(KDialogBase *dlg); 00029 00030 }; 00031 00032 00033 #endif