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

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

Issue 1198433002: *** NOT FOR LANDING *** mapLocalToContainer and offsetFromContainer cleanup. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: There's also work that LayoutBoxModelObject::offsetFromContainer could do instead of LayoutObject. Created 5 years, 6 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/LayoutInline.h ('k') | Source/core/layout/LayoutMultiColumnFlowThread.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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 if (containerSkipped) { 1119 if (containerSkipped) {
1120 // If the paintInvalidationContainer is below o, then we need to map the rect into paintInvalidationContainer's coordinates. 1120 // If the paintInvalidationContainer is below o, then we need to map the rect into paintInvalidationContainer's coordinates.
1121 LayoutSize containerOffset = paintInvalidationContainer->offsetFromAnces torContainer(o); 1121 LayoutSize containerOffset = paintInvalidationContainer->offsetFromAnces torContainer(o);
1122 rect.move(-containerOffset); 1122 rect.move(-containerOffset);
1123 return; 1123 return;
1124 } 1124 }
1125 1125
1126 o->mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect, paint InvalidationState); 1126 o->mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect, paint InvalidationState);
1127 } 1127 }
1128 1128
1129 LayoutSize LayoutInline::offsetFromContainer(const LayoutObject* container, cons t LayoutPoint& point, bool* offsetDependsOnPoint) const
1130 {
1131 ASSERT(container == this->container());
1132
1133 LayoutSize offset;
1134 if (isRelPositioned())
1135 offset += offsetForInFlowPosition();
1136
1137 offset += container->columnOffset(point);
1138
1139 if (container->hasOverflowClip())
1140 offset -= toLayoutBox(container)->scrolledContentOffset();
1141
1142 if (offsetDependsOnPoint)
1143 *offsetDependsOnPoint = (container->isBox() && container->style()->isFli ppedBlocksWritingMode()) || container->isLayoutFlowThread();
1144
1145 return offset;
1146 }
1147
1148 void LayoutInline::mapLocalToContainer(const LayoutBoxModelObject* paintInvalida tionContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* w asFixed, const PaintInvalidationState* paintInvalidationState) const
1149 {
1150 if (paintInvalidationContainer == this)
1151 return;
1152
1153 if (paintInvalidationState && paintInvalidationState->canMapToContainer(pain tInvalidationContainer)) {
1154 LayoutSize offset = paintInvalidationState->paintOffset();
1155 if (style()->hasInFlowPosition() && layer())
1156 offset += layer()->offsetForInFlowPosition();
1157 transformState.move(offset);
1158 return;
1159 }
1160
1161 bool containerSkipped;
1162 LayoutObject* o = container(paintInvalidationContainer, &containerSkipped);
1163 if (!o)
1164 return;
1165
1166 if (mode & ApplyContainerFlip && o->isBox()) {
1167 if (o->style()->isFlippedBlocksWritingMode()) {
1168 IntPoint centerPoint = roundedIntPoint(transformState.mappedPoint()) ;
1169 transformState.move(toLayoutBox(o)->flipForWritingMode(LayoutPoint(c enterPoint)) - centerPoint);
1170 }
1171 mode &= ~ApplyContainerFlip;
1172 }
1173
1174 LayoutSize containerOffset = offsetFromContainer(o, roundedLayoutPoint(trans formState.mappedPoint()));
1175
1176 bool preserve3D = mode & UseTransforms && (o->style()->preserves3D() || styl e()->preserves3D());
1177 if (mode & UseTransforms && shouldUseTransformFromContainer(o)) {
1178 TransformationMatrix t;
1179 getTransformFromContainer(o, containerOffset, t);
1180 transformState.applyTransform(t, preserve3D ? TransformState::Accumulate Transform : TransformState::FlattenTransform);
1181 } else {
1182 transformState.move(containerOffset.width(), containerOffset.height(), p reserve3D ? TransformState::AccumulateTransform : TransformState::FlattenTransfo rm);
1183 }
1184
1185 if (containerSkipped) {
1186 // There can't be a transform between paintInvalidationContainer and o, because transforms create containers, so it should be safe
1187 // to just subtract the delta between the paintInvalidationContainer and o.
1188 LayoutSize containerOffset = paintInvalidationContainer->offsetFromAnces torContainer(o);
1189 transformState.move(-containerOffset.width(), -containerOffset.height(), preserve3D ? TransformState::AccumulateTransform : TransformState::FlattenTrans form);
1190 return;
1191 }
1192
1193 o->mapLocalToContainer(paintInvalidationContainer, transformState, mode, was Fixed, paintInvalidationState);
1194 }
1195
1196 void LayoutInline::updateDragState(bool dragOn) 1129 void LayoutInline::updateDragState(bool dragOn)
1197 { 1130 {
1198 LayoutBoxModelObject::updateDragState(dragOn); 1131 LayoutBoxModelObject::updateDragState(dragOn);
1199 if (LayoutBoxModelObject* continuation = this->continuation()) 1132 if (LayoutBoxModelObject* continuation = this->continuation())
1200 continuation->updateDragState(dragOn); 1133 continuation->updateDragState(dragOn);
1201 } 1134 }
1202 1135
1203 void LayoutInline::childBecameNonInline(LayoutObject* child) 1136 void LayoutInline::childBecameNonInline(LayoutObject* child)
1204 { 1137 {
1205 // We have to split the parent flow. 1138 // We have to split the parent flow.
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1428 } 1361 }
1429 1362
1430 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain tInvalidationContainer) const 1363 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain tInvalidationContainer) const
1431 { 1364 {
1432 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine r); 1365 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine r);
1433 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) 1366 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox())
1434 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); 1367 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box);
1435 } 1368 }
1436 1369
1437 } // namespace blink 1370 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutInline.h ('k') | Source/core/layout/LayoutMultiColumnFlowThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698