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 * 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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 | 1138 |
1139 if (container->hasOverflowClip()) | 1139 if (container->hasOverflowClip()) |
1140 offset -= toLayoutBox(container)->scrolledContentOffset(); | 1140 offset -= toLayoutBox(container)->scrolledContentOffset(); |
1141 | 1141 |
1142 if (offsetDependsOnPoint) | 1142 if (offsetDependsOnPoint) |
1143 *offsetDependsOnPoint = (container->isBox() && container->style()->isFli
ppedBlocksWritingMode()) || container->isLayoutFlowThread(); | 1143 *offsetDependsOnPoint = (container->isBox() && container->style()->isFli
ppedBlocksWritingMode()) || container->isLayoutFlowThread(); |
1144 | 1144 |
1145 return offset; | 1145 return offset; |
1146 } | 1146 } |
1147 | 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) | 1148 void LayoutInline::updateDragState(bool dragOn) |
1197 { | 1149 { |
1198 LayoutBoxModelObject::updateDragState(dragOn); | 1150 LayoutBoxModelObject::updateDragState(dragOn); |
1199 if (LayoutBoxModelObject* continuation = this->continuation()) | 1151 if (LayoutBoxModelObject* continuation = this->continuation()) |
1200 continuation->updateDragState(dragOn); | 1152 continuation->updateDragState(dragOn); |
1201 } | 1153 } |
1202 | 1154 |
1203 void LayoutInline::childBecameNonInline(LayoutObject* child) | 1155 void LayoutInline::childBecameNonInline(LayoutObject* child) |
1204 { | 1156 { |
1205 // We have to split the parent flow. | 1157 // We have to split the parent flow. |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 } | 1380 } |
1429 | 1381 |
1430 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain
tInvalidationContainer) const | 1382 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain
tInvalidationContainer) const |
1431 { | 1383 { |
1432 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine
r); | 1384 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine
r); |
1433 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) | 1385 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) |
1434 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); | 1386 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); |
1435 } | 1387 } |
1436 | 1388 |
1437 } // namespace blink | 1389 } // namespace blink |
OLD | NEW |