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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 virtual int minimumMenuListSize(RenderStyle*) const; | 71 virtual int minimumMenuListSize(RenderStyle*) const; |
72 | 72 |
73 virtual void adjustSliderThumbSize(RenderObject*) const; | 73 virtual void adjustSliderThumbSize(RenderObject*) const; |
74 | 74 |
75 virtual int popupInternalPaddingLeft(RenderStyle*) const; | 75 virtual int popupInternalPaddingLeft(RenderStyle*) const; |
76 virtual int popupInternalPaddingRight(RenderStyle*) const; | 76 virtual int popupInternalPaddingRight(RenderStyle*) const; |
77 virtual int popupInternalPaddingTop(RenderStyle*) const; | 77 virtual int popupInternalPaddingTop(RenderStyle*) const; |
78 virtual int popupInternalPaddingBottom(RenderStyle*) const; | 78 virtual int popupInternalPaddingBottom(RenderStyle*) const; |
79 | 79 |
| 80 virtual ScrollbarControlSize scrollbarControlSizeForPart(ControlPart) {
return SmallScrollbar; } |
| 81 |
80 virtual bool paintCapsLockIndicator(RenderObject*, const RenderObject::P
aintInfo&, const IntRect&); | 82 virtual bool paintCapsLockIndicator(RenderObject*, const RenderObject::P
aintInfo&, const IntRect&); |
81 | 83 |
82 virtual Color systemColor(int cssValueId) const; | 84 virtual Color systemColor(int cssValueId) const; |
83 | 85 |
84 protected: | 86 protected: |
85 // Methods for each appearance value. | 87 // Methods for each appearance value. |
86 virtual bool paintCheckbox(RenderObject*, const RenderObject::PaintInfo&
, const IntRect&); | 88 virtual bool paintCheckbox(RenderObject*, const RenderObject::PaintInfo&
, const IntRect&); |
87 virtual void setCheckboxSize(RenderStyle*) const; | 89 virtual void setCheckboxSize(RenderStyle*) const; |
88 | 90 |
89 virtual bool paintRadio(RenderObject*, const RenderObject::PaintInfo&, c
onst IntRect&); | 91 virtual bool paintRadio(RenderObject*, const RenderObject::PaintInfo&, c
onst IntRect&); |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 bool m_isSliderThumbVerticalPressed; | 203 bool m_isSliderThumbVerticalPressed; |
202 | 204 |
203 mutable HashMap<int, RGBA32> m_systemColorCache; | 205 mutable HashMap<int, RGBA32> m_systemColorCache; |
204 | 206 |
205 RetainPtr<WebCoreRenderThemeNotificationObserver> m_notificationObserver
; | 207 RetainPtr<WebCoreRenderThemeNotificationObserver> m_notificationObserver
; |
206 }; | 208 }; |
207 | 209 |
208 } // namespace WebCore | 210 } // namespace WebCore |
209 | 211 |
210 #endif | 212 #endif |
OLD | NEW |