00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef QTSTUBS_H
00023 #define QTSTUBS_H
00024
00025 #ifdef QT_ONLY
00026
00027 #include <qobject.h>
00028 #include <qurl.h>
00029
00030 class QWidget;
00031
00032 typedef QUrl KURL;
00033
00034 namespace KParts {
00035
00036 class ReadOnlyPart : public QObject
00037 {
00038 Q_OBJECT
00039
00040 public:
00041 ReadOnlyPart( QObject *parent, const char *name=0 );
00042 virtual ~ReadOnlyPart();
00043
00044 void setWidget( QWidget *w ) { m_widget = w; }
00045
00046 private:
00047 QWidget *m_widget;
00048 };
00049
00050 class ReadWritePart : public ReadOnlyPart
00051 {
00052 Q_OBJECT
00053
00054 public:
00055 ReadWritePart( QObject *parent, const char *name=0 );
00056 virtual ~ReadWritePart();
00057 };
00058
00059 }
00060
00061 namespace KJSEmbed {
00062
00063 class XMLActionClientStub
00064 {
00065 public:
00066 XMLActionClientStub() {}
00067 ~XMLActionClientStub() {}
00068 };
00069
00070 typedef XMLActionClientStub XMLActionClient;
00071
00072 }
00073
00074 #endif // QT_ONLY
00075
00076 #endif // QTSTUBS_H