summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLAppletElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLAppletElement.h')
-rw-r--r--WebCore/html/HTMLAppletElement.h35
1 files changed, 9 insertions, 26 deletions
diff --git a/WebCore/html/HTMLAppletElement.h b/WebCore/html/HTMLAppletElement.h
index 26d8126..c616bb4 100644
--- a/WebCore/html/HTMLAppletElement.h
+++ b/WebCore/html/HTMLAppletElement.h
@@ -1,7 +1,7 @@
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
- * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2006, 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
@@ -30,12 +30,17 @@ namespace WebCore {
class HTMLFormElement;
class HTMLImageLoader;
-class HTMLAppletElement : public HTMLPlugInElement
-{
+class HTMLAppletElement : public HTMLPlugInElement {
public:
HTMLAppletElement(const QualifiedName&, Document*);
- ~HTMLAppletElement();
+ String hspace() const;
+ void setHspace(const String&);
+
+ String vspace() const;
+ void setVspace(const String&);
+
+private:
virtual int tagPriority() const { return 1; }
virtual void parseMappedAttribute(MappedAttribute*);
@@ -46,33 +51,11 @@ public:
virtual RenderWidget* renderWidgetForJSBindings() const;
- String alt() const;
- void setAlt(const String&);
-
- String archive() const;
- void setArchive(const String&);
-
- String code() const;
- void setCode(const String&);
-
- String codeBase() const;
- void setCodeBase(const String&);
-
- String hspace() const;
- void setHspace(const String&);
-
- String object() const;
- void setObject(const String&);
-
- String vspace() const;
- void setVspace(const String&);
-
void setupApplet() const;
virtual void insertedIntoDocument();
virtual void removedFromDocument();
-private:
AtomicString m_id;
};