Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: Source/core/layout/FloatingObjects.cpp

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/layout/BidiRunForLine.cpp ('k') | Source/core/layout/LayoutBlockFlow.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details. 16 * Library General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Library General Public License 18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to 19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA. 21 * Boston, MA 02110-1301, USA.
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "core/layout/FloatingObjects.h" 25 #include "core/layout/FloatingObjects.h"
26 26
27 #include "core/layout/LayoutBlockFlow.h" 27 #include "core/layout/LayoutBlockFlow.h"
28 #include "core/layout/LayoutBox.h" 28 #include "core/layout/LayoutBox.h"
29 #include "core/layout/LayoutView.h" 29 #include "core/layout/LayoutView.h"
30 #include "core/layout/shapes/ShapeOutsideInfo.h"
30 31
31 using namespace WTF; 32 using namespace WTF;
32 33
33 namespace blink { 34 namespace blink {
34 35
35 struct SameSizeAsFloatingObject { 36 struct SameSizeAsFloatingObject {
36 void* pointers[2]; 37 void* pointers[2];
37 LayoutRect rect; 38 LayoutRect rect;
38 int paginationStrut; 39 int paginationStrut;
39 uint32_t bitfields : 8; 40 uint32_t bitfields : 8;
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 bool floatIsNewExtreme = updateOffsetIfNeeded(floatingObject); 509 bool floatIsNewExtreme = updateOffsetIfNeeded(floatingObject);
509 if (floatIsNewExtreme) 510 if (floatIsNewExtreme)
510 m_outermostFloat = &floatingObject; 511 m_outermostFloat = &floatingObject;
511 } 512 }
512 513
513 template<> 514 template<>
514 inline bool ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatLeft>::u pdateOffsetIfNeeded(const FloatingObject& floatingObject) 515 inline bool ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatLeft>::u pdateOffsetIfNeeded(const FloatingObject& floatingObject)
515 { 516 {
516 LayoutUnit logicalRight = m_layoutObject->logicalRightForFloat(floatingObjec t); 517 LayoutUnit logicalRight = m_layoutObject->logicalRightForFloat(floatingObjec t);
517 if (ShapeOutsideInfo* shapeOutside = floatingObject.layoutObject()->shapeOut sideInfo()) { 518 if (ShapeOutsideInfo* shapeOutside = floatingObject.layoutObject()->shapeOut sideInfo()) {
518 ShapeOutsideDeltas shapeDeltas = shapeOutside->computeDeltasForContainin gBlockLine(*m_layoutObject, floatingObject, m_lineTop, m_lineBottom - m_lineTop) ; 519 ShapeOutsideDeltas shapeDeltas = shapeOutside->computeDeltasForContainin gBlockLine(LineLayoutBlockFlow(const_cast<LayoutBlockFlow*>(m_layoutObject)), fl oatingObject, m_lineTop, m_lineBottom - m_lineTop);
519 if (!shapeDeltas.lineOverlapsShape()) 520 if (!shapeDeltas.lineOverlapsShape())
520 return false; 521 return false;
521 522
522 logicalRight += shapeDeltas.rightMarginBoxDelta(); 523 logicalRight += shapeDeltas.rightMarginBoxDelta();
523 } 524 }
524 if (logicalRight > m_offset) { 525 if (logicalRight > m_offset) {
525 m_offset = logicalRight; 526 m_offset = logicalRight;
526 return true; 527 return true;
527 } 528 }
528 529
529 return false; 530 return false;
530 } 531 }
531 532
532 template<> 533 template<>
533 inline bool ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatRight>:: updateOffsetIfNeeded(const FloatingObject& floatingObject) 534 inline bool ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatRight>:: updateOffsetIfNeeded(const FloatingObject& floatingObject)
534 { 535 {
535 LayoutUnit logicalLeft = m_layoutObject->logicalLeftForFloat(floatingObject) ; 536 LayoutUnit logicalLeft = m_layoutObject->logicalLeftForFloat(floatingObject) ;
536 if (ShapeOutsideInfo* shapeOutside = floatingObject.layoutObject()->shapeOut sideInfo()) { 537 if (ShapeOutsideInfo* shapeOutside = floatingObject.layoutObject()->shapeOut sideInfo()) {
537 ShapeOutsideDeltas shapeDeltas = shapeOutside->computeDeltasForContainin gBlockLine(*m_layoutObject, floatingObject, m_lineTop, m_lineBottom - m_lineTop) ; 538 ShapeOutsideDeltas shapeDeltas = shapeOutside->computeDeltasForContainin gBlockLine(LineLayoutBlockFlow(const_cast<LayoutBlockFlow*>(m_layoutObject)), fl oatingObject, m_lineTop, m_lineBottom - m_lineTop);
538 if (!shapeDeltas.lineOverlapsShape()) 539 if (!shapeDeltas.lineOverlapsShape())
539 return false; 540 return false;
540 541
541 logicalLeft += shapeDeltas.leftMarginBoxDelta(); 542 logicalLeft += shapeDeltas.leftMarginBoxDelta();
542 } 543 }
543 if (logicalLeft < m_offset) { 544 if (logicalLeft < m_offset) {
544 m_offset = logicalLeft; 545 m_offset = logicalLeft;
545 return true; 546 return true;
546 } 547 }
547 548
548 return false; 549 return false;
549 } 550 }
550 551
551 #ifndef NDEBUG 552 #ifndef NDEBUG
552 // These helpers are only used by the PODIntervalTree for debugging purposes. 553 // These helpers are only used by the PODIntervalTree for debugging purposes.
553 String ValueToString<int>::string(const int value) 554 String ValueToString<int>::string(const int value)
554 { 555 {
555 return String::number(value); 556 return String::number(value);
556 } 557 }
557 558
558 String ValueToString<FloatingObject*>::string(const FloatingObject* floatingObje ct) 559 String ValueToString<FloatingObject*>::string(const FloatingObject* floatingObje ct)
559 { 560 {
560 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->fr ameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedY(), floating Object->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pixelSnapped MaxY()); 561 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->fr ameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedY(), floating Object->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pixelSnapped MaxY());
561 } 562 }
562 #endif 563 #endif
563 564
564 565
565 } // namespace blink 566 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/BidiRunForLine.cpp ('k') | Source/core/layout/LayoutBlockFlow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698