/* * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * Copyright (C) 2004 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. * */ #ifndef HTML_OBJECTIMPL_H #define HTML_OBJECTIMPL_H #include "html_imageimpl.h" #include "xml/dom_stringimpl.h" #include "java/kjavaappletcontext.h" #include #if APPLE_CHANGES #include #endif class KHTMLView; // ------------------------------------------------------------------------- namespace DOM { class HTMLFormElementImpl; class DOMStringImpl; class HTMLAppletElementImpl : public HTMLElementImpl { public: HTMLAppletElementImpl(DocumentPtr *doc); ~HTMLAppletElementImpl(); virtual Id id() const; virtual bool mapToEntry(NodeImpl::Id attr, MappedAttributeEntry& result) const; virtual void parseHTMLAttribute(HTMLAttributeImpl *token); virtual bool rendererIsNeeded(khtml::RenderStyle *); virtual khtml::RenderObject *createRenderer(RenderArena *, khtml::RenderStyle *); virtual void closeRenderer(); bool getMember(const QString &, JType &, QString &); bool callMember(const QString &, const QStringList &, JType &, QString &); #if APPLE_CHANGES virtual bool allParamsAvailable(); void setupApplet() const; KJS::Bindings::Instance *getAppletInstance() const; #endif protected: khtml::VAlign valign; private: #if APPLE_CHANGES mutable KJS::Bindings::Instance *appletInstance; bool m_allParamsAvailable; #endif }; // ------------------------------------------------------------------------- class HTMLEmbedElementImpl : public HTMLElementImpl { public: HTMLEmbedElementImpl(DocumentPtr *doc); ~HTMLEmbedElementImpl(); virtual Id id() const; virtual bool mapToEntry(NodeImpl::Id attr, MappedAttributeEntry& result) const; virtual void parseHTMLAttribute(HTMLAttributeImpl *attr); virtual void attach(); virtual bool rendererIsNeeded(khtml::RenderStyle *); virtual khtml::RenderObject *createRenderer(RenderArena *, khtml::RenderStyle *); virtual bool isURLAttribute(AttributeImpl *attr) const; #if APPLE_CHANGES KJS::Bindings::Instance *getEmbedInstance() const; #endif QString url; QString pluginPage; QString serviceType; #if APPLE_CHANGES private: mutable KJS::Bindings::Instance *embedInstance; #endif }; // ------------------------------------------------------------------------- class HTMLObjectElementImpl : public HTMLElementImpl { public: HTMLObjectElementImpl(DocumentPtr *doc); ~HTMLObjectElementImpl(); virtual Id id() const; HTMLFormElementImpl *form() const; virtual bool mapToEntry(NodeImpl::Id attr, MappedAttributeEntry& result) const; virtual void parseHTMLAttribute(HTMLAttributeImpl *token); virtual void attach(); virtual bool rendererIsNeeded(khtml::RenderStyle *); virtual khtml::RenderObject *createRenderer(RenderArena *, khtml::RenderStyle *); virtual void detach(); virtual void recalcStyle(StyleChange ch); virtual void childrenChanged(); DocumentImpl* contentDocument() const; virtual bool isURLAttribute(AttributeImpl *attr) const; bool isImageType(); void renderFallbackContent(); #if APPLE_CHANGES KJS::Bindings::Instance *getObjectInstance() const; #endif QString serviceType; QString url; QString classId; bool needWidgetUpdate : 1; bool m_useFallbackContent : 1; HTMLImageLoader* m_imageLoader; #if APPLE_CHANGES private: mutable KJS::Bindings::Instance *objectInstance; #endif }; // ------------------------------------------------------------------------- class HTMLParamElementImpl : public HTMLElementImpl { friend class HTMLAppletElementImpl; public: HTMLParamElementImpl(DocumentPtr *doc); ~HTMLParamElementImpl(); virtual Id id() const; virtual void parseHTMLAttribute(HTMLAttributeImpl *token); QString name() const { return m_name.string(); } QString value() const { return m_value.string(); } virtual bool isURLAttribute(AttributeImpl *attr) const; protected: AtomicString m_name; AtomicString m_value; }; }; #endif