/** * This file is part of the HTML widget for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * Copyright (C) 2003 Apple Computer, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #include #include #include #include "rendering/render_applet.h" #include "rendering/render_canvas.h" #include "xml/dom_docimpl.h" #include "khtmlview.h" #include "khtml_part.h" #include #ifndef Q_WS_QWS // We don't have Java in Qt Embedded #include "java/kjavaappletwidget.h" #include "misc/htmltags.h" #include "html/html_objectimpl.h" using namespace khtml; using namespace DOM; RenderApplet::RenderApplet(HTMLElementImpl *applet, const QMap &args ) : RenderWidget(applet) { // init RenderObject attributes setInline(true); KJavaAppletContext *context = 0; KHTMLView *_view = applet->getDocument()->view(); if ( _view ) { KHTMLPart *part = _view->part(); context = part->createJavaContext(); } if ( context ) { //kdDebug(6100) << "RenderApplet::RenderApplet, setting QWidget" << endl; setQWidget( new KJavaAppletWidget(context, _view->viewport()) ); processArguments(args); } } RenderApplet::~RenderApplet() { } short RenderApplet::intrinsicWidth() const { int rval = 150; if( m_widget ) rval = ((KJavaAppletWidget*)(m_widget))->sizeHint().width(); return rval > 10 ? rval : 50; } int RenderApplet::intrinsicHeight() const { int rval = 150; if( m_widget ) rval = m_widget->sizeHint().height(); return rval > 10 ? rval : 50; } void RenderApplet::layout() { //kdDebug(6100) << "RenderApplet::layout" << endl; KHTMLAssert( needsLayout() ); KHTMLAssert( minMaxKnown() ); calcWidth(); calcHeight(); KJavaAppletWidget *tmp = static_cast(m_widget); if ( tmp ) { NodeImpl *child = element()->firstChild(); while(child) { if(child->id() == ID_PARAM) { HTMLParamElementImpl *p = static_cast(child); if(tmp->applet()) tmp->applet()->setParameter( p->name(), p->value()); } child = child->nextSibling(); } //kdDebug(6100) << "setting applet widget to size: " << m_width << ", " << m_height << endl; m_widget->resize(m_width-marginLeft()-marginRight()-paddingLeft()-paddingRight(), m_height-marginTop()-marginBottom()-paddingTop()-paddingBottom()); #if APPLE_CHANGES // showApplet creates the java view if it hasn't already been created. // When doing this, it replaces the widget's view with the newly created java view. // Since this replacement doesn't actually occur until the widget gets its first paint, // showApplet adds itself to the main view so that applets start even when not visible. // We have to do this move so the widget knows where to place itself when adding itself. m_widget->move(xPos(), yPos()); #endif tmp->showApplet(); } setNeedsLayout(false); } void RenderApplet::processArguments(const QMap &args) { KJavaAppletWidget *w = static_cast(m_widget); KJavaApplet* applet = w ? w->applet() : 0; #if APPLE_CHANGES if (w) w->processArguments(args); #endif if ( applet ) { applet->setBaseURL( args[QString::fromLatin1("baseURL") ] ); applet->setAppletClass( args[QString::fromLatin1("code") ] ); QString str = args[QString::fromLatin1("codeBase") ]; if( !str.isEmpty() ) applet->setCodeBase( str ); str = args[QString::fromLatin1("name") ]; if( !str.isNull() ) applet->setAppletName( str ); else applet->setAppletName( args[QString::fromLatin1("code") ] ); str = args[QString::fromLatin1("archive") ]; if( !str.isEmpty() ) applet->setArchives( args[QString::fromLatin1("archive") ] ); } } RenderEmptyApplet::RenderEmptyApplet(DOM::NodeImpl* node) : RenderWidget(node) { // init RenderObject attributes setInline(true); #if APPLE_CHANGES // FIXME: Figure out how to handle this. #else QLabel* label = new QLabel(i18n("Java Applet is not loaded. (Java interpreter disabled)"), node->getDocument()->view()->viewport()); label->setAlignment( Qt::AlignCenter | Qt::WordBreak ); setQWidget(label); #endif } short RenderEmptyApplet::intrinsicWidth() const { return (m_widget ? m_widget->sizeHint().width() : 150); } int RenderEmptyApplet::intrinsicHeight() const { return (m_widget ? m_widget->sizeHint().height() : 150); } void RenderEmptyApplet::layout() { KHTMLAssert( needsLayout() ); KHTMLAssert( minMaxKnown() ); calcWidth(); calcHeight(); if(m_widget) { //kdDebug(6100) << "RenderEmptyApplet::layout, m_width = " << m_width << ", m_height = " << m_height << endl; m_widget->resize(m_width-marginLeft()-marginRight()-paddingLeft()-paddingRight(), m_height-marginTop()-marginBottom()-paddingTop()-paddingBottom()); } setNeedsLayout(false); } #endif