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.
27 lines
466 B
27 lines
466 B
//
|
|
// 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
|