| 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 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
| 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/layout/LayoutFrameSet.h" | 25 #include "core/layout/LayoutFrameSet.h" |
| 26 | 26 |
| 27 #include "core/dom/Document.h" | 27 #include "core/dom/Document.h" |
| 28 #include "core/events/MouseEvent.h" | 28 #include "core/events/MouseEvent.h" |
| 29 #include "core/frame/LocalFrame.h" | 29 #include "core/frame/LocalFrame.h" |
| 30 #include "core/html/HTMLDimension.h" | 30 #include "core/html/HTMLDimension.h" |
| 31 #include "core/html/HTMLFrameSetElement.h" | 31 #include "core/html/HTMLFrameSetElement.h" |
| 32 #include "core/input/EventHandler.h" |
| 32 #include "core/layout/LayoutFrame.h" | 33 #include "core/layout/LayoutFrame.h" |
| 33 #include "core/layout/LayoutView.h" | 34 #include "core/layout/LayoutView.h" |
| 34 #include "core/page/EventHandler.h" | |
| 35 #include "core/paint/FrameSetPainter.h" | 35 #include "core/paint/FrameSetPainter.h" |
| 36 #include "platform/Cursor.h" | 36 #include "platform/Cursor.h" |
| 37 #include "platform/graphics/GraphicsContext.h" | 37 #include "platform/graphics/GraphicsContext.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 LayoutFrameSet::LayoutFrameSet(HTMLFrameSetElement* frameSet) | 41 LayoutFrameSet::LayoutFrameSet(HTMLFrameSetElement* frameSet) |
| 42 : LayoutBox(frameSet) | 42 : LayoutBox(frameSet) |
| 43 , m_isResizing(false) | 43 , m_isResizing(false) |
| 44 , m_isChildResizing(false) | 44 , m_isChildResizing(false) |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 return SetCursor; | 567 return SetCursor; |
| 568 } | 568 } |
| 569 if (canResizeColumn(roundedPoint)) { | 569 if (canResizeColumn(roundedPoint)) { |
| 570 cursor = columnResizeCursor(); | 570 cursor = columnResizeCursor(); |
| 571 return SetCursor; | 571 return SetCursor; |
| 572 } | 572 } |
| 573 return LayoutBox::getCursor(point, cursor); | 573 return LayoutBox::getCursor(point, cursor); |
| 574 } | 574 } |
| 575 | 575 |
| 576 } // namespace blink | 576 } // namespace blink |
| OLD | NEW |