| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the select element layoutObject in WebCore. | 2 * This file is part of the select element layoutObject 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class HTMLSelectElement; | 38 class HTMLSelectElement; |
| 39 | 39 |
| 40 class LayoutListBox final : public LayoutBlockFlow { | 40 class LayoutListBox final : public LayoutBlockFlow { |
| 41 public: | 41 public: |
| 42 explicit LayoutListBox(Element*); | 42 explicit LayoutListBox(Element*); |
| 43 virtual ~LayoutListBox(); | 43 virtual ~LayoutListBox(); |
| 44 | 44 |
| 45 int size() const; | 45 unsigned 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 virtual const char* name() const override { return "LayoutListBox"; } | 50 virtual const char* name() const override { return "LayoutListBox"; } |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 HTMLSelectElement* selectElement() const; | 53 HTMLSelectElement* selectElement() const; |
| 54 | 54 |
| 55 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectListBox || LayoutBlockFlow::isOfType(type); } | 55 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectListBox || LayoutBlockFlow::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(LayoutListBox, isListBox()); | 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListBox, isListBox()); |
| 67 | 67 |
| 68 } // namepace blink | 68 } // namepace blink |
| 69 | 69 |
| 70 #endif // LayoutListBox_h | 70 #endif // LayoutListBox_h |
| OLD | NEW |