infoextension.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef INFOEXTENSION_H
00021 #define INFOEXTENSION_H
00022
00023 #include <qobject.h>
00024
00025 class QWidget;
00026
00027 namespace KParts
00028 {
00029
00030 class ReadOnlyPart;
00031
00035 class InfoExtension : public QObject
00036 {
00037 Q_OBJECT
00038
00039 public:
00046 InfoExtension( KParts::ReadOnlyPart *parent, const char* name);
00047 ~InfoExtension();
00048
00049 private:
00050 class InfoExtensionPrivate;
00051 InfoExtensionPrivate *d;
00052
00053 signals:
00054 void textChanged( const QString& );
00055 void iconChanged( const QPixmap& );
00056 };
00057 }
00058 #endif // INFOEXTENSION_H
This file is part of the documentation for libkdepim Library Version 3.2.2.