| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 virtual bool paintInnerSpinButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) { return true; } | 56 virtual bool paintInnerSpinButton(const LayoutObject&, const PaintInfo&, con
st IntRect&) { return true; } |
| 57 virtual bool paintTextField(const LayoutObject&, const PaintInfo&, const Int
Rect&) { return true; } | 57 virtual bool paintTextField(const LayoutObject&, const PaintInfo&, const Int
Rect&) { return true; } |
| 58 virtual bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntR
ect&) { return true; } | 58 virtual bool paintTextArea(const LayoutObject&, const PaintInfo&, const IntR
ect&) { return true; } |
| 59 virtual bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntR
ect&) { return true; } | 59 virtual bool paintMenuList(const LayoutObject&, const PaintInfo&, const IntR
ect&) { return true; } |
| 60 virtual bool paintMenuListButton(const LayoutObject&, const PaintInfo&, cons
t IntRect&) { return true; } | 60 virtual bool paintMenuListButton(const LayoutObject&, const PaintInfo&, cons
t IntRect&) { return true; } |
| 61 virtual bool paintProgressBar(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } | 61 virtual bool paintProgressBar(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } |
| 62 virtual bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } | 62 virtual bool paintSliderTrack(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } |
| 63 virtual bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } | 63 virtual bool paintSliderThumb(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } |
| 64 virtual bool paintSearchField(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } | 64 virtual bool paintSearchField(const LayoutObject&, const PaintInfo&, const I
ntRect&) { return true; } |
| 65 virtual bool paintSearchFieldCancelButton(const LayoutObject&, const PaintIn
fo&, const IntRect&) { return true; } | 65 virtual bool paintSearchFieldCancelButton(const LayoutObject&, const PaintIn
fo&, const IntRect&) { return true; } |
| 66 virtual bool paintSearchFieldDecoration(const LayoutObject&, const PaintInfo
&, const IntRect&) { return true; } | |
| 67 virtual bool paintSearchFieldResultsDecoration(const LayoutObject&, const Pa
intInfo&, const IntRect&) { return true; } | |
| 68 | 66 |
| 69 bool paintUsingFallbackTheme(const LayoutObject&, const PaintInfo&, const In
tRect&); | 67 bool paintUsingFallbackTheme(const LayoutObject&, const PaintInfo&, const In
tRect&); |
| 70 bool paintCheckboxUsingFallbackTheme(const LayoutObject&, const PaintInfo&,
const IntRect&); | 68 bool paintCheckboxUsingFallbackTheme(const LayoutObject&, const PaintInfo&,
const IntRect&); |
| 71 bool paintRadioUsingFallbackTheme(const LayoutObject&, const PaintInfo&, con
st IntRect&); | 69 bool paintRadioUsingFallbackTheme(const LayoutObject&, const PaintInfo&, con
st IntRect&); |
| 72 | 70 |
| 73 private: | 71 private: |
| 74 Theme* m_platformTheme; // The platform-specific theme. | 72 Theme* m_platformTheme; // The platform-specific theme. |
| 75 }; | 73 }; |
| 76 | 74 |
| 77 } // namespace blink | 75 } // namespace blink |
| 78 | 76 |
| 79 #endif // ThemePainter_h | 77 #endif // ThemePainter_h |
| OLD | NEW |