blob: f8407be4076ca6dc9755d3a0d26fe4ad8cf693f6 [file] [log] [blame]
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
*
* 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef HTMLObjectElement_h
#define HTMLObjectElement_h
#include "FormAssociatedElement.h"
#include "HTMLPlugInImageElement.h"
namespace WebCore {
class HTMLFormElement;
class HTMLObjectElement final : public HTMLPlugInImageElement, public FormAssociatedElement {
public:
static Ref<HTMLObjectElement> create(const QualifiedName&, Document&, HTMLFormElement*, bool createdByParser);
virtual ~HTMLObjectElement();
bool isDocNamedItem() const { return m_docNamedItem; }
bool containsJavaApplet() const;
bool hasFallbackContent() const;
bool useFallbackContent() const override { return m_useFallbackContent; }
void renderFallbackContent();
bool willValidate() const override { return false; }
// Implementation of constraint validation API.
// Note that the object elements are always barred from constraint validation.
static bool checkValidity() { return true; }
void setCustomValidity(const String&) override { }
String validationMessage() const override { return String(); }
using HTMLPlugInImageElement::ref;
using HTMLPlugInImageElement::deref;
using FormAssociatedElement::form;
private:
HTMLObjectElement(const QualifiedName&, Document&, HTMLFormElement*, bool createdByParser);
void parseAttribute(const QualifiedName&, const AtomicString&) override;
bool isPresentationAttribute(const QualifiedName&) const override;
void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStyleProperties&) override;
InsertionNotificationRequest insertedInto(ContainerNode&) override;
void finishedInsertingSubtree() final;
void removedFrom(ContainerNode&) override;
void didMoveToNewDocument(Document* oldDocument) override;
void childrenChanged(const ChildChange&) override;
bool isURLAttribute(const Attribute&) const override;
const AtomicString& imageSourceURL() const override;
RenderWidget* renderWidgetLoadingPlugin() const override;
void addSubresourceAttributeURLs(ListHashSet<URL>&) const override;
void updateWidget(PluginCreationOption) override;
void updateDocNamedItem();
// FIXME: This function should not deal with url or serviceType
// so that we can better share code between <object> and <embed>.
void parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType);
bool shouldAllowQuickTimeClassIdQuirk();
bool hasValidClassId();
void clearUseFallbackContent() { m_useFallbackContent = false; }
void refFormAssociatedElement() override { ref(); }
void derefFormAssociatedElement() override { deref(); }
HTMLFormElement* virtualForm() const override;
FormNamedItem* asFormNamedItem() override { return this; }
HTMLObjectElement& asHTMLElement() override { return *this; }
const HTMLObjectElement& asHTMLElement() const override { return *this; }
bool isFormControlElement() const override { return false; }
bool isEnumeratable() const override { return true; }
bool appendFormData(FormDataList&, bool) override;
bool canContainRangeEndPoint() const override;
bool m_docNamedItem : 1;
bool m_useFallbackContent : 1;
};
}
#endif