You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
501 B
28 lines
501 B
15 years ago
|
#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
|
||
|
|