| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the theme implementation for form controls in WebCore. | 2 * This file is part of the theme implementation for form controls in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. | 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 virtual void setCheckboxSize(ComputedStyle&) const { } | 206 virtual void setCheckboxSize(ComputedStyle&) const { } |
| 207 | 207 |
| 208 virtual void adjustRadioStyle(ComputedStyle&) const; | 208 virtual void adjustRadioStyle(ComputedStyle&) const; |
| 209 virtual void setRadioSize(ComputedStyle&) const { } | 209 virtual void setRadioSize(ComputedStyle&) const { } |
| 210 | 210 |
| 211 virtual void adjustButtonStyle(ComputedStyle&) const; | 211 virtual void adjustButtonStyle(ComputedStyle&) const; |
| 212 virtual void adjustInnerSpinButtonStyle(ComputedStyle&) const; | 212 virtual void adjustInnerSpinButtonStyle(ComputedStyle&) const; |
| 213 | 213 |
| 214 virtual void adjustMenuListStyle(ComputedStyle&, Element*) const; | 214 virtual void adjustMenuListStyle(ComputedStyle&, Element*) const; |
| 215 virtual void adjustMenuListButtonStyle(ComputedStyle&, Element*) const; | 215 virtual void adjustMenuListButtonStyle(ComputedStyle&, Element*) const; |
| 216 virtual void adjustSliderContainerStyle(ComputedStyle&, Element*) const; | |
| 217 virtual void adjustSliderThumbStyle(ComputedStyle&) const; | 216 virtual void adjustSliderThumbStyle(ComputedStyle&) const; |
| 218 virtual void adjustSearchFieldStyle(ComputedStyle&) const; | 217 virtual void adjustSearchFieldStyle(ComputedStyle&) const; |
| 219 virtual void adjustSearchFieldCancelButtonStyle(ComputedStyle&) const; | 218 virtual void adjustSearchFieldCancelButtonStyle(ComputedStyle&) const; |
| 220 void adjustStyleUsingFallbackTheme(ComputedStyle&); | 219 void adjustStyleUsingFallbackTheme(ComputedStyle&); |
| 221 void adjustCheckboxStyleUsingFallbackTheme(ComputedStyle&) const; | 220 void adjustCheckboxStyleUsingFallbackTheme(ComputedStyle&) const; |
| 222 void adjustRadioStyleUsingFallbackTheme(ComputedStyle&) const; | 221 void adjustRadioStyleUsingFallbackTheme(ComputedStyle&) const; |
| 223 | 222 |
| 224 bool hasPlatformTheme() const { return m_platformTheme; } | 223 bool hasPlatformTheme() const { return m_platformTheme; } |
| 225 | 224 |
| 226 public: | 225 public: |
| (...skipping 24 matching lines...) Expand all Loading... |
| 251 static const RGBA32 defaultTapHighlightColor = 0x66000000; | 250 static const RGBA32 defaultTapHighlightColor = 0x66000000; |
| 252 | 251 |
| 253 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; | 252 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; |
| 254 | 253 |
| 255 Theme* m_platformTheme; // The platform-specific theme. | 254 Theme* m_platformTheme; // The platform-specific theme. |
| 256 }; | 255 }; |
| 257 | 256 |
| 258 } // namespace blink | 257 } // namespace blink |
| 259 | 258 |
| 260 #endif // LayoutTheme_h | 259 #endif // LayoutTheme_h |
| OLD | NEW |