| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 3 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 void setAllowBorder(FrameEdge edge, bool allowBorder) { m_allowBorder[edge]
= allowBorder; } | 49 void setAllowBorder(FrameEdge edge, bool allowBorder) { m_allowBorder[edge]
= allowBorder; } |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 Vector<bool> m_preventResize; | 52 Vector<bool> m_preventResize; |
| 53 Vector<bool> m_allowBorder; | 53 Vector<bool> m_allowBorder; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 class LayoutFrameSet final : public LayoutBox { | 56 class LayoutFrameSet final : public LayoutBox { |
| 57 public: | 57 public: |
| 58 LayoutFrameSet(HTMLFrameSetElement*); | 58 LayoutFrameSet(HTMLFrameSetElement*); |
| 59 virtual ~LayoutFrameSet(); | 59 ~LayoutFrameSet() override; |
| 60 | 60 |
| 61 LayoutObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } | 61 LayoutObject* firstChild() const { ASSERT(children() == virtualChildren());
return children()->firstChild(); } |
| 62 LayoutObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } | 62 LayoutObject* lastChild() const { ASSERT(children() == virtualChildren()); r
eturn children()->lastChild(); } |
| 63 | 63 |
| 64 // If you have a LayoutFrameSet, use firstChild or lastChild instead. | 64 // If you have a LayoutFrameSet, use firstChild or lastChild instead. |
| 65 void slowFirstChild() const = delete; | 65 void slowFirstChild() const = delete; |
| 66 void slowLastChild() const = delete; | 66 void slowLastChild() const = delete; |
| 67 | 67 |
| 68 const LayoutObjectChildList* children() const { return &m_children; } | 68 const LayoutObjectChildList* children() const { return &m_children; } |
| 69 LayoutObjectChildList* children() { return &m_children; } | 69 LayoutObjectChildList* children() { return &m_children; } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 88 Vector<int> m_deltas; | 88 Vector<int> m_deltas; |
| 89 Vector<bool> m_preventResize; | 89 Vector<bool> m_preventResize; |
| 90 Vector<bool> m_allowBorder; | 90 Vector<bool> m_allowBorder; |
| 91 int m_splitBeingResized; | 91 int m_splitBeingResized; |
| 92 int m_splitResizeOffset; | 92 int m_splitResizeOffset; |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 const GridAxis& rows() { return m_rows; } | 95 const GridAxis& rows() { return m_rows; } |
| 96 const GridAxis& columns() { return m_cols; } | 96 const GridAxis& columns() { return m_cols; } |
| 97 | 97 |
| 98 virtual const char* name() const override { return "LayoutFrameSet"; } | 98 const char* name() const override { return "LayoutFrameSet"; } |
| 99 | 99 |
| 100 private: | 100 private: |
| 101 static const int noSplit = -1; | 101 static const int noSplit = -1; |
| 102 | 102 |
| 103 virtual LayoutObjectChildList* virtualChildren() override { return children(
); } | 103 LayoutObjectChildList* virtualChildren() override { return children(); } |
| 104 virtual const LayoutObjectChildList* virtualChildren() const override { retu
rn children(); } | 104 const LayoutObjectChildList* virtualChildren() const override { return child
ren(); } |
| 105 | 105 |
| 106 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectFrameSet || LayoutBox::isOfType(type); } | 106 bool isOfType(LayoutObjectType type) const override { return type == LayoutO
bjectFrameSet || LayoutBox::isOfType(type); } |
| 107 | 107 |
| 108 virtual void layout() override; | 108 void layout() override; |
| 109 virtual void paint(const PaintInfo&, const LayoutPoint&) override; | 109 void paint(const PaintInfo&, const LayoutPoint&) override; |
| 110 virtual void computePreferredLogicalWidths() override; | 110 void computePreferredLogicalWidths() override; |
| 111 virtual bool isChildAllowed(LayoutObject*, const ComputedStyle&) const overr
ide; | 111 bool isChildAllowed(LayoutObject*, const ComputedStyle&) const override; |
| 112 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const overrid
e; | 112 CursorDirective getCursor(const LayoutPoint&, Cursor&) const override; |
| 113 | 113 |
| 114 void setIsResizing(bool); | 114 void setIsResizing(bool); |
| 115 | 115 |
| 116 void layOutAxis(GridAxis&, const Vector<HTMLDimension>&, int availableSpace)
; | 116 void layOutAxis(GridAxis&, const Vector<HTMLDimension>&, int availableSpace)
; |
| 117 void computeEdgeInfo(); | 117 void computeEdgeInfo(); |
| 118 void fillFromEdgeInfo(const FrameEdgeInfo&, int r, int c); | 118 void fillFromEdgeInfo(const FrameEdgeInfo&, int r, int c); |
| 119 void positionFrames(); | 119 void positionFrames(); |
| 120 | 120 |
| 121 int splitPosition(const GridAxis&, int split) const; | 121 int splitPosition(const GridAxis&, int split) const; |
| 122 int hitTestSplit(const GridAxis&, int position) const; | 122 int hitTestSplit(const GridAxis&, int position) const; |
| 123 | 123 |
| 124 void startResizing(GridAxis&, int position); | 124 void startResizing(GridAxis&, int position); |
| 125 void continueResizing(GridAxis&, int position); | 125 void continueResizing(GridAxis&, int position); |
| 126 | 126 |
| 127 LayoutObjectChildList m_children; | 127 LayoutObjectChildList m_children; |
| 128 | 128 |
| 129 GridAxis m_rows; | 129 GridAxis m_rows; |
| 130 GridAxis m_cols; | 130 GridAxis m_cols; |
| 131 | 131 |
| 132 bool m_isResizing; | 132 bool m_isResizing; |
| 133 bool m_isChildResizing; | 133 bool m_isChildResizing; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet()); | 136 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet()); |
| 137 | 137 |
| 138 } // namespace blink | 138 } // namespace blink |
| 139 | 139 |
| 140 #endif // LayoutFrameSet_h | 140 #endif // LayoutFrameSet_h |
| OLD | NEW |