| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef RenderSlider_h | 21 #ifndef RenderSlider_h |
| 22 #define RenderSlider_h | 22 #define RenderSlider_h |
| 23 | 23 |
| 24 #include "core/rendering/RenderFlexibleBox.h" | 24 #include "core/rendering/RenderFlexibleBox.h" |
| 25 | 25 |
| 26 namespace WebCore { | 26 namespace WebCore { |
| 27 | 27 |
| 28 class HTMLInputElement; | 28 class HTMLInputElement; |
| 29 class MouseEvent; | |
| 30 class SliderThumbElement; | 29 class SliderThumbElement; |
| 31 | 30 |
| 32 class RenderSlider FINAL : public RenderFlexibleBox { | 31 class RenderSlider FINAL : public RenderFlexibleBox { |
| 33 public: | 32 public: |
| 34 static const int defaultTrackLength; | 33 static const int defaultTrackLength; |
| 35 | 34 |
| 36 explicit RenderSlider(HTMLInputElement*); | 35 explicit RenderSlider(HTMLInputElement*); |
| 37 virtual ~RenderSlider(); | 36 virtual ~RenderSlider(); |
| 38 | 37 |
| 39 bool inDragMode() const; | 38 bool inDragMode() const; |
| 40 | 39 |
| 41 private: | 40 private: |
| 42 virtual const char* renderName() const OVERRIDE { return "RenderSlider"; } | 41 virtual const char* renderName() const OVERRIDE { return "RenderSlider"; } |
| 43 virtual bool isSlider() const OVERRIDE { return true; } | 42 virtual bool isSlider() const OVERRIDE { return true; } |
| 44 | 43 |
| 45 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const OVERRIDE; | 44 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const OVERRIDE; |
| 46 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; | 45 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; |
| 47 virtual void computePreferredLogicalWidths() OVERRIDE; | 46 virtual void computePreferredLogicalWidths() OVERRIDE; |
| 48 virtual void layout() OVERRIDE; | 47 virtual void layout() OVERRIDE; |
| 49 | 48 |
| 50 SliderThumbElement* sliderThumbElement() const; | 49 SliderThumbElement* sliderThumbElement() const; |
| 51 }; | 50 }; |
| 52 | 51 |
| 53 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSlider, isSlider()); | 52 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSlider, isSlider()); |
| 54 | 53 |
| 55 } // namespace WebCore | 54 } // namespace WebCore |
| 56 | 55 |
| 57 #endif // RenderSlider_h | 56 #endif // RenderSlider_h |
| OLD | NEW |