diff options
Diffstat (limited to 'xparts/mozilla/kmozillapart.h')
-rw-r--r-- | xparts/mozilla/kmozillapart.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/xparts/mozilla/kmozillapart.h b/xparts/mozilla/kmozillapart.h new file mode 100644 index 00000000..d7cef4b9 --- /dev/null +++ b/xparts/mozilla/kmozillapart.h @@ -0,0 +1,27 @@ +#ifndef _kmozillapart_h_ +#define _kmozillapart_h_ + +#include "xparthost_kpart.h" + +class KAboutData; +class KProcess; + +class KMozillaPart : public XPartHost_KPart +{ + Q_OBJECT + +public: + KMozillaPart(QWidget *parentWidget, const char *widgetName, + QObject *parent, const char *name, const QStringList &); + virtual ~KMozillaPart(); + + virtual void createActions( const QCString &xmlActions ); + + static KAboutData *createAboutData(); + +private: + KProcess *m_partProcess; +}; + +#endif + |