| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
| 3 * | 3 * |
| 4 * Copyright (C) 2006 Apple Computer, Inc. | 4 * Copyright (C) 2006 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // The platform selection color. | 52 // The platform selection color. |
| 53 virtual Color platformActiveSelectionBackgroundColor() const OVERRIDE; | 53 virtual Color platformActiveSelectionBackgroundColor() const OVERRIDE; |
| 54 virtual Color platformInactiveSelectionBackgroundColor() const OVERRIDE; | 54 virtual Color platformInactiveSelectionBackgroundColor() const OVERRIDE; |
| 55 virtual Color platformActiveSelectionForegroundColor() const OVERRIDE; | 55 virtual Color platformActiveSelectionForegroundColor() const OVERRIDE; |
| 56 virtual Color platformInactiveSelectionForegroundColor() const OVERRIDE; | 56 virtual Color platformInactiveSelectionForegroundColor() const OVERRIDE; |
| 57 virtual Color platformActiveTextSearchHighlightColor() const OVERRIDE; | 57 virtual Color platformActiveTextSearchHighlightColor() const OVERRIDE; |
| 58 virtual Color platformInactiveTextSearchHighlightColor() const OVERRIDE; | 58 virtual Color platformInactiveTextSearchHighlightColor() const OVERRIDE; |
| 59 | 59 |
| 60 virtual Color systemColor(int cssValueId) const OVERRIDE; | 60 virtual Color systemColor(int cssValueId) const OVERRIDE; |
| 61 | 61 |
| 62 #if ENABLE(DATALIST_ELEMENT) | |
| 63 virtual IntSize sliderTickSize() const OVERRIDE; | 62 virtual IntSize sliderTickSize() const OVERRIDE; |
| 64 virtual int sliderTickOffsetFromTrackCenter() const OVERRIDE; | 63 virtual int sliderTickOffsetFromTrackCenter() const OVERRIDE; |
| 65 #endif | |
| 66 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const OVERRIDE; | 64 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const OVERRIDE; |
| 67 | 65 |
| 68 // Various paint functions. | 66 // Various paint functions. |
| 69 virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&)
OVERRIDE; | 67 virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&)
OVERRIDE; |
| 70 virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&) OVE
RRIDE; | 68 virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&) OVE
RRIDE; |
| 71 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&) OV
ERRIDE; | 69 virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&) OV
ERRIDE; |
| 72 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&)
OVERRIDE; | 70 virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&)
OVERRIDE; |
| 73 virtual bool paintSliderTrack(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; | 71 virtual bool paintSliderTrack(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; |
| 74 virtual bool paintSliderThumb(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; | 72 virtual bool paintSliderThumb(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; |
| 75 | 73 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 unsigned determineClassicState(RenderObject*, ControlSubPart = None); | 105 unsigned determineClassicState(RenderObject*, ControlSubPart = None); |
| 108 | 106 |
| 109 ThemeData getThemeData(RenderObject*, ControlSubPart = None); | 107 ThemeData getThemeData(RenderObject*, ControlSubPart = None); |
| 110 | 108 |
| 111 bool paintTextFieldInternal(RenderObject*, const PaintInfo&, const IntRect&,
bool); | 109 bool paintTextFieldInternal(RenderObject*, const PaintInfo&, const IntRect&,
bool); |
| 112 }; | 110 }; |
| 113 | 111 |
| 114 } // namespace WebCore | 112 } // namespace WebCore |
| 115 | 113 |
| 116 #endif | 114 #endif |
| OLD | NEW |