// // Author: Ian Reinhart Geiser , (C) 2004 // // Copyright: See COPYING file that comes with this distribution // // #include "posviewimp.h" #include #include #include #include #include #include POSViewImp::POSViewImp(TQWidget *parent, const char *name) :POSViewBase(parent, name) { m_part = new KJSEmbed::KJSEmbedPart(0, "kjsembed_part", this,"JSEmbed"); m_part->addObject(appFrame, "appFrame"); loadScript(); } void POSViewImp::loadScript() { m_part->runFile("test.js", m_part->globalObject() ); }