OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2009 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 are | |
6 * met: | |
7 * | |
8 * * Redistributions of source code must retain the above copyright | |
9 * notice, this list of conditions and the following disclaimer. | |
10 * * Redistributions in binary form must reproduce the above | |
11 * copyright notice, this list of conditions and the following disclaimer | |
12 * in the documentation and/or other materials provided with the | |
13 * distribution. | |
14 * * Neither the name of Google Inc. nor the names of its | |
15 * contributors may be used to endorse or promote products derived from | |
16 * this software without specific prior written permission. | |
17 * | |
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
29 */ | |
30 | |
31 #ifndef SKY_ENGINE_PUBLIC_WEB_WEBSETTINGS_H_ | |
32 #define SKY_ENGINE_PUBLIC_WEB_WEBSETTINGS_H_ | |
33 | |
34 #include <unicode/uscript.h> | |
35 #include "../platform/WebCommon.h" | |
36 #include "../platform/WebSize.h" | |
37 | |
38 namespace blink { | |
39 | |
40 class WebString; | |
41 class WebURL; | |
42 | |
43 // WebSettings is owned by the WebView and allows code to modify the settings fo
r | |
44 // the WebView's page without any knowledge of WebCore itself. For the most par
t, | |
45 // these functions have a 1:1 mapping with the methods in WebCore/page/Settings.
h. | |
46 class WebSettings { | |
47 public: | |
48 enum EditingBehavior { | |
49 EditingBehaviorMac, | |
50 EditingBehaviorWin, | |
51 EditingBehaviorUnix, | |
52 EditingBehaviorAndroid | |
53 }; | |
54 | |
55 enum V8CacheOptions { | |
56 V8CacheOptionsOff, | |
57 V8CacheOptionsParse, | |
58 V8CacheOptionsCode | |
59 }; | |
60 | |
61 // Bit field values to tell Blink what kind of pointer/hover types are | |
62 // available on the system. These must match the enums in | |
63 // core/css/PointerProperties.h and their equality is compile-time asserted | |
64 // in WebSettingsImpl.cpp. | |
65 enum PointerType { | |
66 PointerTypeNone = 1, | |
67 PointerTypeCoarse = 2, | |
68 PointerTypeFine = 4 | |
69 }; | |
70 | |
71 enum HoverType { | |
72 HoverTypeNone = 1, | |
73 // Indicates that the primary pointing system can hover, but it requires | |
74 // a significant action on the user’s part. e.g. hover on “long press”. | |
75 HoverTypeOnDemand = 2, | |
76 HoverTypeHover = 4 | |
77 }; | |
78 | |
79 virtual bool mainFrameResizesAreOrientationChanges() const = 0; | |
80 virtual int availablePointerTypes() const = 0; | |
81 virtual PointerType primaryPointerType() const = 0; | |
82 virtual int availableHoverTypes() const = 0; | |
83 virtual HoverType primaryHoverType() const = 0; | |
84 virtual bool shrinksViewportContentToFit() const = 0; | |
85 virtual void setAccelerated2dCanvasEnabled(bool) = 0; | |
86 virtual void setAccelerated2dCanvasMSAASampleCount(int) = 0; | |
87 // If set to true, allows frames with an https origin to display passive | |
88 // contents at an insecure URL. Otherwise, disallows it. The | |
89 // FrameLoaderClient set to the frame may override the value set by this | |
90 // method. | |
91 virtual void setAntialiased2dCanvasEnabled(bool) = 0; | |
92 virtual void setAsynchronousSpellCheckingEnabled(bool) = 0; | |
93 virtual void setContainerCullingEnabled(bool) = 0; | |
94 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) = 0; | |
95 virtual void setDOMPasteAllowed(bool) = 0; | |
96 virtual void setDefaultFixedFontSize(int) = 0; | |
97 virtual void setDefaultFontSize(int) = 0; | |
98 virtual void setDefaultTextEncodingName(const WebString&) = 0; | |
99 virtual void setDefaultVideoPosterURL(const WebString&) = 0; | |
100 void setDeferred2dCanvasEnabled(bool) { } // temporary stub | |
101 virtual void setDeferredImageDecodingEnabled(bool) = 0; | |
102 virtual void setDeviceSupportsMouse(bool) = 0; | |
103 virtual void setDeviceSupportsTouch(bool) = 0; | |
104 virtual void setDownloadableBinaryFontsEnabled(bool) = 0; | |
105 virtual void setExperimentalWebGLEnabled(bool) = 0; | |
106 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) = 0; | |
107 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) = 0; | |
108 virtual void setForceZeroLayoutHeight(bool) = 0; | |
109 virtual void setImagesEnabled(bool) = 0; | |
110 virtual void setJavaScriptCanAccessClipboard(bool) = 0; | |
111 virtual void setLoadsImagesAutomatically(bool) = 0; | |
112 virtual void setLoadWithOverviewMode(bool) = 0; | |
113 virtual void setMainFrameClipsContent(bool) = 0; | |
114 virtual void setMainFrameResizesAreOrientationChanges(bool) = 0; | |
115 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) = 0; | |
116 virtual void setMinimumAccelerated2dCanvasSize(int) = 0; | |
117 virtual void setOpenGLMultisamplingEnabled(bool) = 0; | |
118 virtual void setPerTilePaintingEnabled(bool) = 0; | |
119 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT
_COMMON) = 0; | |
120 virtual void setAvailablePointerTypes(int) = 0; | |
121 virtual void setPrimaryPointerType(PointerType) = 0; | |
122 virtual void setAvailableHoverTypes(int) = 0; | |
123 virtual void setPrimaryHoverType(HoverType) = 0; | |
124 virtual void setRenderVSyncNotificationEnabled(bool) = 0; | |
125 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON) = 0; | |
126 virtual void setSelectionIncludesAltImageText(bool) = 0; | |
127 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) = 0; | |
128 virtual void setShouldClearDocumentBackground(bool) = 0; | |
129 virtual void setShouldRespectImageOrientation(bool) = 0; | |
130 virtual void setShowPaintRects(bool) = 0; | |
131 virtual void setShrinksViewportContentToFit(bool) = 0; | |
132 virtual void setSmartInsertDeleteEnabled(bool) = 0; | |
133 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON) = 0; | |
134 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; | |
135 virtual void setTouchEditingEnabled(bool) = 0; | |
136 virtual void setUnifiedTextCheckerEnabled(bool) = 0; | |
137 virtual void setUseWideViewport(bool) = 0; | |
138 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0; | |
139 | |
140 protected: | |
141 ~WebSettings() { } | |
142 }; | |
143 | |
144 } // namespace blink | |
145 | |
146 #endif // SKY_ENGINE_PUBLIC_WEB_WEBSETTINGS_H_ | |
OLD | NEW |