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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 bool userResize(MouseEvent*); | 74 bool userResize(MouseEvent*); |
75 | 75 |
76 bool canResizeRow(const IntPoint&) const; | 76 bool canResizeRow(const IntPoint&) const; |
77 bool canResizeColumn(const IntPoint&) const; | 77 bool canResizeColumn(const IntPoint&) const; |
78 | 78 |
79 void notifyFrameEdgeInfoChanged(); | 79 void notifyFrameEdgeInfoChanged(); |
80 HTMLFrameSetElement* frameSet() const; | 80 HTMLFrameSetElement* frameSet() const; |
81 | 81 |
82 class GridAxis { | 82 class GridAxis { |
83 DISALLOW_ALLOCATION(); | 83 DISALLOW_NEW(); |
84 WTF_MAKE_NONCOPYABLE(GridAxis); | 84 WTF_MAKE_NONCOPYABLE(GridAxis); |
85 public: | 85 public: |
86 GridAxis(); | 86 GridAxis(); |
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; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 | 133 |
134 bool m_isResizing; | 134 bool m_isResizing; |
135 bool m_isChildResizing; | 135 bool m_isChildResizing; |
136 }; | 136 }; |
137 | 137 |
138 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet()); | 138 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet()); |
139 | 139 |
140 } // namespace blink | 140 } // namespace blink |
141 | 141 |
142 #endif // LayoutFrameSet_h | 142 #endif // LayoutFrameSet_h |
OLD | NEW |