Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
b0c300e5
Commit
b0c300e5
authored
Sep 13, 2015
by
Adam Barth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add dartdoc for proxy_box.dart and other code in rendering
Almost done adding dartdoc to the rendering layer.
parent
945b5bcd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
221 additions
and
82 deletions
+221
-82
sector.dart
examples/widgets/sector.dart
+2
-2
error.dart
packages/flutter/lib/src/rendering/error.dart
+1
-0
grid.dart
packages/flutter/lib/src/rendering/grid.dart
+16
-20
proxy_box.dart
packages/flutter/lib/src/rendering/proxy_box.dart
+189
-47
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+9
-9
dialog.dart
packages/flutter/lib/src/widgets/dialog.dart
+1
-1
popup_menu.dart
packages/flutter/lib/src/widgets/popup_menu.dart
+1
-1
intrinsic_width_test.dart
packages/unit/test/rendering/intrinsic_width_test.dart
+2
-2
No files found.
examples/widgets/sector.dart
View file @
b0c300e5
...
...
@@ -72,7 +72,7 @@ class SectorApp extends App {
child:
new
Row
([
new
RaisedButton
(
enabled:
enabledAdd
,
child:
new
ShrinkWrap
Width
(
child:
new
Intrinsic
Width
(
child:
new
Row
([
new
Container
(
padding:
new
EdgeDims
.
all
(
4.0
),
...
...
@@ -86,7 +86,7 @@ class SectorApp extends App {
),
new
RaisedButton
(
enabled:
enabledRemove
,
child:
new
ShrinkWrap
Width
(
child:
new
Intrinsic
Width
(
child:
new
Row
([
new
Container
(
padding:
new
EdgeDims
.
all
(
4.0
),
...
...
packages/flutter/lib/src/rendering/error.dart
View file @
b0c300e5
...
...
@@ -9,6 +9,7 @@ import 'package:sky/src/rendering/object.dart';
const
double
_kMaxWidth
=
100000.0
;
const
double
_kMaxHeight
=
100000.0
;
/// A render object used as a placeholder when an error occurs
class
RenderErrorBox
extends
RenderBox
{
double
getMinIntrinsicWidth
(
BoxConstraints
constraints
)
{
...
...
packages/flutter/lib/src/rendering/grid.dart
View file @
b0c300e5
...
...
@@ -5,12 +5,10 @@
import
'package:sky/src/rendering/box.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
// accordingly.
factory
GridMetrics
({
double
width
,
int
childCount
,
double
maxChildExtent
})
{
factory
_
GridMetrics
({
double
width
,
int
childCount
,
double
maxChildExtent
})
{
assert
(
width
!=
null
);
assert
(
childCount
!=
null
);
assert
(
maxChildExtent
!=
null
);
...
...
@@ -31,10 +29,10 @@ class GridMetrics {
double
height
=
childPadding
*
(
rowCount
+
1
)
+
(
childExtent
*
rowCount
);
Size
childSize
=
new
Size
(
childExtent
,
childExtent
);
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
childSize
;
...
...
@@ -43,6 +41,15 @@ class GridMetrics {
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
>,
RenderBoxContainerDefaultsMixin
<
RenderBox
,
GridParentData
>
{
RenderGrid
({
Iterable
<
RenderBox
>
children
,
double
maxChildExtent
})
{
...
...
@@ -66,32 +73,21 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
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
)
{
// We can render at any width.
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
maxWidth
=
childCount
*
_maxChildExtent
;
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
desiredHeight
=
_computeMetrics
().
size
.
height
;
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
)
{
return
getMinIntrinsicHeight
(
constraints
);
}
...
...
@@ -100,8 +96,8 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
return
defaultComputeDistanceToHighestActualBaseline
(
baseline
);
}
GridMetrics
_computeMetrics
()
{
return
new
GridMetrics
(
_
GridMetrics
_computeMetrics
()
{
return
new
_
GridMetrics
(
width:
constraints
.
maxWidth
,
childCount:
childCount
,
maxChildExtent:
_maxChildExtent
...
...
@@ -111,7 +107,7 @@ class RenderGrid extends RenderBox with ContainerRenderObjectMixin<RenderBox, Gr
void
performLayout
()
{
// We could shrink-wrap our contents when infinite, but for now we don't.
assert
(
constraints
.
maxWidth
<
double
.
INFINITY
);
GridMetrics
metrics
=
_computeMetrics
();
_
GridMetrics
metrics
=
_computeMetrics
();
size
=
constraints
.
constrain
(
metrics
.
size
);
if
(
constraints
.
maxHeight
<
size
.
height
)
_hasVisualOverflow
=
true
;
...
...
packages/flutter/lib/src/rendering/proxy_box.dart
View file @
b0c300e5
...
...
@@ -12,10 +12,19 @@ import 'package:vector_math/vector_math.dart';
export
'package:sky/src/painting/box_painter.dart'
;
/// A base class for render objects that resemble their children
///
/// A proxy box has a single child and simply mimics all the properties of that
/// child by calling through to the child for each function in the render box
/// protocol. For example, a proxy box determines its size by askings its child
/// to layout with the same constraints and then matching the size.
///
/// A proxy box isn't useful on its own because you might as well just replace
/// the proxy box with its child. However, RenderProxyBox is a useful base class
/// for render objects that wish to mimic most, but not all, of the properties
/// of their child.
class
RenderProxyBox
extends
RenderBox
with
RenderObjectWithChildMixin
<
RenderBox
>
{
// ProxyBox assumes the child will be at 0,0 and will have the same size
RenderProxyBox
([
RenderBox
child
=
null
])
{
this
.
child
=
child
;
}
...
...
@@ -72,6 +81,15 @@ class RenderProxyBox extends RenderBox with RenderObjectWithChildMixin<RenderBox
}
}
/// A render object that imposes additional constraints on its child
///
/// A render constrainted box proxies most functions in the render box protocol
/// to its child, except that when laying out its child, it tightens the
/// constraints provided by its parent by enforcing the [additionalConstraints]
/// as well.
///
/// For example, if you wanted [child] to have a minimum height, you could use
/// `const BoxConstraints(minHeight: 50.0)`` as the [additionalConstraints].
class
RenderConstrainedBox
extends
RenderProxyBox
{
RenderConstrainedBox
({
RenderBox
child
,
...
...
@@ -80,8 +98,9 @@ class RenderConstrainedBox extends RenderProxyBox {
assert
(
additionalConstraints
!=
null
);
}
BoxConstraints
_additionalConstraints
;
/// Additional constraints to apply to [child] during layout
BoxConstraints
get
additionalConstraints
=>
_additionalConstraints
;
BoxConstraints
_additionalConstraints
;
void
set
additionalConstraints
(
BoxConstraints
newConstraints
)
{
assert
(
newConstraints
!=
null
);
if
(
_additionalConstraints
==
newConstraints
)
...
...
@@ -126,6 +145,14 @@ class RenderConstrainedBox extends RenderProxyBox {
String
debugDescribeSettings
(
String
prefix
)
=>
'
${super.debugDescribeSettings(prefix)}${prefix}
additionalConstraints:
${additionalConstraints}
\n
'
;
}
/// Forces child to layout at a specific aspect ratio
///
/// The width of this render object is the largest width permited by the layout
/// constraints. The height of the render object is determined by applying the
/// given aspect ratio to the width.
///
/// The aspect ratio is expressed as a ratio of width to height. For example,
/// a 16:9 width:height aspect ratio would have a value of 16.0/9.0.
class
RenderAspectRatio
extends
RenderProxyBox
{
RenderAspectRatio
({
RenderBox
child
,
...
...
@@ -134,8 +161,12 @@ class RenderAspectRatio extends RenderProxyBox {
assert
(
_aspectRatio
!=
null
);
}
double
_aspectRatio
;
/// The aspect ratio to use when computing the height from the width
///
/// The aspect ratio is expressed as a ratio of width to height. For example,
/// a 16:9 width:height aspect ratio would have a value of 16.0/9.0.
double
get
aspectRatio
=>
_aspectRatio
;
double
_aspectRatio
;
void
set
aspectRatio
(
double
newAspectRatio
)
{
assert
(
newAspectRatio
!=
null
);
if
(
_aspectRatio
==
newAspectRatio
)
...
...
@@ -172,24 +203,29 @@ class RenderAspectRatio extends RenderProxyBox {
String
debugDescribeSettings
(
String
prefix
)
=>
'
${super.debugDescribeSettings(prefix)}${prefix}
aspectRatio:
${aspectRatio}
\n
'
;
}
class
RenderShrinkWrapWidth
extends
RenderProxyBox
{
// This class will attempt to size its child to the child's maximum
// intrinsic width, snapped to a multiple of the stepWidth, if one
// is provided, and given the provided constraints; and will then
// adopt the child's resulting dimensions.
// Note: laying out this class is relatively expensive. Avoid using
// it where possible.
RenderShrinkWrapWidth
({
/// Sizes its child to the child's intrinsic width
///
/// This class will size its child's width to the child's maximum intrinsic
/// width. If [stepWidth] is non-null, the child's width will be snapped to a
/// multiple of the [stepWidth]. Similarly, if [stepHeight] is non-null, the
/// child's height will be snapped to a multiple of the [stepHeight].
///
/// This class is useful, for example, when unlimited width is available and
/// you would like a child that would otherwise attempt to expand infinitely to
/// instead size itself to a more reasonable width.
///
/// Note: This class is relatively expensive. Avoid using it where possible.
class
RenderIntrinsicWidth
extends
RenderProxyBox
{
RenderIntrinsicWidth
({
double
stepWidth
,
double
stepHeight
,
RenderBox
child
})
:
_stepWidth
=
stepWidth
,
_stepHeight
=
stepHeight
,
super
(
child
);
double
_stepWidth
;
/// If non-null, force the child's width to be a multiple of this value
double
get
stepWidth
=>
_stepWidth
;
double
_stepWidth
;
void
set
stepWidth
(
double
newStepWidth
)
{
if
(
newStepWidth
==
_stepWidth
)
return
;
...
...
@@ -197,8 +233,9 @@ class RenderShrinkWrapWidth extends RenderProxyBox {
markNeedsLayout
();
}
double
_stepHeight
;
/// If non-null, force the child's height to be a multiple of this value
double
get
stepHeight
=>
_stepHeight
;
double
_stepHeight
;
void
set
stepHeight
(
double
newStepHeight
)
{
if
(
newStepHeight
==
_stepHeight
)
return
;
...
...
@@ -206,7 +243,7 @@ class RenderShrinkWrapWidth extends RenderProxyBox {
markNeedsLayout
();
}
static
double
applyStep
(
double
input
,
double
step
)
{
static
double
_
applyStep
(
double
input
,
double
step
)
{
if
(
step
==
null
)
return
input
;
return
(
input
/
step
).
ceil
()
*
step
;
...
...
@@ -218,7 +255,7 @@ class RenderShrinkWrapWidth extends RenderProxyBox {
return
constraints
;
double
width
=
child
.
getMaxIntrinsicWidth
(
constraints
);
assert
(
width
==
constraints
.
constrainWidth
(
width
));
return
constraints
.
tightenWidth
(
applyStep
(
width
,
_stepWidth
));
return
constraints
.
tightenWidth
(
_
applyStep
(
width
,
_stepWidth
));
}
double
getMinIntrinsicWidth
(
BoxConstraints
constraints
)
{
...
...
@@ -229,21 +266,21 @@ class RenderShrinkWrapWidth extends RenderProxyBox {
if
(
child
==
null
)
return
constraints
.
constrainWidth
(
0.0
);
double
childResult
=
child
.
getMaxIntrinsicWidth
(
constraints
);
return
constraints
.
constrainWidth
(
applyStep
(
childResult
,
_stepWidth
));
return
constraints
.
constrainWidth
(
_
applyStep
(
childResult
,
_stepWidth
));
}
double
getMinIntrinsicHeight
(
BoxConstraints
constraints
)
{
if
(
child
==
null
)
return
constraints
.
constrainHeight
(
0.0
);
double
childResult
=
child
.
getMinIntrinsicHeight
(
_getInnerConstraints
(
constraints
));
return
constraints
.
constrainHeight
(
applyStep
(
childResult
,
_stepHeight
));
return
constraints
.
constrainHeight
(
_
applyStep
(
childResult
,
_stepHeight
));
}
double
getMaxIntrinsicHeight
(
BoxConstraints
constraints
)
{
if
(
child
==
null
)
return
constraints
.
constrainHeight
(
0.0
);
double
childResult
=
child
.
getMaxIntrinsicHeight
(
_getInnerConstraints
(
constraints
));
return
constraints
.
constrainHeight
(
applyStep
(
childResult
,
_stepHeight
));
return
constraints
.
constrainHeight
(
_
applyStep
(
childResult
,
_stepHeight
));
}
void
performLayout
()
{
...
...
@@ -262,16 +299,19 @@ class RenderShrinkWrapWidth extends RenderProxyBox {
}
class
RenderShrinkWrapHeight
extends
RenderProxyBox
{
// This class will attempt to size its child to the child's maximum
// intrinsic height, given the provided constraints; and will then
// adopt the child's resulting dimensions.
// Note: laying out this class is relatively expensive. Avoid using
// it where possible.
RenderShrinkWrapHeight
({
/// Sizes its child to the child's intrinsic height
///
/// This class will size its child's height to the child's maximum intrinsic
/// height.
///
/// This class is useful, for example, when unlimited height is available and
/// you would like a child that would otherwise attempt to expand infinitely to
/// instead size itself to a more reasonable height.
///
/// Note: This class is relatively expensive. Avoid using it where possible.
class
RenderIntrinsicHeight
extends
RenderProxyBox
{
RenderIntrinsicHeight
({
RenderBox
child
})
:
super
(
child
);
...
...
@@ -317,14 +357,25 @@ class RenderShrinkWrapHeight extends RenderProxyBox {
}
/// Makes its child partially transparent
///
/// This class paints its child into an intermediate buffer and then blends the
/// child back into the scene partially transparent.
///
/// Note: This class is relatively expensive because it requires painting the
/// child into an intermediate buffer.
class
RenderOpacity
extends
RenderProxyBox
{
RenderOpacity
({
RenderBox
child
,
double
opacity
})
:
this
.
_opacity
=
opacity
,
super
(
child
)
{
assert
(
opacity
>=
0.0
&&
opacity
<=
1.0
);
}
double
_opacity
;
/// The fraction to scale the child's alpha value
///
/// An opacity of 1.0 is fully opaque. An opacity of 0.0 is fully transparent
/// (i.e., invisible).
double
get
opacity
=>
_opacity
;
double
_opacity
;
void
set
opacity
(
double
newOpacity
)
{
assert
(
newOpacity
!=
null
);
assert
(
newOpacity
>=
0.0
&&
newOpacity
<=
1.0
);
...
...
@@ -349,13 +400,21 @@ class RenderOpacity extends RenderProxyBox {
}
}
/// Applies a color filter when painting its child
///
/// This class paints its child into an intermediate buffer and then blends the
/// child back into the scene using a color filter.
///
/// Note: This class is relatively expensive because it requires painting the
/// child into an intermediate buffer.
class
RenderColorFilter
extends
RenderProxyBox
{
RenderColorFilter
({
RenderBox
child
,
Color
color
,
sky
.
TransferMode
transferMode
})
:
_color
=
color
,
_transferMode
=
transferMode
,
super
(
child
)
{
}
Color
_color
;
/// The color to use as input to the color filter
Color
get
color
=>
_color
;
Color
_color
;
void
set
color
(
Color
newColor
)
{
assert
(
newColor
!=
null
);
if
(
_color
==
newColor
)
...
...
@@ -364,8 +423,9 @@ class RenderColorFilter extends RenderProxyBox {
markNeedsPaint
();
}
sky
.
TransferMode
_transferMode
;
/// The transfer mode to use when combining the child's painting and the [color]
sky
.
TransferMode
get
transferMode
=>
_transferMode
;
sky
.
TransferMode
_transferMode
;
void
set
transferMode
(
sky
.
TransferMode
newTransferMode
)
{
assert
(
newTransferMode
!=
null
);
if
(
_transferMode
==
newTransferMode
)
...
...
@@ -380,6 +440,9 @@ class RenderColorFilter extends RenderProxyBox {
}
}
/// Clips its child using a rectangle
///
/// Prevents its child from painting outside its bounds.
class
RenderClipRect
extends
RenderProxyBox
{
RenderClipRect
({
RenderBox
child
})
:
super
(
child
);
...
...
@@ -389,6 +452,11 @@ class RenderClipRect extends RenderProxyBox {
}
}
/// Clips its child using a rounded rectangle
///
/// Creates a rounded rectangle from its layout dimensions and the given x and
/// y radius values and prevents its child from painting outside that rounded
/// rectangle.
class
RenderClipRRect
extends
RenderProxyBox
{
RenderClipRRect
({
RenderBox
child
,
double
xRadius
,
double
yRadius
})
:
_xRadius
=
xRadius
,
_yRadius
=
yRadius
,
super
(
child
)
{
...
...
@@ -396,8 +464,12 @@ class RenderClipRRect extends RenderProxyBox {
assert
(
_yRadius
!=
null
);
}
double
_xRadius
;
/// The radius of the rounded corners in the horizontal direction
///
/// Values are clamped to be between zero and half the width of the render
/// object.
double
get
xRadius
=>
_xRadius
;
double
_xRadius
;
void
set
xRadius
(
double
newXRadius
)
{
assert
(
newXRadius
!=
null
);
if
(
_xRadius
==
newXRadius
)
...
...
@@ -406,8 +478,12 @@ class RenderClipRRect extends RenderProxyBox {
markNeedsPaint
();
}
double
_yRadius
;
/// The radius of the rounded corners in the vertical direction
///
/// Values are clamped to be between zero and half the height of the render
/// object.
double
get
yRadius
=>
_yRadius
;
double
_yRadius
;
void
set
yRadius
(
double
newYRadius
)
{
assert
(
newYRadius
!=
null
);
if
(
_yRadius
==
newYRadius
)
...
...
@@ -425,6 +501,10 @@ class RenderClipRRect extends RenderProxyBox {
}
}
/// Clips its child using an oval
///
/// Inscribes an oval into its layout dimensions and prevents its child from
/// painting outside that oval.
class
RenderClipOval
extends
RenderProxyBox
{
RenderClipOval
({
RenderBox
child
})
:
super
(
child
);
...
...
@@ -447,22 +527,40 @@ class RenderClipOval extends RenderProxyBox {
}
}
/// Where to paint a box decoration
enum
BoxDecorationPosition
{
/// Paint the box decoration behind the children
background
,
/// Paint the box decoration in front of the children
foreground
,
}
/// Paints a [BoxDecoration] either before or after its child paints
class
RenderDecoratedBox
extends
RenderProxyBox
{
RenderDecoratedBox
({
BoxDecoration
decoration
,
RenderBox
child
,
this
.
position
:
BoxDecorationPosition
.
background
})
:
_painter
=
new
BoxPainter
(
decoration
),
super
(
child
);
BoxDecorationPosition
position
;
final
BoxPainter
_painter
;
BoxDecorationPosition
position:
BoxDecorationPosition
.
background
})
:
_painter
=
new
BoxPainter
(
decoration
),
_position
=
position
,
super
(
child
)
{
assert
(
decoration
!=
null
);
assert
(
position
!=
null
);
}
/// Where to paint the box decoration
BoxDecorationPosition
get
position
=>
_position
;
BoxDecorationPosition
_position
;
void
set
position
(
BoxDecorationPosition
newPosition
)
{
assert
(
newPosition
!=
null
);
if
(
newPosition
==
_position
)
return
;
markNeedsPaint
();
}
/// What decoration to paint
BoxDecoration
get
decoration
=>
_painter
.
decoration
;
void
set
decoration
(
BoxDecoration
newDecoration
)
{
assert
(
newDecoration
!=
null
);
...
...
@@ -474,6 +572,8 @@ class RenderDecoratedBox extends RenderProxyBox {
markNeedsPaint
();
}
final
BoxPainter
_painter
;
bool
get
_needsBackgroundImageListener
{
return
attached
&&
_painter
.
decoration
!=
null
&&
...
...
@@ -513,6 +613,7 @@ class RenderDecoratedBox extends RenderProxyBox {
String
debugDescribeSettings
(
String
prefix
)
=>
'
${super.debugDescribeSettings(prefix)}${prefix}
decoration:
\n
${_painter.decoration.toString(prefix + " ")}
\n
'
;
}
/// Applies a transformation before painting its child
class
RenderTransform
extends
RenderProxyBox
{
RenderTransform
({
Matrix4
transform
,
...
...
@@ -524,10 +625,13 @@ class RenderTransform extends RenderProxyBox {
this
.
origin
=
origin
;
}
Matrix4
_transform
;
Offset
_origin
;
/// The origin of the coordinate system (relative to the upper left corder of
/// this render object) in which to apply the matrix
///
/// Setting an origin is equivalent to conjugating the transform matrix by a
/// translation. This property is provided just for convenience.
Offset
get
origin
=>
_origin
;
Offset
_origin
;
void
set
origin
(
Offset
newOrigin
)
{
if
(
_origin
==
newOrigin
)
return
;
...
...
@@ -535,6 +639,10 @@ class RenderTransform extends RenderProxyBox {
markNeedsPaint
();
}
// Note the lack of a getter for transform because Matrix4 is not immutable
Matrix4
_transform
;
/// The matrix to transform the child by during painting
void
set
transform
(
Matrix4
newTransform
)
{
assert
(
newTransform
!=
null
);
if
(
_transform
==
newTransform
)
...
...
@@ -543,31 +651,37 @@ class RenderTransform extends RenderProxyBox {
markNeedsPaint
();
}
/// Sets the transform to the identity matrix
void
setIdentity
()
{
_transform
.
setIdentity
();
markNeedsPaint
();
}
/// Concatenates a rotation about the x axis into the transform
void
rotateX
(
double
radians
)
{
_transform
.
rotateX
(
radians
);
markNeedsPaint
();
}
/// Concatenates a rotation about the y axis into the transform
void
rotateY
(
double
radians
)
{
_transform
.
rotateY
(
radians
);
markNeedsPaint
();
}
/// Concatenates a rotation about the z axis into the transform
void
rotateZ
(
double
radians
)
{
_transform
.
rotateZ
(
radians
);
markNeedsPaint
();
}
/// Concatenates a translation by (x, y, z) into the transform
void
translate
(
x
,
[
double
y
=
0.0
,
double
z
=
0.0
])
{
_transform
.
translate
(
x
,
y
,
z
);
markNeedsPaint
();
}
/// Concatenates a scale into the transform
void
scale
(
x
,
[
double
y
,
double
z
])
{
_transform
.
scale
(
x
,
y
,
z
);
markNeedsPaint
();
...
...
@@ -611,8 +725,13 @@ class RenderTransform extends RenderProxyBox {
}
}
/// Called when a size changes
typedef
void
SizeChangedCallback
(
Size
newSize
);
/// Calls [callback] whenever the child's layout size changes
///
/// Note: Size observer calls its callback during layout, which means you cannot
/// dirty layout information during the callback.
class
RenderSizeObserver
extends
RenderProxyBox
{
RenderSizeObserver
({
this
.
callback
,
...
...
@@ -621,20 +740,32 @@ class RenderSizeObserver extends RenderProxyBox {
assert
(
callback
!=
null
);
}
/// The callback to call whenever the child's layout size changes
SizeChangedCallback
callback
;
void
performLayout
()
{
Size
oldSize
=
size
;
super
.
performLayout
();
if
(
oldSize
!=
size
)
callback
(
size
);
}
}
/// Called when its time to paint into the given canvas
typedef
void
CustomPaintCallback
(
PaintingCanvas
canvas
,
Size
size
);
/// Delegates its painting to [callback]
///
/// When asked to paint, custom paint first calls its callback with the current
/// canvas and then paints its children. The coodinate system of the canvas
/// matches the coordinate system of the custom paint object. The callback is
/// expected to paint with in a rectangle starting at the origin and
/// encompassing a region of the given size. If the callback paints outside
/// those bounds, there might be insufficient memory allocated to rasterize the
/// painting commands and the resulting behavior is undefined.
///
/// Note: Custom paint calls its callback during paint, which means you cannot
/// dirty layout or paint information during the callback.
class
RenderCustomPaint
extends
RenderProxyBox
{
RenderCustomPaint
({
...
...
@@ -645,6 +776,11 @@ class RenderCustomPaint extends RenderProxyBox {
_callback
=
callback
;
}
/// The callback to which this render object delegates its painting
///
/// The callback must be non-null whenever the render object is attached to
/// the render tree.
CustomPaintCallback
get
callback
=>
_callback
;
CustomPaintCallback
_callback
;
void
set
callback
(
CustomPaintCallback
newCallback
)
{
assert
(
newCallback
!=
null
||
!
attached
);
...
...
@@ -670,6 +806,12 @@ class RenderCustomPaint extends RenderProxyBox {
}
}
/// Is invisible during hit testing
///
/// When [ignoring] is true, this render object is invisible to hit testing. It
/// still consumes space during layout and paints its child as usual. It just
/// cannot be the target of located events because it returns false from
/// [hitTest].
class
RenderIgnorePointer
extends
RenderProxyBox
{
RenderIgnorePointer
({
RenderBox
child
,
bool
ignoring:
true
})
:
super
(
child
);
...
...
packages/flutter/lib/src/widgets/basic.dart
View file @
b0c300e5
...
...
@@ -292,29 +292,29 @@ class AspectRatio extends OneChildRenderObjectWrapper {
}
}
class
ShrinkWrap
Width
extends
OneChildRenderObjectWrapper
{
ShrinkWrap
Width
({
Key
key
,
this
.
stepWidth
,
this
.
stepHeight
,
Widget
child
})
class
Intrinsic
Width
extends
OneChildRenderObjectWrapper
{
Intrinsic
Width
({
Key
key
,
this
.
stepWidth
,
this
.
stepHeight
,
Widget
child
})
:
super
(
key:
key
,
child:
child
);
final
double
stepWidth
;
final
double
stepHeight
;
Render
ShrinkWrapWidth
createNode
()
=>
new
RenderShrinkWrap
Width
(
stepWidth:
stepWidth
,
stepHeight:
stepHeight
);
Render
ShrinkWrap
Width
get
renderObject
=>
super
.
renderObject
;
Render
IntrinsicWidth
createNode
()
=>
new
RenderIntrinsic
Width
(
stepWidth:
stepWidth
,
stepHeight:
stepHeight
);
Render
Intrinsic
Width
get
renderObject
=>
super
.
renderObject
;
void
syncRenderObject
(
ShrinkWrap
Width
old
)
{
void
syncRenderObject
(
Intrinsic
Width
old
)
{
super
.
syncRenderObject
(
old
);
renderObject
.
stepWidth
=
stepWidth
;
renderObject
.
stepHeight
=
stepHeight
;
}
}
class
ShrinkWrap
Height
extends
OneChildRenderObjectWrapper
{
ShrinkWrap
Height
({
Key
key
,
Widget
child
})
class
Intrinsic
Height
extends
OneChildRenderObjectWrapper
{
Intrinsic
Height
({
Key
key
,
Widget
child
})
:
super
(
key:
key
,
child:
child
);
Render
ShrinkWrapHeight
createNode
()
=>
new
RenderShrinkWrap
Height
();
Render
ShrinkWrap
Height
get
renderObject
=>
super
.
renderObject
;
Render
IntrinsicHeight
createNode
()
=>
new
RenderIntrinsic
Height
();
Render
Intrinsic
Height
get
renderObject
=>
super
.
renderObject
;
// Nothing to sync, so we don't implement syncRenderObject()
}
...
...
packages/flutter/lib/src/widgets/dialog.dart
View file @
b0c300e5
...
...
@@ -119,7 +119,7 @@ class Dialog extends Component {
child:
new
Material
(
level:
4
,
color:
_color
,
child:
new
ShrinkWrap
Width
(
child:
new
Intrinsic
Width
(
child:
new
Block
(
dialogBody
)
)
)
...
...
packages/flutter/lib/src/widgets/popup_menu.dart
View file @
b0c300e5
...
...
@@ -132,7 +132,7 @@ class PopupMenu extends StatefulComponent {
minWidth:
_kMenuMinWidth
,
maxWidth:
_kMenuMaxWidth
),
child:
new
ShrinkWrap
Width
(
child:
new
Intrinsic
Width
(
stepWidth:
_kMenuWidthStep
,
child:
new
ScrollableViewport
(
child:
new
Container
(
...
...
packages/unit/test/rendering/
shrink_wrap
_test.dart
→
packages/unit/test/rendering/
intrinsic_width
_test.dart
View file @
b0c300e5
...
...
@@ -35,7 +35,7 @@ void main() {
test
(
'Shrink-wrapping width'
,
()
{
RenderBox
child
=
new
RenderTestBox
(
new
BoxConstraints
(
minWidth:
10.0
,
maxWidth:
100.0
,
minHeight:
20.0
,
maxHeight:
200.0
));
RenderBox
parent
=
new
Render
ShrinkWrap
Width
(
child:
child
);
RenderBox
parent
=
new
Render
Intrinsic
Width
(
child:
child
);
layout
(
parent
,
constraints:
new
BoxConstraints
(
minWidth:
5.0
,
...
...
@@ -49,7 +49,7 @@ void main() {
test
(
'Shrink-wrapping height'
,
()
{
RenderBox
child
=
new
RenderTestBox
(
new
BoxConstraints
(
minWidth:
10.0
,
maxWidth:
100.0
,
minHeight:
20.0
,
maxHeight:
200.0
));
RenderBox
parent
=
new
Render
ShrinkWrap
Height
(
child:
child
);
RenderBox
parent
=
new
Render
Intrinsic
Height
(
child:
child
);
layout
(
parent
,
constraints:
new
BoxConstraints
(
minWidth:
5.0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment