| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. |
| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 bool isPointInOverflowControl(HitTestResult&, const LayoutPoint& locationInC
ontainer, const LayoutPoint& accumulatedOffset) const; | 354 bool isPointInOverflowControl(HitTestResult&, const LayoutPoint& locationInC
ontainer, const LayoutPoint& accumulatedOffset) const; |
| 355 | 355 |
| 356 void computeBlockPreferredLogicalWidths(LayoutUnit& minLogicalWidth, LayoutU
nit& maxLogicalWidth) const; | 356 void computeBlockPreferredLogicalWidths(LayoutUnit& minLogicalWidth, LayoutU
nit& maxLogicalWidth) const; |
| 357 | 357 |
| 358 bool isSelectionRoot() const; | 358 bool isSelectionRoot() const; |
| 359 | 359 |
| 360 public: | 360 public: |
| 361 bool hasCursorCaret() const; | 361 bool hasCursorCaret() const; |
| 362 bool hasDragCaret() const; | 362 bool hasDragCaret() const; |
| 363 bool hasCaret() const { return hasCursorCaret() || hasDragCaret(); } | 363 bool hasCaret() const { return hasCursorCaret() || hasDragCaret(); } |
| 364 void invalidateCaret() const; |
| 365 |
| 366 protected: |
| 367 PaintInvalidationReason invalidatePaintIfNeeded(const PaintInvalidationState
&) override; |
| 364 | 368 |
| 365 private: | 369 private: |
| 366 LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidt
hToEndOfLine = nullptr) final; | 370 LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidt
hToEndOfLine = nullptr) final; |
| 367 bool isInlineBoxWrapperActuallyChild() const; | 371 bool isInlineBoxWrapperActuallyChild() const; |
| 368 | 372 |
| 369 Position positionForBox(InlineBox*, bool start = true) const; | 373 Position positionForBox(InlineBox*, bool start = true) const; |
| 370 | 374 |
| 371 // End helper functions and structs used by layoutBlockChildren. | 375 // End helper functions and structs used by layoutBlockChildren. |
| 372 | 376 |
| 373 void removeFromGlobalMaps(); | 377 void removeFromGlobalMaps(); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 // This is necessary for now for interoperability between the old and new | 425 // This is necessary for now for interoperability between the old and new |
| 422 // layout code. Primarily for calling layoutPositionedObjects at the moment. | 426 // layout code. Primarily for calling layoutPositionedObjects at the moment. |
| 423 friend class NGBox; | 427 friend class NGBox; |
| 424 }; | 428 }; |
| 425 | 429 |
| 426 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); | 430 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); |
| 427 | 431 |
| 428 } // namespace blink | 432 } // namespace blink |
| 429 | 433 |
| 430 #endif // LayoutBlock_h | 434 #endif // LayoutBlock_h |
| OLD | NEW |