| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // The platform selection color. | 59 // The platform selection color. |
| 60 virtual Color platformActiveSelectionBackgroundColor() const; | 60 virtual Color platformActiveSelectionBackgroundColor() const; |
| 61 virtual Color platformInactiveSelectionBackgroundColor() const; | 61 virtual Color platformInactiveSelectionBackgroundColor() const; |
| 62 virtual Color platformActiveSelectionForegroundColor() const; | 62 virtual Color platformActiveSelectionForegroundColor() const; |
| 63 virtual Color platformInactiveSelectionForegroundColor() const; | 63 virtual Color platformInactiveSelectionForegroundColor() const; |
| 64 virtual Color platformTextSearchHighlightColor() const; | 64 virtual Color platformTextSearchHighlightColor() const; |
| 65 | 65 |
| 66 virtual double caretBlinkInterval() const; | 66 virtual double caretBlinkInterval() const; |
| 67 | 67 |
| 68 // System fonts. | 68 // System fonts. |
| 69 virtual void systemFont(int propId, Document*, FontDescription&) const; | 69 virtual void systemFont(int propId, FontDescription&) const; |
| 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 bool paintCheckbox(RenderObject* o, const RenderObject::PaintInf
o& i, const IntRect& r) { return paintButton(o, i, r); } | 75 virtual bool paintCheckbox(RenderObject* o, const RenderObject::PaintInf
o& i, const IntRect& r) { return paintButton(o, i, r); } |
| 76 virtual void setCheckboxSize(RenderStyle*) const; | 76 virtual void setCheckboxSize(RenderStyle*) const; |
| 77 | 77 |
| 78 virtual bool paintRadio(RenderObject* o, const RenderObject::PaintInfo&
i, const IntRect& r) { return paintButton(o, i, r); } | 78 virtual bool paintRadio(RenderObject* o, const RenderObject::PaintInfo&
i, const IntRect& r) { return paintButton(o, i, r); } |
| 79 virtual void setRadioSize(RenderStyle*) const; | 79 virtual void setRadioSize(RenderStyle*) const; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 int menuListInternalPadding(RenderStyle*, int paddingType) const; | 149 int menuListInternalPadding(RenderStyle*, int paddingType) const; |
| 150 | 150 |
| 151 // A flag specifying whether we are in Find-in-page mode or not. | 151 // A flag specifying whether we are in Find-in-page mode or not. |
| 152 static bool m_findInPageMode; | 152 static bool m_findInPageMode; |
| 153 }; | 153 }; |
| 154 | 154 |
| 155 } // namespace WebCore | 155 } // namespace WebCore |
| 156 | 156 |
| 157 #endif | 157 #endif |
| OLD | NEW |