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.
|
|
|
#ifndef _kmozillapart_h_
|
|
|
|
#define _kmozillapart_h_
|
|
|
|
|
|
|
|
#include "xparthost_kpart.h"
|
|
|
|
|
|
|
|
class KAboutData;
|
|
|
|
class KProcess;
|
|
|
|
|
|
|
|
class KMozillaPart : public XPartHost_KPart
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KMozillaPart(TTQWidget *parentWidget, const char *widgetName,
|
|
|
|
TTQObject *parent, const char *name, const TTQStringList &);
|
|
|
|
virtual ~KMozillaPart();
|
|
|
|
|
|
|
|
virtual void createActions( const TTQCString &xmlActions );
|
|
|
|
|
|
|
|
static KAboutData *createAboutData();
|
|
|
|
|
|
|
|
private:
|
|
|
|
KProcess *m_partProcess;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|