| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv
ed. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/frame/Settings.h" | 27 #include "core/frame/Settings.h" |
| 28 | 28 |
| 29 #include "core/inspector/InspectorInstrumentation.h" | |
| 30 #include "platform/scroll/ScrollbarTheme.h" | 29 #include "platform/scroll/ScrollbarTheme.h" |
| 31 | 30 |
| 32 namespace WebCore { | 31 namespace WebCore { |
| 33 | 32 |
| 34 // NOTEs | 33 // NOTEs |
| 35 // 1) EditingMacBehavior comprises builds on Mac; | 34 // 1) EditingMacBehavior comprises builds on Mac; |
| 36 // 2) EditingWindowsBehavior comprises builds on Windows; | 35 // 2) EditingWindowsBehavior comprises builds on Windows; |
| 37 // 3) EditingUnixBehavior comprises all unix-based systems, but Darwin/MacOS/An
droid (and then abusing the terminology); | 36 // 3) EditingUnixBehavior comprises all unix-based systems, but Darwin/MacOS/An
droid (and then abusing the terminology); |
| 38 // 4) EditingAndroidBehavior comprises Android builds. | 37 // 4) EditingAndroidBehavior comprises Android builds. |
| 39 // 99) MacEditingBehavior is used a fallback. | 38 // 99) MacEditingBehavior is used a fallback. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 58 #else | 57 #else |
| 59 static const bool defaultSmartInsertDeleteEnabled = false; | 58 static const bool defaultSmartInsertDeleteEnabled = false; |
| 60 #endif | 59 #endif |
| 61 #if OS(WIN) | 60 #if OS(WIN) |
| 62 static const bool defaultSelectTrailingWhitespaceEnabled = true; | 61 static const bool defaultSelectTrailingWhitespaceEnabled = true; |
| 63 #else | 62 #else |
| 64 static const bool defaultSelectTrailingWhitespaceEnabled = false; | 63 static const bool defaultSelectTrailingWhitespaceEnabled = false; |
| 65 #endif | 64 #endif |
| 66 | 65 |
| 67 Settings::Settings() | 66 Settings::Settings() |
| 68 : m_deviceScaleAdjustment(1.0f) | 67 : m_openGLMultisamplingEnabled(false) |
| 69 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP | 68 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP |
| 70 , m_textAutosizingWindowSizeOverride(320, 480) | 69 , m_textAutosizingWindowSizeOverride(320, 480) |
| 71 , m_textAutosizingEnabled(true) | 70 , m_textAutosizingEnabled(true) |
| 72 #else | 71 #else |
| 73 , m_textAutosizingEnabled(false) | 72 , m_textAutosizingEnabled(false) |
| 74 #endif | 73 #endif |
| 75 SETTINGS_INITIALIZER_LIST | 74 SETTINGS_INITIALIZER_LIST |
| 76 , m_isScriptEnabled(false) | |
| 77 , m_openGLMultisamplingEnabled(false) | |
| 78 { | 75 { |
| 79 } | 76 } |
| 80 | 77 |
| 81 PassOwnPtr<Settings> Settings::create() | 78 PassOwnPtr<Settings> Settings::create() |
| 82 { | 79 { |
| 83 return adoptPtr(new Settings); | 80 return adoptPtr(new Settings); |
| 84 } | 81 } |
| 85 | 82 |
| 86 SETTINGS_SETTER_BODIES | 83 SETTINGS_SETTER_BODIES |
| 87 | 84 |
| 88 void Settings::setDelegate(SettingsDelegate* delegate) | 85 void Settings::setDelegate(SettingsDelegate* delegate) |
| 89 { | 86 { |
| 90 m_delegate = delegate; | 87 m_delegate = delegate; |
| 91 } | 88 } |
| 92 | 89 |
| 93 void Settings::invalidate(SettingsDelegate::ChangeType changeType) | 90 void Settings::invalidate(SettingsDelegate::ChangeType changeType) |
| 94 { | 91 { |
| 95 if (m_delegate) | 92 if (m_delegate) |
| 96 m_delegate->settingsChanged(changeType); | 93 m_delegate->settingsChanged(changeType); |
| 97 } | 94 } |
| 98 | 95 |
| 99 // This is a total hack and should be removed. | |
| 100 Page* Settings::pageOfShame() const | |
| 101 { | |
| 102 if (!m_delegate) | |
| 103 return 0; | |
| 104 return m_delegate->page(); | |
| 105 } | |
| 106 | |
| 107 void Settings::setTextAutosizingEnabled(bool textAutosizingEnabled) | 96 void Settings::setTextAutosizingEnabled(bool textAutosizingEnabled) |
| 108 { | 97 { |
| 109 if (m_textAutosizingEnabled == textAutosizingEnabled) | 98 if (m_textAutosizingEnabled == textAutosizingEnabled) |
| 110 return; | 99 return; |
| 111 | 100 |
| 112 m_textAutosizingEnabled = textAutosizingEnabled; | 101 m_textAutosizingEnabled = textAutosizingEnabled; |
| 113 invalidate(SettingsDelegate::StyleChange); | 102 invalidate(SettingsDelegate::StyleChange); |
| 114 } | 103 } |
| 115 | 104 |
| 116 bool Settings::textAutosizingEnabled() const | |
| 117 { | |
| 118 return InspectorInstrumentation::overrideTextAutosizing(pageOfShame(), m_tex
tAutosizingEnabled); | |
| 119 } | |
| 120 | |
| 121 // FIXME: Move to Settings.in once make_settings can understand IntSize. | 105 // FIXME: Move to Settings.in once make_settings can understand IntSize. |
| 122 void Settings::setTextAutosizingWindowSizeOverride(const IntSize& textAutosizing
WindowSizeOverride) | 106 void Settings::setTextAutosizingWindowSizeOverride(const IntSize& textAutosizing
WindowSizeOverride) |
| 123 { | 107 { |
| 124 if (m_textAutosizingWindowSizeOverride == textAutosizingWindowSizeOverride) | 108 if (m_textAutosizingWindowSizeOverride == textAutosizingWindowSizeOverride) |
| 125 return; | 109 return; |
| 126 | 110 |
| 127 m_textAutosizingWindowSizeOverride = textAutosizingWindowSizeOverride; | 111 m_textAutosizingWindowSizeOverride = textAutosizingWindowSizeOverride; |
| 128 invalidate(SettingsDelegate::StyleChange); | 112 invalidate(SettingsDelegate::StyleChange); |
| 129 } | 113 } |
| 130 | 114 |
| 131 void Settings::setDeviceScaleAdjustment(float deviceScaleAdjustment) | |
| 132 { | |
| 133 m_deviceScaleAdjustment = deviceScaleAdjustment; | |
| 134 invalidate(SettingsDelegate::TextAutosizingChange); | |
| 135 } | |
| 136 | |
| 137 float Settings::deviceScaleAdjustment() const | |
| 138 { | |
| 139 return InspectorInstrumentation::overrideFontScaleFactor(pageOfShame(), m_de
viceScaleAdjustment); | |
| 140 } | |
| 141 | |
| 142 void Settings::setScriptEnabled(bool isScriptEnabled) | |
| 143 { | |
| 144 m_isScriptEnabled = isScriptEnabled; | |
| 145 InspectorInstrumentation::scriptsEnabled(pageOfShame(), m_isScriptEnabled); | |
| 146 } | |
| 147 | |
| 148 void Settings::setMockScrollbarsEnabled(bool flag) | 115 void Settings::setMockScrollbarsEnabled(bool flag) |
| 149 { | 116 { |
| 150 ScrollbarTheme::setMockScrollbarsEnabled(flag); | 117 ScrollbarTheme::setMockScrollbarsEnabled(flag); |
| 151 } | 118 } |
| 152 | 119 |
| 153 bool Settings::mockScrollbarsEnabled() | 120 bool Settings::mockScrollbarsEnabled() |
| 154 { | 121 { |
| 155 return ScrollbarTheme::mockScrollbarsEnabled(); | 122 return ScrollbarTheme::mockScrollbarsEnabled(); |
| 156 } | 123 } |
| 157 | 124 |
| 158 void Settings::setOpenGLMultisamplingEnabled(bool flag) | 125 void Settings::setOpenGLMultisamplingEnabled(bool flag) |
| 159 { | 126 { |
| 160 if (m_openGLMultisamplingEnabled == flag) | 127 if (m_openGLMultisamplingEnabled == flag) |
| 161 return; | 128 return; |
| 162 | 129 |
| 163 m_openGLMultisamplingEnabled = flag; | 130 m_openGLMultisamplingEnabled = flag; |
| 164 invalidate(SettingsDelegate::MultisamplingChange); | 131 invalidate(SettingsDelegate::MultisamplingChange); |
| 165 } | 132 } |
| 166 | 133 |
| 167 } // namespace WebCore | 134 } // namespace WebCore |
| OLD | NEW |