libkdepim
infoextension.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef INFOEXTENSION_H
00023 #define INFOEXTENSION_H
00024
00025 #include <tqobject.h>
00026 #include <kdepimmacros.h>
00027
00028 class TQWidget;
00029
00030 namespace KParts
00031 {
00032
00033 class ReadOnlyPart;
00034
00038 class KDE_EXPORT InfoExtension : public TQObject
00039 {
00040 Q_OBJECT
00041 TQ_OBJECT
00042
00043 public:
00050 InfoExtension( KParts::ReadOnlyPart *parent, const char* name);
00051 ~InfoExtension();
00052
00053 private:
00054 class InfoExtensionPrivate;
00055 InfoExtensionPrivate *d;
00056
00057 signals:
00058 void textChanged( const TQString& );
00059 void iconChanged( const TQPixmap& );
00060 };
00061 }
00062 #endif // INFOEXTENSION_H
|