blob: 764ac8136f2659c17520a0814d3cea3f52c5805c (
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
|
//
// Author: Ian Reinhart Geiser <geiseri@kde.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef POSVIEWIMP_H
#define POSVIEWIMP_H
#include "posviewbase.h"
namespace KJSEmbed {
class KJSEmbedPart;
};
class POSViewImp: public POSViewBase {
Q_OBJECT
public:
POSViewImp( TQWidget *parent = 0, const char *name = 0 );
public slots:
void loadScript();
private:
KJSEmbed::KJSEmbedPart *m_part;
};
#endif
|