Ignore contiguous composition event.
[framework/web/webkit-efl.git] / Source / WebKit2 / Shared / WebRenderObject.h
1 /*
2  * Copyright (C) 2012 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef WebRenderObject_h
27 #define WebRenderObject_h
28
29 #include "APIObject.h"
30 #include "MutableArray.h"
31 #include <WebCore/IntRect.h>
32 #include <wtf/PassRefPtr.h>
33 #include <wtf/text/WTFString.h>
34
35 namespace WebCore {
36     class RenderObject;
37 }
38
39 namespace WebKit {
40
41 class WebPage;
42
43 class WebRenderObject : public APIObject {
44 public:
45     static const Type APIType = TypeRenderObject;
46
47     static PassRefPtr<WebRenderObject> create(WebPage*);
48     static PassRefPtr<WebRenderObject> create(WebCore::RenderObject* renderer)
49     {
50         return adoptRef(new WebRenderObject(renderer, false));
51     }
52
53     static PassRefPtr<WebRenderObject> create(const String& name, const String& elementTagName, const String& elementID,
54         PassRefPtr<MutableArray> elementClassNames, WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children)
55     {
56         return adoptRef(new WebRenderObject(name, elementTagName, elementID, elementClassNames, absolutePosition, frameRect, children));
57     }
58
59     RefPtr<ImmutableArray> children() const { return m_children; }
60
61     const String& name() const { return m_name; }
62     const String& elementTagName() const { return m_elementTagName; }
63     const String& elementID() const { return m_elementID; }
64     ImmutableArray* elementClassNames() const { return m_elementClassNames.get(); }
65     WebCore::IntPoint absolutePosition() const { return m_absolutePosition; }
66     WebCore::IntRect frameRect() const { return m_frameRect; }
67
68 private:
69     WebRenderObject(WebCore::RenderObject*, bool shouldIncludeDescendants);
70     WebRenderObject(const String& name, const String& elementTagName, const String& elementID, PassRefPtr<MutableArray> elementClassNames,
71         WebCore::IntPoint absolutePosition, WebCore::IntRect frameRect, PassRefPtr<MutableArray> children)
72         : m_children(children)
73         , m_name(name)
74         , m_elementTagName(elementTagName)
75         , m_elementID(elementID)
76         , m_elementClassNames(elementClassNames)
77         , m_absolutePosition(absolutePosition)
78         , m_frameRect(frameRect)
79     {
80     }
81
82     virtual Type type() const OVERRIDE { return APIType; }
83
84     RefPtr<MutableArray> m_children;
85
86     String m_name;
87     String m_elementTagName;
88     String m_elementID;
89     RefPtr<MutableArray> m_elementClassNames;
90     WebCore::IntPoint m_absolutePosition;
91     WebCore::IntRect m_frameRect;
92 };
93
94 } // namespace WebKit
95
96 #endif // WebRenderObject_h