componentsdialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KSETTINGS_COMPONENTSDIALOG_H
00021 #define KSETTINGS_COMPONENTSDIALOG_H
00022
00023 #include <kdialogbase.h>
00024
00025 class QString;
00026 class KPluginInfo;
00027
00028 namespace KSettings
00029 {
00030
00038 class KUTILS_EXPORT ComponentsDialog : public KDialogBase
00039 {
00040 Q_OBJECT
00041 public:
00048 ComponentsDialog( QWidget * parent = 0, const char * name = 0 );
00049 ~ComponentsDialog();
00050
00054 void addPluginInfo( KPluginInfo * );
00058 void setPluginInfos( const QMap<QString, KPluginInfo*> & plugininfos );
00062 void setPluginInfos( const QValueList<KPluginInfo *> &plugins );
00063
00067 void show();
00068
00069 protected slots:
00070 void slotOk();
00071 void slotApply();
00072
00073 private slots:
00074 void executed( QListViewItem * );
00075
00076 private:
00077 void savePluginInfos();
00078
00079 class ComponentsDialogPrivate;
00080 ComponentsDialogPrivate * d;
00081 };
00082
00083 }
00084
00085
00086 #endif // KSETTINGS_COMPONENTSDIALOG_H
This file is part of the documentation for kutils Library Version 3.3.90.