plugincombobox.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef PLUGINCOMBOBOX_H
00021 #define PLUGINCOMBOBOX_H
00022
00023 #include <qwidget.h>
00024 #include <qstringlist.h>
00025
00026 #include "kpreloadobject.h"
00027
00028 class QComboBox;
00029 class QLabel;
00030
00031 class KDEPRINT_EXPORT PluginComboBox : public QWidget, public KPReloadObject
00032 {
00033 Q_OBJECT
00034 public:
00035 PluginComboBox(QWidget *parent = 0, const char *name = 0);
00036
00037 protected slots:
00038 void slotActivated(int);
00039
00040 protected:
00041 void reload();
00042 void configChanged();
00043
00044 private:
00045 QComboBox *m_combo;
00046 QLabel *m_plugininfo;
00047 QStringList m_pluginlist;
00048 };
00049
00050 #endif
|