pfontcombo.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef PFONTCOMBO_H
00021 #define PFONTCOMBO_H
00022
00023 #include "propertywidget.h"
00024
00025 #ifdef PURE_QT
00026 #define KFontCombo QComboBox
00027 #endif
00028
00029 class KFontCombo;
00030
00031 namespace PropertyLib{
00032
00036 class PFontCombo: public PropertyWidget{
00037 Q_OBJECT
00038 public:
00039 PFontCombo(MultiProperty *property, QWidget *parent = 0, const char *name = 0);
00040
00042 virtual QVariant value() const;
00045 virtual void setValue(const QVariant &value, bool emitChange=true);
00046
00047 private slots:
00048 void updateProperty(const QString &val);
00049
00050 private:
00051 KFontCombo *m_edit;
00052 };
00053
00054 }
00055
00056 #endif
This file is part of the documentation for KDevelop Version 3.1.2.