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

Side by Side Diff: Source/core/layout/line/LineWidth.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/line/LineWidth.h ('k') | Source/core/layout/line/RootInlineBox.cpp » ('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) 2013 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
27 * OF THE POSSIBILITY OF SUCH DAMAGE. 27 * OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/layout/line/LineWidth.h" 31 #include "core/layout/line/LineWidth.h"
32 #include "core/layout/shapes/ShapeOutsideInfo.h"
32 33
33 #include "core/layout/LayoutBlock.h" 34 #include "core/layout/LayoutBlock.h"
34 #include "core/layout/LayoutRubyRun.h" 35 #include "core/layout/LayoutRubyRun.h"
35 36
36 namespace blink { 37 namespace blink {
37 38
38 LineWidth::LineWidth(LayoutBlockFlow& block, bool isFirstLine, IndentTextOrNot s houldIndentText) 39 LineWidth::LineWidth(LineLayoutBlockFlow block, bool isFirstLine, IndentTextOrNo t shouldIndentText)
39 : m_block(block) 40 : m_block(block)
40 , m_uncommittedWidth(0) 41 , m_uncommittedWidth(0)
41 , m_committedWidth(0) 42 , m_committedWidth(0)
42 , m_overhangWidth(0) 43 , m_overhangWidth(0)
43 , m_trailingWhitespaceWidth(0) 44 , m_trailingWhitespaceWidth(0)
44 , m_left(0) 45 , m_left(0)
45 , m_right(0) 46 , m_right(0)
46 , m_availableWidth(0) 47 , m_availableWidth(0)
47 , m_isFirstLine(isFirstLine) 48 , m_isFirstLine(isFirstLine)
48 , m_shouldIndentText(shouldIndentText) 49 , m_shouldIndentText(shouldIndentText)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 rubyRun->getOverhang(m_isFirstLine, startLayoutObject, endLayoutObject, star tOverhang, endOverhang); 113 rubyRun->getOverhang(m_isFirstLine, startLayoutObject, endLayoutObject, star tOverhang, endOverhang);
113 114
114 startOverhang = std::min<int>(startOverhang, m_committedWidth); 115 startOverhang = std::min<int>(startOverhang, m_committedWidth);
115 m_availableWidth += startOverhang; 116 m_availableWidth += startOverhang;
116 117
117 endOverhang = std::max(std::min<int>(endOverhang, m_availableWidth - current Width()), 0); 118 endOverhang = std::max(std::min<int>(endOverhang, m_availableWidth - current Width()), 0);
118 m_availableWidth += endOverhang; 119 m_availableWidth += endOverhang;
119 m_overhangWidth += startOverhang + endOverhang; 120 m_overhangWidth += startOverhang + endOverhang;
120 } 121 }
121 122
122 inline static float availableWidthAtOffset(const LayoutBlockFlow& block, const L ayoutUnit& offset, bool shouldIndentText, float& newLineLeft, 123 inline static float availableWidthAtOffset(LineLayoutBlockFlow block, const Layo utUnit& offset, bool shouldIndentText, float& newLineLeft,
123 float& newLineRight, const LayoutUnit& lineHeight = 0) 124 float& newLineRight, const LayoutUnit& lineHeight = 0)
124 { 125 {
125 newLineLeft = block.logicalLeftOffsetForLine(offset, shouldIndentText, lineH eight).toFloat(); 126 newLineLeft = block.logicalLeftOffsetForLine(offset, shouldIndentText, lineH eight).toFloat();
126 newLineRight = block.logicalRightOffsetForLine(offset, shouldIndentText, lin eHeight).toFloat(); 127 newLineRight = block.logicalRightOffsetForLine(offset, shouldIndentText, lin eHeight).toFloat();
127 return std::max(0.0f, newLineRight - newLineLeft); 128 return std::max(0.0f, newLineRight - newLineLeft);
128 } 129 }
129 130
130 void LineWidth::updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWid th, const float& newLineLeft, const float& newLineRight) 131 void LineWidth::updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWid th, const float& newLineLeft, const float& newLineRight)
131 { 132 {
132 if (newLineWidth <= m_availableWidth) 133 if (newLineWidth <= m_availableWidth)
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 ASSERT(!m_committedWidth); 167 ASSERT(!m_committedWidth);
167 ASSERT(!fitsOnLine()); 168 ASSERT(!fitsOnLine());
168 m_block.positionNewFloats(this); 169 m_block.positionNewFloats(this);
169 170
170 LayoutUnit floatLogicalBottom; 171 LayoutUnit floatLogicalBottom;
171 LayoutUnit lastFloatLogicalBottom = m_block.logicalHeight(); 172 LayoutUnit lastFloatLogicalBottom = m_block.logicalHeight();
172 float newLineWidth = m_availableWidth; 173 float newLineWidth = m_availableWidth;
173 float newLineLeft = m_left; 174 float newLineLeft = m_left;
174 float newLineRight = m_right; 175 float newLineRight = m_right;
175 176
176 FloatingObject* lastFloatFromPreviousLine = (m_block.containsFloats() ? m_bl ock.m_floatingObjects->set().last().get() : 0); 177 FloatingObject* lastFloatFromPreviousLine = m_block.lastFloatFromPreviousLin e();
177 if (lastFloatFromPreviousLine && lastFloatFromPreviousLine->layoutObject ()->shapeOutsideInfo()) 178 if (lastFloatFromPreviousLine && lastFloatFromPreviousLine->layoutObject ()->shapeOutsideInfo())
178 return wrapNextToShapeOutside(isFirstLine); 179 return wrapNextToShapeOutside(isFirstLine);
179 180
180 while (true) { 181 while (true) {
181 floatLogicalBottom = m_block.nextFloatLogicalBottomBelow(lastFloatLogica lBottom, ShapeOutsideFloatShapeOffset); 182 floatLogicalBottom = m_block.nextFloatLogicalBottomBelow(lastFloatLogica lBottom, ShapeOutsideFloatShapeOffset);
182 if (floatLogicalBottom <= lastFloatLogicalBottom) 183 if (floatLogicalBottom <= lastFloatLogicalBottom)
183 break; 184 break;
184 185
185 newLineWidth = availableWidthAtOffset(m_block, floatLogicalBottom, shoul dIndentText(), newLineLeft, newLineRight); 186 newLineWidth = availableWidthAtOffset(m_block, floatLogicalBottom, shoul dIndentText(), newLineLeft, newLineRight);
186 lastFloatLogicalBottom = floatLogicalBottom; 187 lastFloatLogicalBottom = floatLogicalBottom;
187 188
188 if (newLineWidth >= m_uncommittedWidth) 189 if (newLineWidth >= m_uncommittedWidth)
189 break; 190 break;
190 } 191 }
191 updateLineDimension(lastFloatLogicalBottom, newLineWidth, newLineLeft, newLi neRight); 192 updateLineDimension(lastFloatLogicalBottom, newLineWidth, newLineLeft, newLi neRight);
192 } 193 }
193 194
194 void LineWidth::computeAvailableWidthFromLeftAndRight() 195 void LineWidth::computeAvailableWidthFromLeftAndRight()
195 { 196 {
196 m_availableWidth = max(0.0f, m_right - m_left) + m_overhangWidth; 197 m_availableWidth = max(0.0f, m_right - m_left) + m_overhangWidth;
197 } 198 }
198 199
199 } 200 }
OLDNEW
« no previous file with comments | « Source/core/layout/line/LineWidth.h ('k') | Source/core/layout/line/RootInlineBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698