Lines Matching refs:Settings
140 #import <WebCore/Settings.h>
633 _private->page->settings()->setLocalStorageDatabasePath([[self preferences] _localStorageDatabasePath]);
668 // Post a notification so the WebCore settings update.
1269 // Update corresponding WebCore Settings object.
1273 Settings* settings = _private->page->settings();
1275 settings->setCursiveFontFamily([preferences cursiveFontFamily]);
1276 settings->setDefaultFixedFontSize([preferences defaultFixedFontSize]);
1277 settings->setDefaultFontSize([preferences defaultFontSize]);
1278 settings->setDefaultTextEncodingName([preferences defaultTextEncodingName]);
1279 settings->setUsesEncodingDetector([preferences usesEncodingDetector]);
1280 settings->setFantasyFontFamily([preferences fantasyFontFamily]);
1281 settings->setFixedFontFamily([preferences fixedFontFamily]);
1282 settings->setForceFTPDirectoryListings([preferences _forceFTPDirectoryListings]);
1283 settings->setFTPDirectoryTemplatePath([preferences _ftpDirectoryTemplatePath]);
1284 settings->setLocalStorageDatabasePath([preferences _localStorageDatabasePath]);
1285 settings->setJavaEnabled([preferences isJavaEnabled]);
1286 settings->setJavaScriptEnabled([preferences isJavaScriptEnabled]);
1287 settings->setWebSecurityEnabled([preferences isWebSecurityEnabled]);
1288 settings->setAllowUniversalAccessFromFileURLs([preferences allowUniversalAccessFromFileURLs]);
1289 settings->setJavaScriptCanOpenWindowsAutomatically([preferences javaScriptCanOpenWindowsAutomatically]);
1290 settings->setMinimumFontSize([preferences minimumFontSize]);
1291 settings->setMinimumLogicalFontSize([preferences minimumLogicalFontSize]);
1292 settings->setPluginsEnabled([preferences arePlugInsEnabled]);
1293 settings->setDatabasesEnabled([preferences databasesEnabled]);
1294 settings->setLocalStorageEnabled([preferences localStorageEnabled]);
1295 settings->setExperimentalNotificationsEnabled([preferences experimentalNotificationsEnabled]);
1296 settings->setPrivateBrowsingEnabled([preferences privateBrowsingEnabled]);
1297 settings->setSansSerifFontFamily([preferences sansSerifFontFamily]);
1298 settings->setSerifFontFamily([preferences serifFontFamily]);
1299 settings->setStandardFontFamily([preferences standardFontFamily]);
1300 settings->setLoadsImagesAutomatically([preferences loadsImagesAutomatically]);
1301 settings->setShouldPrintBackgrounds([preferences shouldPrintBackgrounds]);
1302 settings->setTextAreasAreResizable([preferences textAreasAreResizable]);
1303 settings->setShrinksStandaloneImagesToFit([preferences shrinksStandaloneImagesToFit]);
1304 settings->setEditableLinkBehavior(core([preferences editableLinkBehavior]));
1305 settings->setTextDirectionSubmenuInclusionBehavior(core([preferences textDirectionSubmenuInclusionBehavior]));
1306 settings->setDOMPasteAllowed([preferences isDOMPasteAllowed]);
1307 settings->setUsesPageCache([self usesPageCache]);
1308 settings->setShowsURLsInToolTips([preferences showsURLsInToolTips]);
1309 settings->setDeveloperExtrasEnabled([preferences developerExtrasEnabled]);
1310 settings->setAuthorAndUserStylesEnabled([preferences authorAndUserStylesEnabled]);
1311 settings->setApplicationChromeMode([preferences applicationChromeModeEnabled]);
1316 settings->setUserStyleSheetLocation([NSURL URLWithString:(location ? location : @"")]);
1318 settings->setUserStyleSheetLocation([NSURL URLWithString:@""]);
1319 settings->setNeedsAdobeFrameReloadingQuirk([self _needsAdobeFrameReloadingQuirk]);
1320 settings->setTreatsAnyTextCSSLinkAsStylesheet([self _needsLinkElementTextCSSQuirk]);
1321 settings->setNeedsKeyboardEventDisambiguationQuirks([self _needsKeyboardEventDisambiguationQuirks]);
1322 settings->setNeedsLeopardMailQuirks(runningLeopardMail());
1323 settings->setNeedsTigerMailQuirks(runningTigerMail());
1324 settings->setNeedsSiteSpecificQuirks(_private->useSiteSpecificSpoofing);
1325 settings->setWebArchiveDebugModeEnabled([preferences webArchiveDebugModeEnabled]);
1326 settings->setLocalFileContentSniffingEnabled([preferences localFileContentSniffingEnabled]);
1327 settings->setOfflineWebApplicationCacheEnabled([preferences offlineWebApplicationCacheEnabled]);
1328 settings->setZoomsTextOnly([preferences zoomsTextOnly]);
1329 settings->setXSSAuditorEnabled([preferences isXSSAuditorEnabled]);
1330 settings->setEnforceCSSMIMETypeInStrictMode(!WKAppVersionCheckLessThan(@"com.apple.iWeb", -1, 2.1));
1331 settings->setAcceleratedCompositingEnabled([preferences acceleratedCompositingEnabled]);
1332 settings->setShowDebugBorders([preferences showDebugBorders]);
1333 settings->setShowRepaintCounter([preferences showRepaintCounter]);
1334 settings->setPluginAllowedRunTime([preferences pluginAllowedRunTime]);
1335 settings->setWebGLEnabled([preferences webGLEnabled]);
1336 settings->setLoadDeferringEnabled(shouldEnableLoadDeferring());
1337 settings->setFrameSetFlatteningEnabled([preferences isFrameSetFlatteningEnabled]);
1803 _private->page->settings()->setUsesDashboardBackwardCompatibilityMode(true);
1824 _private->page->settings()->setUsesDashboardBackwardCompatibilityMode(flag);
1846 return _private->page && _private->page->settings()->usesDashboardBackwardCompatibilityMode();
2018 // Post a notification so the WebCore settings update.
2894 // After registering for the notification, post it so the WebCore settings update.
3076 _private->page->settings()->setZoomsTextOnly(isTextOnly);
3079 // all access _private->page->settings().
3102 return _private->page->settings()->zoomsTextOnly();