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