Git init
[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 "ExceptionCode.h"
30 #include "PlatformString.h"
31 #include <wtf/PassRefPtr.h>
32 #include <wtf/RefCounted.h>
33 #include <wtf/text/WTFString.h>
34
35 namespace WebCore {
36
37 class ClientRect;
38 class Document;
39 class Element;
40 class Node;
41 class Range;
42
43 class Internals : public RefCounted<Internals> {
44 public:
45     static PassRefPtr<Internals> create();
46     virtual ~Internals();
47
48     void reset(Document*);
49
50     String elementRenderTreeAsText(Element*, ExceptionCode&);
51
52     bool isPreloaded(Document*, const String& url);
53
54     Node* ensureShadowRoot(Element* host, ExceptionCode&);
55     Node* shadowRoot(Element* host, ExceptionCode&);
56     void removeShadowRoot(Element* host, ExceptionCode&);
57     Element* includerFor(Node*, ExceptionCode&);
58     String shadowPseudoId(Element*, ExceptionCode&);
59     PassRefPtr<Element> createShadowContentElement(Document*, ExceptionCode&);
60     Element* getElementByIdInShadowRoot(Node* shadowRoot, const String& id, ExceptionCode&);
61
62 #if ENABLE(INPUT_COLOR)
63     bool connectColorChooserClient(Element*);
64     void selectColorInColorChooser(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*, ExceptionCode&);
76     PassRefPtr<Range> markerRangeForNode(Node*, unsigned, ExceptionCode&);
77
78     void setForceCompositingMode(Document*, bool enabled, ExceptionCode&);
79
80     void setEnableScrollAnimator(Document*, bool enabled, ExceptionCode&);
81     void setZoomAnimatorTransform(Document*, float scale, float tx, float ty, ExceptionCode&);
82     float getPageScaleFactor(Document*,  ExceptionCode&);
83     void setZoomParameters(Document*, float scale, float x, float y, ExceptionCode&);
84
85     void setPasswordEchoEnabled(Document*, bool enabled, ExceptionCode&);
86     void setPasswordEchoDurationInSeconds(Document*, double durationInSeconds, ExceptionCode&);
87
88     void setScrollViewPosition(Document*, long x, long y, ExceptionCode&);
89
90     bool wasLastChangeUserEdit(Element* textField, ExceptionCode&);
91     String suggestedValue(Element* inputElement, ExceptionCode&);
92     void setSuggestedValue(Element* inputElement, const String&, ExceptionCode&);
93     void scrollElementToRect(Element*, long x, long y, long w, long h, ExceptionCode&);
94
95     static const char* internalsId;
96
97     void paintControlTints(Document*, ExceptionCode&);
98
99 private:
100     Internals();
101
102     double passwordEchoDurationInSecondsBackup;
103     bool passwordEchoEnabledBackup : 1;
104     bool passwordEchoDurationInSecondsBackedUp : 1;
105     bool passwordEchoEnabledBackedUp : 1;
106 };
107
108 } // namespace WebCore
109
110 #endif