tizen beta release
[framework/web/webkit-efl.git] / Source / WebCore / testing / Internals.h
1 /*
2  * Copyright (C) 2011 Google 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  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer.
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef Internals_h
27 #define Internals_h
28
29 #include "PlatformString.h"
30 #include <wtf/PassRefPtr.h>
31 #include <wtf/RefCounted.h>
32 #include <wtf/text/WTFString.h>
33
34 namespace WebCore {
35
36 class ClientRect;
37 class Document;
38 class Element;
39 class Node;
40 class Range;
41
42 typedef int ExceptionCode;
43
44 class Internals : public RefCounted<Internals> {
45 public:
46     static PassRefPtr<Internals> create();
47     virtual ~Internals();
48
49     void reset(Document*);
50
51     String elementRenderTreeAsText(Element*, ExceptionCode&);
52
53     bool isPreloaded(Document*, const String& url);
54
55     Node* ensureShadowRoot(Element* host, ExceptionCode&);
56     Node* shadowRoot(Element* host, ExceptionCode&);
57     void removeShadowRoot(Element* host, ExceptionCode&);
58     Element* includerFor(Node*, ExceptionCode&);
59     String shadowPseudoId(Element*, ExceptionCode&);
60     PassRefPtr<Element> createShadowContentElement(Document*, ExceptionCode&);
61     Element* getElementByIdInShadowRoot(Node* shadowRoot, const String& id, ExceptionCode&);
62
63 #if ENABLE(INPUT_COLOR)
64     void selectColorInColorChooser(Element*, const String& colorValue);
65 #endif
66
67 #if ENABLE(INSPECTOR)
68     void setInspectorResourcesDataSizeLimits(Document*, int maximumResourcesContentSize, int maximumSingleResourceContentSize, ExceptionCode&);
69 #else
70     void setInspectorResourcesDataSizeLimits(Document*, int maximumResourcesContentSize, int maximumSingleResourceContentSize, ExceptionCode&) { }
71 #endif
72
73     PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&);
74
75     unsigned markerCountForNode(Node*, const String&, ExceptionCode&);
76     PassRefPtr<Range> markerRangeForNode(Node*, const String&, unsigned, ExceptionCode&);
77
78     void setForceCompositingMode(Document*, bool enabled, ExceptionCode&);
79     void setEnableCompositingForFixedPosition(Document*, bool enabled, ExceptionCode&);
80     void setEnableCompositingForScrollableFrames(Document*, bool enabled, ExceptionCode&);
81     void setAcceleratedDrawingEnabled(Document*, bool enabled, ExceptionCode&);
82
83     void setEnableScrollAnimator(Document*, bool enabled, ExceptionCode&);
84     void setZoomAnimatorTransform(Document*, float scale, float tx, float ty, ExceptionCode&);
85     float getPageScaleFactor(Document*,  ExceptionCode&);
86     void setZoomParameters(Document*, float scale, float x, float y, ExceptionCode&);
87
88     void setMockScrollbarsEnabled(Document*, bool enabled, ExceptionCode&);
89
90     void setPasswordEchoEnabled(Document*, bool enabled, ExceptionCode&);
91     void setPasswordEchoDurationInSeconds(Document*, double durationInSeconds, ExceptionCode&);
92
93     void setScrollViewPosition(Document*, long x, long y, ExceptionCode&);
94
95     void setPagination(Document*, const String& mode, int gap, ExceptionCode&);
96
97     bool wasLastChangeUserEdit(Element* textField, ExceptionCode&);
98     String suggestedValue(Element* inputElement, ExceptionCode&);
99     void setSuggestedValue(Element* inputElement, const String&, ExceptionCode&);
100     void scrollElementToRect(Element*, long x, long y, long w, long h, ExceptionCode&);
101
102     void paintControlTints(Document*, ExceptionCode&);
103
104     PassRefPtr<Range> rangeFromLocationAndLength(Element* scope, int rangeLocation, int rangeLength, ExceptionCode&);
105     unsigned locationFromRange(Element* scope, const Range*, ExceptionCode&);
106     unsigned lengthFromRange(Element* scope, const Range*, ExceptionCode&);
107
108     void setUnifiedTextCheckingEnabled(Document*, bool, ExceptionCode&);
109     bool unifiedTextCheckingEnabled(Document*, ExceptionCode&);
110
111     static const char* internalsId;
112
113 private:
114     Internals();
115
116     double passwordEchoDurationInSecondsBackup;
117     bool passwordEchoEnabledBackup : 1;
118     bool passwordEchoDurationInSecondsBackedUp : 1;
119     bool passwordEchoEnabledBackedUp : 1;
120 };
121
122 } // namespace WebCore
123
124 #endif