| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(
); } | 97 virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(
); } |
| 98 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { retu
rn children(); } | 98 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { retu
rn children(); } |
| 99 | 99 |
| 100 virtual const char* renderName() const OVERRIDE { return "RenderFrameSet"; } | 100 virtual const char* renderName() const OVERRIDE { return "RenderFrameSet"; } |
| 101 virtual bool isFrameSet() const OVERRIDE { return true; } | 101 virtual bool isFrameSet() const OVERRIDE { return true; } |
| 102 | 102 |
| 103 virtual void layout() OVERRIDE; | 103 virtual void layout() OVERRIDE; |
| 104 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; | 104 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; |
| 105 virtual void computePreferredLogicalWidths() OVERRIDE; |
| 105 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; | 106 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; |
| 106 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const OVERRID
E; | 107 virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const OVERRID
E; |
| 107 | 108 |
| 108 inline HTMLFrameSetElement* frameSet() const; | 109 inline HTMLFrameSetElement* frameSet() const; |
| 109 | 110 |
| 110 void setIsResizing(bool); | 111 void setIsResizing(bool); |
| 111 | 112 |
| 112 void layOutAxis(GridAxis&, const Vector<HTMLDimension>&, int availableSpace)
; | 113 void layOutAxis(GridAxis&, const Vector<HTMLDimension>&, int availableSpace)
; |
| 113 void computeEdgeInfo(); | 114 void computeEdgeInfo(); |
| 114 void fillFromEdgeInfo(const FrameEdgeInfo& edgeInfo, int r, int c); | 115 void fillFromEdgeInfo(const FrameEdgeInfo& edgeInfo, int r, int c); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 130 | 131 |
| 131 bool m_isResizing; | 132 bool m_isResizing; |
| 132 bool m_isChildResizing; | 133 bool m_isChildResizing; |
| 133 }; | 134 }; |
| 134 | 135 |
| 135 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFrameSet, isFrameSet()); | 136 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFrameSet, isFrameSet()); |
| 136 | 137 |
| 137 } // namespace WebCore | 138 } // namespace WebCore |
| 138 | 139 |
| 139 #endif // RenderFrameSet_h | 140 #endif // RenderFrameSet_h |
| OLD | NEW |