~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/rendering/RenderEmbeddedObject.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
 
3
 *           (C) 2000 Simon Hausmann <hausmann@kde.org>
 
4
 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010, 2012 Apple Inc. All rights reserved.
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Library General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Library General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Library General Public License
 
17
 * along with this library; see the file COPYING.LIB.  If not, write to
 
18
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
19
 * Boston, MA 02110-1301, USA.
 
20
 *
 
21
 */
 
22
 
 
23
#ifndef RenderEmbeddedObject_h
 
24
#define RenderEmbeddedObject_h
 
25
 
 
26
#include "RenderPart.h"
 
27
 
 
28
namespace WebCore {
 
29
 
 
30
class MouseEvent;
 
31
class TextRun;
 
32
 
 
33
// Renderer for embeds and objects, often, but not always, rendered via plug-ins.
 
34
// For example, <embed src="foo.html"> does not invoke a plug-in.
 
35
class RenderEmbeddedObject : public RenderPart {
 
36
public:
 
37
    RenderEmbeddedObject(Element*);
 
38
    virtual ~RenderEmbeddedObject();
 
39
 
 
40
    enum PluginUnavailabilityReason {
 
41
        PluginMissing,
 
42
        PluginCrashed,
 
43
        PluginBlockedByContentSecurityPolicy,
 
44
        InsecurePluginVersion,
 
45
        PluginInactive,
 
46
    };
 
47
    void setPluginUnavailabilityReason(PluginUnavailabilityReason);
 
48
    bool showsUnavailablePluginIndicator() const;
 
49
 
 
50
    // FIXME: This belongs on HTMLObjectElement.
 
51
    bool hasFallbackContent() const { return m_hasFallbackContent; }
 
52
    void setHasFallbackContent(bool hasFallbackContent) { m_hasFallbackContent = hasFallbackContent; }
 
53
 
 
54
    void handleUnavailablePluginIndicatorEvent(Event*);
 
55
 
 
56
#if USE(ACCELERATED_COMPOSITING)
 
57
    virtual bool allowsAcceleratedCompositing() const;
 
58
#endif
 
59
 
 
60
protected:
 
61
    virtual void paintReplaced(PaintInfo&, const LayoutPoint&);
 
62
    virtual void paint(PaintInfo&, const LayoutPoint&);
 
63
 
 
64
    virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
 
65
 
 
66
#if ENABLE(PLUGIN_PROXY_FOR_VIDEO)
 
67
    const RenderObjectChildList* children() const { return &m_children; }
 
68
    RenderObjectChildList* children() { return &m_children; }
 
69
#endif
 
70
 
 
71
protected:
 
72
    virtual void layout() OVERRIDE;
 
73
 
 
74
private:
 
75
    virtual const char* renderName() const { return "RenderEmbeddedObject"; }
 
76
    virtual bool isEmbeddedObject() const { return true; }
 
77
 
 
78
#if USE(ACCELERATED_COMPOSITING)
 
79
    virtual bool requiresLayer() const;
 
80
#endif
 
81
 
 
82
    virtual void viewCleared();
 
83
 
 
84
    virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE;
 
85
 
 
86
    virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier, Node** stopNode);
 
87
    virtual bool logicalScroll(ScrollLogicalDirection, ScrollGranularity, float multiplier, Node** stopNode);
 
88
 
 
89
    void setUnavailablePluginIndicatorIsPressed(bool);
 
90
    bool isInUnavailablePluginIndicator(MouseEvent*) const;
 
91
    bool isInUnavailablePluginIndicator(const LayoutPoint&) const;
 
92
    bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
 
93
 
 
94
#if ENABLE(PLUGIN_PROXY_FOR_VIDEO)
 
95
    virtual bool canHaveChildren() const { return node() && toElement(node())->isMediaElement(); }
 
96
    virtual RenderObjectChildList* virtualChildren() { return children(); }
 
97
    virtual const RenderObjectChildList* virtualChildren() const { return children(); }
 
98
#endif
 
99
 
 
100
    bool m_hasFallbackContent; // FIXME: This belongs on HTMLObjectElement.
 
101
 
 
102
    bool m_showsUnavailablePluginIndicator;
 
103
    PluginUnavailabilityReason m_pluginUnavailabilityReason;
 
104
    String m_unavailablePluginReplacementText;
 
105
    bool m_unavailablePluginIndicatorIsPressed;
 
106
    bool m_mouseDownWasInUnavailablePluginIndicator;
 
107
#if ENABLE(PLUGIN_PROXY_FOR_VIDEO)
 
108
    RenderObjectChildList m_children;
 
109
#endif
 
110
};
 
111
 
 
112
inline RenderEmbeddedObject* toRenderEmbeddedObject(RenderObject* object)
 
113
{
 
114
    ASSERT(!object || object->isEmbeddedObject());
 
115
    return static_cast<RenderEmbeddedObject*>(object);
 
116
}
 
117
 
 
118
// This will catch anyone doing an unnecessary cast.
 
119
void toRenderEmbeddedObject(const RenderEmbeddedObject*);
 
120
 
 
121
} // namespace WebCore
 
122
 
 
123
#endif // RenderEmbeddedObject_h