OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import 'dart:sky' as sky; | 5 import 'dart:sky' as sky; |
6 | 6 |
7 import 'box.dart'; | 7 import 'box.dart'; |
8 import 'object.dart'; | 8 import 'object.dart'; |
9 import '../painting/text_style.dart'; | 9 import '../painting/text_style.dart'; |
10 | 10 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 } | 165 } |
166 | 166 |
167 void performLayout() { | 167 void performLayout() { |
168 _layout(constraints); | 168 _layout(constraints); |
169 sky.Element root = _layoutRoot.rootElement; | 169 sky.Element root = _layoutRoot.rootElement; |
170 // rootElement.width always expands to fill, use maxContentWidth instead. | 170 // rootElement.width always expands to fill, use maxContentWidth instead. |
171 size = constraints.constrain(new Size(_applyFloatingPointHack(root.maxConten
tWidth), | 171 size = constraints.constrain(new Size(_applyFloatingPointHack(root.maxConten
tWidth), |
172 _applyFloatingPointHack(root.height)))
; | 172 _applyFloatingPointHack(root.height)))
; |
173 } | 173 } |
174 | 174 |
175 void paint(RenderCanvas canvas, Offset offset) { | 175 void paint(PaintingCanvas canvas, Offset offset) { |
176 // Ideally we could compute the min/max intrinsic width/height with a | 176 // Ideally we could compute the min/max intrinsic width/height with a |
177 // non-destructive operation. However, currently, computing these values | 177 // non-destructive operation. However, currently, computing these values |
178 // will destroy state inside the layout root. If that happens, we need to | 178 // will destroy state inside the layout root. If that happens, we need to |
179 // get back the correct state by calling _layout again. | 179 // get back the correct state by calling _layout again. |
180 // | 180 // |
181 // TODO(abarth): Make computing the min/max intrinsic width/height | 181 // TODO(abarth): Make computing the min/max intrinsic width/height |
182 // a non-destructive operation. | 182 // a non-destructive operation. |
183 // TODO(ianh): Make LayoutRoot support a paint offset so we don't | 183 // TODO(ianh): Make LayoutRoot support a paint offset so we don't |
184 // need to translate for each span of text. | 184 // need to translate for each span of text. |
185 _layout(constraints); | 185 _layout(constraints); |
186 canvas.translate(offset.dx, offset.dy); | 186 canvas.translate(offset.dx, offset.dy); |
187 _layoutRoot.paint(canvas); | 187 _layoutRoot.paint(canvas); |
188 canvas.translate(-offset.dx, -offset.dy); | 188 canvas.translate(-offset.dx, -offset.dy); |
189 } | 189 } |
190 | 190 |
191 // we should probably expose a way to do precise (inter-glpyh) hit testing | 191 // we should probably expose a way to do precise (inter-glpyh) hit testing |
192 | 192 |
193 String debugDescribeSettings(String prefix) { | 193 String debugDescribeSettings(String prefix) { |
194 String result = '${super.debugDescribeSettings(prefix)}'; | 194 String result = '${super.debugDescribeSettings(prefix)}'; |
195 result += '${prefix}inline:\n${inline.toString("$prefix ")}\n'; | 195 result += '${prefix}inline:\n${inline.toString("$prefix ")}\n'; |
196 return result; | 196 return result; |
197 } | 197 } |
198 } | 198 } |
OLD | NEW |