| 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 Apple Computer, Inc. | 4 * Copyright (C) 2005 Apple Computer, Inc. |
| 5 * Copyright (C) 2008, 2009 Google, Inc. | 5 * Copyright (C) 2008, 2009 Google, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual bool isControlStyled(const RenderStyle*, const BorderData&, | 60 virtual bool isControlStyled(const RenderStyle*, const BorderData&, |
| 61 const FillLayer&, const Color& backgroundCo
lor) const; | 61 const FillLayer&, const Color& backgroundCo
lor) const; |
| 62 | 62 |
| 63 virtual Color platformActiveSelectionBackgroundColor() const; | 63 virtual Color platformActiveSelectionBackgroundColor() const; |
| 64 virtual Color platformInactiveSelectionBackgroundColor() const; | 64 virtual Color platformInactiveSelectionBackgroundColor() const; |
| 65 virtual Color activeListBoxSelectionBackgroundColor() const; | 65 virtual Color activeListBoxSelectionBackgroundColor() const; |
| 66 | 66 |
| 67 virtual void platformColorsDidChange(); | 67 virtual void platformColorsDidChange(); |
| 68 | 68 |
| 69 // System fonts. | 69 // System fonts. |
| 70 virtual void systemFont(int cssValueId, Document*, FontDescription&) con
st; | 70 virtual void systemFont(int cssValueId, FontDescription&) const; |
| 71 | 71 |
| 72 virtual int minimumMenuListSize(RenderStyle*) const; | 72 virtual int minimumMenuListSize(RenderStyle*) const; |
| 73 | 73 |
| 74 virtual void adjustSliderThumbSize(RenderObject*) const; | 74 virtual void adjustSliderThumbSize(RenderObject*) const; |
| 75 | 75 |
| 76 virtual int popupInternalPaddingLeft(RenderStyle*) const; | 76 virtual int popupInternalPaddingLeft(RenderStyle*) const; |
| 77 virtual int popupInternalPaddingRight(RenderStyle*) const; | 77 virtual int popupInternalPaddingRight(RenderStyle*) const; |
| 78 virtual int popupInternalPaddingTop(RenderStyle*) const; | 78 virtual int popupInternalPaddingTop(RenderStyle*) const; |
| 79 virtual int popupInternalPaddingBottom(RenderStyle*) const; | 79 virtual int popupInternalPaddingBottom(RenderStyle*) const; |
| 80 | 80 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 bool m_isSliderThumbVerticalPressed; | 204 bool m_isSliderThumbVerticalPressed; |
| 205 | 205 |
| 206 mutable HashMap<int, RGBA32> m_systemColorCache; | 206 mutable HashMap<int, RGBA32> m_systemColorCache; |
| 207 | 207 |
| 208 RetainPtr<WebCoreRenderThemeNotificationObserver> m_notificationObserver
; | 208 RetainPtr<WebCoreRenderThemeNotificationObserver> m_notificationObserver
; |
| 209 }; | 209 }; |
| 210 | 210 |
| 211 } // namespace WebCore | 211 } // namespace WebCore |
| 212 | 212 |
| 213 #endif | 213 #endif |
| OLD | NEW |