blob: a312d894813860fd1431ca8c4beecb09aaa3f11b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef _kmozillapart_h_
#define _kmozillapart_h_
#include "xparthost_kpart.h"
class KAboutData;
class KProcess;
class KMozillaPart : public XPartHost_KPart
{
Q_OBJECT
public:
KMozillaPart(TQWidget *parentWidget, const char *widgetName,
TQObject *parent, const char *name, const TQStringList &);
virtual ~KMozillaPart();
virtual void createActions( const TQCString &xmlActions );
static KAboutData *createAboutData();
private:
KProcess *m_partProcess;
};
#endif
|