OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the select element renderer in WebCore. | 2 * This file is part of the select element renderer in WebCore. |
3 * | 3 * |
4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 22 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef RenderListBox_h | 31 #ifndef LayoutListBox_h |
32 #define RenderListBox_h | 32 #define LayoutListBox_h |
33 | 33 |
34 #include "core/rendering/RenderBlockFlow.h" | 34 #include "core/rendering/RenderBlockFlow.h" |
35 | 35 |
36 namespace blink { | 36 namespace blink { |
37 | 37 |
38 class HTMLSelectElement; | 38 class HTMLSelectElement; |
39 | 39 |
40 class RenderListBox final : public RenderBlockFlow { | 40 class LayoutListBox final : public RenderBlockFlow { |
41 public: | 41 public: |
42 explicit RenderListBox(Element*); | 42 explicit LayoutListBox(Element*); |
43 virtual ~RenderListBox(); | 43 virtual ~LayoutListBox(); |
44 | 44 |
45 int size() const; | 45 int size() const; |
46 | 46 |
47 // Unlike scrollRectToVisible this will not scroll parent boxes. | 47 // Unlike scrollRectToVisible this will not scroll parent boxes. |
48 void scrollToRect(const LayoutRect&); | 48 void scrollToRect(const LayoutRect&); |
49 | 49 |
50 private: | 50 private: |
51 HTMLSelectElement* selectElement() const; | 51 HTMLSelectElement* selectElement() const; |
52 | 52 |
53 virtual const char* renderName() const override { return "RenderListBox"; } | 53 virtual const char* renderName() const override { return "LayoutListBox"; } |
54 | 54 |
55 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectListBox || RenderBlockFlow::isOfType(type); } | 55 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectListBox || RenderBlockFlow::isOfType(type); } |
56 | 56 |
57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic
alTop, LogicalExtentComputedValues&) const override; | 57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic
alTop, LogicalExtentComputedValues&) const override; |
58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; | 58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; |
59 | 59 |
60 virtual void stopAutoscroll() override; | 60 virtual void stopAutoscroll() override; |
61 | 61 |
62 LayoutUnit defaultItemHeight() const; | 62 LayoutUnit defaultItemHeight() const; |
63 LayoutUnit itemHeight() const; | 63 LayoutUnit itemHeight() const; |
64 }; | 64 }; |
65 | 65 |
66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderListBox, isListBox()); | 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListBox, isListBox()); |
67 | 67 |
68 } // namepace blink | 68 } // namepace blink |
69 | 69 |
70 #endif // RenderListBox_h | 70 #endif // LayoutListBox_h |
OLD | NEW |