blob: 061e4b2315c1898a8bcbba35c1a60e2c33d78fde [file] [log] [blame]
Torne (Richard Coles)5267f702013-06-11 10:57:24 +01001/*
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 WebSettings_h
32#define WebSettings_h
33
34#include "../platform/WebCommon.h"
35#include "../platform/WebSize.h"
36#include <unicode/uscript.h>
37
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000038namespace blink {
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010039
40class WebString;
41class WebURL;
42
43// WebSettings is owned by the WebView and allows code to modify the settings for
44// the WebView's page without any knowledge of WebCore itself. For the most part,
45// these functions have a 1:1 mapping with the methods in WebCore/page/Settings.h.
46class WebSettings {
47public:
48 enum EditingBehavior {
49 EditingBehaviorMac,
50 EditingBehaviorWin,
51 EditingBehaviorUnix,
52 EditingBehaviorAndroid
53 };
54
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000055 virtual bool mainFrameResizesAreOrientationChanges() const = 0;
Ben Murdochaafa69c2014-04-03 12:30:15 +010056 virtual bool shrinksViewportContentToFit() const = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010057 virtual bool scrollAnimatorEnabled() const = 0;
58 virtual bool touchEditingEnabled() const = 0;
59 virtual bool viewportEnabled() const = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000060 virtual bool viewportMetaEnabled() const = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010061 virtual void setAccelerated2dCanvasEnabled(bool) = 0;
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000062 virtual void setAccelerated2dCanvasMSAASampleCount(int) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010063 virtual void setAcceleratedCompositingEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010064 virtual void setAcceleratedCompositingForCanvasEnabled(bool) = 0;
Ben Murdoch591b9582013-07-10 11:41:44 +010065 virtual void setAcceleratedCompositingForFiltersEnabled(bool) = 0;
Ben Murdoche69819b2013-07-17 14:56:49 +010066 virtual void setAcceleratedCompositingForFixedPositionEnabled(bool) = 0;
67 virtual void setAcceleratedCompositingForFixedRootBackgroundEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010068 virtual void setAcceleratedCompositingForOverflowScrollEnabled(bool) = 0;
Torne (Richard Coles)c0e19a62013-08-30 15:15:11 +010069 virtual void setCompositorDrivenAcceleratedScrollingEnabled(bool) = 0;
Ben Murdoch07a852d2014-03-31 11:51:52 +010070 // Not implemented yet, see http://crbug.com/178119
71 virtual void setAcceleratedCompositingForTransitionEnabled(bool) { };
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010072 virtual void setAcceleratedCompositingForVideoEnabled(bool) = 0;
Bo Liuf91f5fa2014-05-01 10:37:55 -070073 // If set to true, allows frames with an https origin to display passive
74 // contents at an insecure URL. Otherwise, disallows it. The
75 // FrameLoaderClient set to the frame may override the value set by this
76 // method.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010077 virtual void setAllowDisplayOfInsecureContent(bool) = 0;
78 virtual void setAllowFileAccessFromFileURLs(bool) = 0;
79 virtual void setAllowCustomScrollbarInMainFrame(bool) = 0;
Bo Liuf91f5fa2014-05-01 10:37:55 -070080 // If set to true, allows frames with an https origin to run active
81 // contents at an insecure URL. This includes WebSockets. Otherwise,
82 // disallows it. The FrameLoaderClient set to the frame may override the
83 // value set by this method.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010084 virtual void setAllowRunningOfInsecureContent(bool) = 0;
Bo Liuf91f5fa2014-05-01 10:37:55 -070085 // If set to true, allows frames with an https origin to connect WebSockets
86 // with an insecure URL (ws://). Otherwise, disallows it. Only when this is
87 // set to true, this value overrides the value set by
88 // setAllowRunningOfInsecureContent() for WebSockets. The FrameLoaderClient
89 // set to the frame may override the value set by this method.
90 virtual void setAllowConnectingInsecureWebSocket(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010091 virtual void setAllowScriptsToCloseWindows(bool) = 0;
92 virtual void setAllowUniversalAccessFromFileURLs(bool) = 0;
93 virtual void setAntialiased2dCanvasEnabled(bool) = 0;
94 virtual void setAsynchronousSpellCheckingEnabled(bool) = 0;
95 virtual void setAutoZoomFocusedNodeToLegibleScale(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010096 virtual void setCaretBrowsingEnabled(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000097 virtual void setClobberUserAgentInitialScaleQuirk(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010098 virtual void setCompositedScrollingForFramesEnabled(bool) = 0;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010099 virtual void setCompositorTouchHitTesting(bool) = 0;
Ben Murdoch07a852d2014-03-31 11:51:52 +0100100 virtual void setContainerCullingEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100101 virtual void setCookieEnabled(bool) = 0;
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +0000102 virtual void setNavigateOnDragDrop(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100103 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
104 virtual void setDNSPrefetchingEnabled(bool) = 0;
105 virtual void setDOMPasteAllowed(bool) = 0;
106 virtual void setDefaultFixedFontSize(int) = 0;
107 virtual void setDefaultFontSize(int) = 0;
108 virtual void setDefaultTextEncodingName(const WebString&) = 0;
109 virtual void setDefaultVideoPosterURL(const WebString&) = 0;
Ben Murdoch197021e2014-07-20 18:26:29 -0700110 virtual void setDisallowFullscreenForNonMediaElements(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100111 void setDeferred2dCanvasEnabled(bool) { } // temporary stub
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000112 virtual void setDeferredFiltersEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100113 virtual void setDeferredImageDecodingEnabled(bool) = 0;
Torne (Richard Coles)19cde672013-11-06 12:28:04 +0000114 virtual void setDeviceScaleAdjustment(float) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100115 virtual void setDeviceSupportsMouse(bool) = 0;
116 virtual void setDeviceSupportsTouch(bool) = 0;
117 virtual void setDoubleTapToZoomEnabled(bool) = 0;
118 virtual void setDownloadableBinaryFontsEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100119 virtual void setEditingBehavior(EditingBehavior) = 0;
120 virtual void setEnableScrollAnimator(bool) = 0;
121 virtual void setEnableTouchAdjustment(bool) = 0;
Torne (Richard Coles)521d96e2013-06-19 11:58:24 +0100122 virtual void setRegionBasedColumnsEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100123 virtual void setExperimentalWebGLEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100124 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
125 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100126 virtual void setGestureTapHighlightEnabled(bool) = 0;
127 virtual void setHyperlinkAuditingEnabled(bool) = 0;
Torne (Richard Coles)06f816c2013-09-26 13:25:12 +0100128 virtual void setIgnoreMainFrameOverflowHiddenQuirk(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100129 virtual void setImagesEnabled(bool) = 0;
130 virtual void setJavaEnabled(bool) = 0;
131 virtual void setJavaScriptCanAccessClipboard(bool) = 0;
132 virtual void setJavaScriptCanOpenWindowsAutomatically(bool) = 0;
133 virtual void setJavaScriptEnabled(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000134 virtual void setLayerSquashingEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100135 virtual void setLoadsImagesAutomatically(bool) = 0;
136 virtual void setLoadWithOverviewMode(bool) = 0;
137 virtual void setLocalStorageEnabled(bool) = 0;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100138 virtual void setMainFrameClipsContent(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000139 virtual void setMainFrameResizesAreOrientationChanges(bool) = 0;
Torne (Richard Coles)bfe35902013-10-22 16:41:51 +0100140 virtual void setMaxTouchPoints(int) = 0;
Bo Liuf91f5fa2014-05-01 10:37:55 -0700141 virtual void setMediaControlsOverlayPlayButtonEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100142 virtual void setMediaPlaybackRequiresUserGesture(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100143 virtual void setMinimumAccelerated2dCanvasSize(int) = 0;
144 virtual void setMinimumFontSize(int) = 0;
145 virtual void setMinimumLogicalFontSize(int) = 0;
146 virtual void setMockScrollbarsEnabled(bool) = 0;
147 virtual void setNeedsSiteSpecificQuirks(bool) = 0;
148 virtual void setOfflineWebApplicationCacheEnabled(bool) = 0;
149 virtual void setOpenGLMultisamplingEnabled(bool) = 0;
150 virtual void setPasswordEchoDurationInSeconds(double) = 0;
151 virtual void setPasswordEchoEnabled(bool) = 0;
152 virtual void setPerTilePaintingEnabled(bool) = 0;
153 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
Ben Murdoch591b9582013-07-10 11:41:44 +0100154 virtual void setPinchOverlayScrollbarThickness(int) = 0;
155 virtual void setPinchVirtualViewportEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100156 virtual void setPluginsEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100157 virtual void setRenderVSyncNotificationEnabled(bool) = 0;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100158 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100159 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
160 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0;
161 virtual void setSelectionIncludesAltImageText(bool) = 0;
162 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
163 virtual void setShouldPrintBackgrounds(bool) = 0;
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000164 virtual void setShouldClearDocumentBackground(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100165 virtual void setShouldRespectImageOrientation(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100166 virtual void setShowFPSCounter(bool) = 0;
167 virtual void setShowPaintRects(bool) = 0;
168 virtual void setShrinksStandaloneImagesToFit(bool) = 0;
Ben Murdochaafa69c2014-04-03 12:30:15 +0100169 virtual void setShrinksViewportContentToFit(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100170 virtual void setSmartInsertDeleteEnabled(bool) = 0;
Ben Murdoch591b9582013-07-10 11:41:44 +0100171 // Spatial navigation feature, when enabled, improves the experience
172 // of keyboard-controlling the web pages which originally were not designed
173 // for keyboard navigation. It allows to use arrow keys to move focus between
174 // the adjacent HTML elements. As a side effect, it extends the criteria for
175 // elements to be focusable to include any element which has click or keyboard
176 // event handlers specified. User can also trigger click handlers for such
177 // elements using SPACE or ENTER keys.
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100178 virtual void setSpatialNavigationEnabled(bool) = 0;
179 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) = 0;
180 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0;
181 virtual void setSupportsMultipleWindows(bool) = 0;
182 virtual void setSyncXHRInDocumentsEnabled(bool) = 0;
183 virtual void setTextAreasAreResizable(bool) = 0;
184 virtual void setTextAutosizingEnabled(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000185 virtual void setAccessibilityFontScaleFactor(float) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100186 virtual void setTouchDragDropEnabled(bool) = 0;
187 virtual void setTouchEditingEnabled(bool) = 0;
188 virtual void setUnifiedTextCheckerEnabled(bool) = 0;
189 virtual void setUnsafePluginPastingEnabled(bool) = 0;
Torne (Richard Coles)5d92fed2014-06-20 14:52:37 +0100190 virtual void setUseExpandedHeuristicsForGpuRasterization(bool) = 0;
Torne (Richard Coles)c0e19a62013-08-30 15:15:11 +0100191 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) = 0;
192 virtual void setUseSolidColorScrollbars(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100193 virtual void setUseWideViewport(bool) = 0;
Bo Liuf91f5fa2014-05-01 10:37:55 -0700194 virtual void setUsesEncodingDetector(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100195 virtual void setValidationMessageTimerMagnification(int) = 0;
196 virtual void setViewportEnabled(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000197 virtual void setViewportMetaEnabled(bool) = 0;
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100198 virtual void setViewportMetaLayoutSizeQuirk(bool) = 0;
Torne (Richard Coles)bfe35902013-10-22 16:41:51 +0100199 virtual void setViewportMetaMergeContentQuirk(bool) = 0;
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000200 virtual void setViewportMetaNonUserScalableQuirk(bool) = 0;
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100201 virtual void setViewportMetaZeroValuesQuirk(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100202 virtual void setWebAudioEnabled(bool) = 0;
203 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0;
204 virtual void setWebSecurityEnabled(bool) = 0;
Torne (Richard Coles)8abfc582013-09-12 12:10:38 +0100205 virtual void setWideViewportQuirkEnabled(bool) = 0;
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100206 virtual void setXSSAuditorEnabled(bool) = 0;
207
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100208protected:
209 ~WebSettings() { }
210};
211
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000212} // namespace blink
Torne (Richard Coles)5267f702013-06-11 10:57:24 +0100213
214#endif