Commit b0c300e5 authored by Adam Barth's avatar Adam Barth

Add dartdoc for proxy_box.dart and other code in rendering

Almost done adding dartdoc to the rendering layer.
parent 945b5bcd
...@@ -72,7 +72,7 @@ class SectorApp extends App { ...@@ -72,7 +72,7 @@ class SectorApp extends App {
child: new Row([ child: new Row([
new RaisedButton( new RaisedButton(
enabled: enabledAdd, enabled: enabledAdd,
child: new ShrinkWrapWidth( child: new IntrinsicWidth(
child: new Row([ child: new Row([
new Container( new Container(
padding: new EdgeDims.all(4.0), padding: new EdgeDims.all(4.0),
...@@ -86,7 +86,7 @@ class SectorApp extends App { ...@@ -86,7 +86,7 @@ class SectorApp extends App {
), ),
new RaisedButton( new RaisedButton(
enabled: enabledRemove, enabled: enabledRemove,
child: new ShrinkWrapWidth( child: new IntrinsicWidth(
child: new Row([ child: new Row([
new Container( new Container(
padding: new EdgeDims.all(4.0), padding: new EdgeDims.all(4.0),
......
...@@ -9,6 +9,7 @@ import 'package:sky/src/rendering/object.dart'; ...@@ -9,6 +9,7 @@ import 'package:sky/src/rendering/object.dart';
const double _kMaxWidth = 100000.0; const double _kMaxWidth = 100000.0;
const double _kMaxHeight = 100000.0; const double _kMaxHeight = 100000.0;
/// A render object used as a placeholder when an error occurs
class RenderErrorBox extends RenderBox { class RenderErrorBox extends RenderBox {
double getMinIntrinsicWidth(BoxConstraints constraints) { double getMinIntrinsicWidth(BoxConstraints constraints) {
......
...@@ -5,12 +5,10 @@ ...@@ -5,12 +5,10 @@
import 'package:sky/src/rendering/box.dart'; import 'package:sky/src/rendering/box.dart';
import 'package:sky/src/rendering/object.dart'; import 'package:sky/src/rendering/object.dart';
class GridParentData extends BoxParentData with ContainerParentDataMixin<RenderBox> {} class _GridMetrics {
class GridMetrics {
// Grid is width-in, height-out. We fill the max width and adjust height // Grid is width-in, height-out. We fill the max width and adjust height
// accordingly. // accordingly.
factory GridMetrics({ double width, int childCount, double maxChildExtent }) { factory _GridMetrics({ double width, int childCount, double maxChildExtent }) {
assert(width != null); assert(width != null);
assert(childCount != null); assert(childCount != null);
assert(maxChildExtent != null); assert(maxChildExtent != null);
...@@ -31,10 +29,10 @@ class GridMetrics { ...@@ -31,10 +29,10 @@ class GridMetrics {
double height = childPadding * (rowCount + 1) + (childExtent * rowCount); double height = childPadding * (rowCount + 1) + (childExtent * rowCount);
Size childSize = new Size(childExtent, childExtent); Size childSize = new Size(childExtent, childExtent);
Size size = new Size(width, height); Size size = new Size(width, height);
return new GridMetrics._(size, childSize, childrenPerRow, childPadding, rowCount); return new _GridMetrics._(size, childSize, childrenPerRow, childPadding, rowCount);
} }
const GridMetrics._(this.size, this.childSize, this.childrenPerRow, this.childPadding, this.rowCount); const _GridMetrics._(this.size, this.childSize, this.childrenPerRow, this.childPadding, this.rowCount);
final Size size; final Size size;
final Size childSize; final Size childSize;
...@@ -43,6 +41,15 @@ class GridMetrics { ...@@ -43,6 +41,15 @@ class GridMetrics {
final int rowCount; final int rowCount;
} }
/// Parent data for use with [RenderGrid]
class GridParentData extends BoxParentData with ContainerParentDataMixin<RenderBox> {}
/// Implements the grid layout algorithm
///
/// In grid layout, children are arranged into rows and collumns in on a two
/// dimensional grid. The grid determines how many children will be placed in
/// each row by making the children as wide as possible while still respecting
/// the given [maxChildExtent].
class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, GridParentData>, class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, GridParentData>,
RenderBoxContainerDefaultsMixin<RenderBox, GridParentData> { RenderBoxContainerDefaultsMixin<RenderBox, GridParentData> {
RenderGrid({ Iterable<RenderBox> children, double maxChildExtent }) { RenderGrid({ Iterable<RenderBox> children, double maxChildExtent }) {
...@@ -66,32 +73,21 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr ...@@ -66,32 +73,21 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
child.parentData = new GridParentData(); child.parentData = new GridParentData();
} }
// getMinIntrinsicWidth() should return the minimum width that this box could
// be without failing to render its contents within itself.
double getMinIntrinsicWidth(BoxConstraints constraints) { double getMinIntrinsicWidth(BoxConstraints constraints) {
// We can render at any width. // We can render at any width.
return constraints.constrainWidth(0.0); return constraints.constrainWidth(0.0);
} }
// getMaxIntrinsicWidth() should return the smallest width beyond which
// increasing the width never decreases the height.
double getMaxIntrinsicWidth(BoxConstraints constraints) { double getMaxIntrinsicWidth(BoxConstraints constraints) {
double maxWidth = childCount * _maxChildExtent; double maxWidth = childCount * _maxChildExtent;
return constraints.constrainWidth(maxWidth); return constraints.constrainWidth(maxWidth);
} }
// getMinIntrinsicHeight() should return the minimum height that this box could
// be without failing to render its contents within itself.
double getMinIntrinsicHeight(BoxConstraints constraints) { double getMinIntrinsicHeight(BoxConstraints constraints) {
double desiredHeight = _computeMetrics().size.height; double desiredHeight = _computeMetrics().size.height;
return constraints.constrainHeight(desiredHeight); return constraints.constrainHeight(desiredHeight);
} }
// getMaxIntrinsicHeight should return the smallest height beyond which
// increasing the height never decreases the width.
// If the layout algorithm used is width-in-height-out, i.e. the height
// depends on the width and not vice versa, then this will return the same
// as getMinIntrinsicHeight().
double getMaxIntrinsicHeight(BoxConstraints constraints) { double getMaxIntrinsicHeight(BoxConstraints constraints) {
return getMinIntrinsicHeight(constraints); return getMinIntrinsicHeight(constraints);
} }
...@@ -100,8 +96,8 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr ...@@ -100,8 +96,8 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
return defaultComputeDistanceToHighestActualBaseline(baseline); return defaultComputeDistanceToHighestActualBaseline(baseline);
} }
GridMetrics _computeMetrics() { _GridMetrics _computeMetrics() {
return new GridMetrics( return new _GridMetrics(
width: constraints.maxWidth, width: constraints.maxWidth,
childCount: childCount, childCount: childCount,
maxChildExtent: _maxChildExtent maxChildExtent: _maxChildExtent
...@@ -111,7 +107,7 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr ...@@ -111,7 +107,7 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
void performLayout() { void performLayout() {
// We could shrink-wrap our contents when infinite, but for now we don't. // We could shrink-wrap our contents when infinite, but for now we don't.
assert(constraints.maxWidth < double.INFINITY); assert(constraints.maxWidth < double.INFINITY);
GridMetrics metrics = _computeMetrics(); _GridMetrics metrics = _computeMetrics();
size = constraints.constrain(metrics.size); size = constraints.constrain(metrics.size);
if (constraints.maxHeight < size.height) if (constraints.maxHeight < size.height)
_hasVisualOverflow = true; _hasVisualOverflow = true;
......
...@@ -292,29 +292,29 @@ class AspectRatio extends OneChildRenderObjectWrapper { ...@@ -292,29 +292,29 @@ class AspectRatio extends OneChildRenderObjectWrapper {
} }
} }
class ShrinkWrapWidth extends OneChildRenderObjectWrapper { class IntrinsicWidth extends OneChildRenderObjectWrapper {
ShrinkWrapWidth({ Key key, this.stepWidth, this.stepHeight, Widget child }) IntrinsicWidth({ Key key, this.stepWidth, this.stepHeight, Widget child })
: super(key: key, child: child); : super(key: key, child: child);
final double stepWidth; final double stepWidth;
final double stepHeight; final double stepHeight;
RenderShrinkWrapWidth createNode() => new RenderShrinkWrapWidth(stepWidth: stepWidth, stepHeight: stepHeight); RenderIntrinsicWidth createNode() => new RenderIntrinsicWidth(stepWidth: stepWidth, stepHeight: stepHeight);
RenderShrinkWrapWidth get renderObject => super.renderObject; RenderIntrinsicWidth get renderObject => super.renderObject;
void syncRenderObject(ShrinkWrapWidth old) { void syncRenderObject(IntrinsicWidth old) {
super.syncRenderObject(old); super.syncRenderObject(old);
renderObject.stepWidth = stepWidth; renderObject.stepWidth = stepWidth;
renderObject.stepHeight = stepHeight; renderObject.stepHeight = stepHeight;
} }
} }
class ShrinkWrapHeight extends OneChildRenderObjectWrapper { class IntrinsicHeight extends OneChildRenderObjectWrapper {
ShrinkWrapHeight({ Key key, Widget child }) IntrinsicHeight({ Key key, Widget child })
: super(key: key, child: child); : super(key: key, child: child);
RenderShrinkWrapHeight createNode() => new RenderShrinkWrapHeight(); RenderIntrinsicHeight createNode() => new RenderIntrinsicHeight();
RenderShrinkWrapHeight get renderObject => super.renderObject; RenderIntrinsicHeight get renderObject => super.renderObject;
// Nothing to sync, so we don't implement syncRenderObject() // Nothing to sync, so we don't implement syncRenderObject()
} }
......
...@@ -119,7 +119,7 @@ class Dialog extends Component { ...@@ -119,7 +119,7 @@ class Dialog extends Component {
child: new Material( child: new Material(
level: 4, level: 4,
color: _color, color: _color,
child: new ShrinkWrapWidth( child: new IntrinsicWidth(
child: new Block(dialogBody) child: new Block(dialogBody)
) )
) )
......
...@@ -132,7 +132,7 @@ class PopupMenu extends StatefulComponent { ...@@ -132,7 +132,7 @@ class PopupMenu extends StatefulComponent {
minWidth: _kMenuMinWidth, minWidth: _kMenuMinWidth,
maxWidth: _kMenuMaxWidth maxWidth: _kMenuMaxWidth
), ),
child: new ShrinkWrapWidth( child: new IntrinsicWidth(
stepWidth: _kMenuWidthStep, stepWidth: _kMenuWidthStep,
child: new ScrollableViewport( child: new ScrollableViewport(
child: new Container( child: new Container(
......
...@@ -35,7 +35,7 @@ void main() { ...@@ -35,7 +35,7 @@ void main() {
test('Shrink-wrapping width', () { test('Shrink-wrapping width', () {
RenderBox child = new RenderTestBox(new BoxConstraints(minWidth: 10.0, maxWidth: 100.0, minHeight: 20.0, maxHeight: 200.0)); RenderBox child = new RenderTestBox(new BoxConstraints(minWidth: 10.0, maxWidth: 100.0, minHeight: 20.0, maxHeight: 200.0));
RenderBox parent = new RenderShrinkWrapWidth(child: child); RenderBox parent = new RenderIntrinsicWidth(child: child);
layout(parent, layout(parent,
constraints: new BoxConstraints( constraints: new BoxConstraints(
minWidth: 5.0, minWidth: 5.0,
...@@ -49,7 +49,7 @@ void main() { ...@@ -49,7 +49,7 @@ void main() {
test('Shrink-wrapping height', () { test('Shrink-wrapping height', () {
RenderBox child = new RenderTestBox(new BoxConstraints(minWidth: 10.0, maxWidth: 100.0, minHeight: 20.0, maxHeight: 200.0)); RenderBox child = new RenderTestBox(new BoxConstraints(minWidth: 10.0, maxWidth: 100.0, minHeight: 20.0, maxHeight: 200.0));
RenderBox parent = new RenderShrinkWrapHeight(child: child); RenderBox parent = new RenderIntrinsicHeight(child: child);
layout(parent, layout(parent,
constraints: new BoxConstraints( constraints: new BoxConstraints(
minWidth: 5.0, minWidth: 5.0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment