blob: 2455f5eb7b38865b93e250b228f3dbf27af328b1 (
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(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
|