您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
131 行
4.2 KiB
131 行
4.2 KiB
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.gestures;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.rendering;
|
|
using Unity.UIWidgets.ui;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgets.Runtime.rendering {
|
|
class RotatedBoxUtils {
|
|
public const float _kQuarterTurnsInRadians = Mathf.PI / 2.0f;
|
|
}
|
|
|
|
public class RenderRotatedBox : RenderObjectWithChildMixinRenderBox<RenderBox> {
|
|
public RenderRotatedBox(
|
|
int quarterTurns,
|
|
RenderBox child = null
|
|
) {
|
|
this.child = child;
|
|
_quarterTurns = quarterTurns;
|
|
}
|
|
|
|
public int quarterTurns {
|
|
get { return _quarterTurns; }
|
|
set {
|
|
if (_quarterTurns == value) {
|
|
return;
|
|
}
|
|
|
|
_quarterTurns = value;
|
|
markNeedsLayout();
|
|
}
|
|
}
|
|
|
|
int _quarterTurns;
|
|
|
|
bool _isVertical {
|
|
get { return quarterTurns % 2 == 1; }
|
|
}
|
|
|
|
protected internal override float computeMinIntrinsicWidth(float height) {
|
|
if (child == null) {
|
|
return 0.0f;
|
|
}
|
|
|
|
return _isVertical
|
|
? child.getMinIntrinsicHeight(height)
|
|
: child.getMinIntrinsicWidth(height);
|
|
}
|
|
|
|
protected internal override float computeMaxIntrinsicWidth(float height) {
|
|
if (child == null) {
|
|
return 0.0f;
|
|
}
|
|
|
|
return _isVertical
|
|
? child.getMaxIntrinsicHeight(height)
|
|
: child.getMaxIntrinsicWidth(height);
|
|
}
|
|
|
|
protected internal override float computeMinIntrinsicHeight(float width) {
|
|
if (child == null) {
|
|
return 0.0f;
|
|
}
|
|
|
|
return _isVertical ? child.getMinIntrinsicWidth(width) : child.getMinIntrinsicHeight(width);
|
|
}
|
|
|
|
protected internal override float computeMaxIntrinsicHeight(float width) {
|
|
if (child == null) {
|
|
return 0.0f;
|
|
}
|
|
|
|
return _isVertical ? child.getMaxIntrinsicWidth(width) : child.getMaxIntrinsicHeight(width);
|
|
}
|
|
|
|
Matrix4 _paintTransform;
|
|
|
|
protected override void performLayout() {
|
|
_paintTransform = null;
|
|
if (child != null) {
|
|
child.layout(_isVertical ? constraints.flipped : constraints, parentUsesSize: true);
|
|
size = _isVertical
|
|
? new Size(child.size.height, child.size.width)
|
|
: child.size;
|
|
_paintTransform = Matrix4.identity();
|
|
_paintTransform.translate(size.width / 2.0f, size.height / 2.0f);
|
|
_paintTransform.rotateZ(RotatedBoxUtils._kQuarterTurnsInRadians * (quarterTurns % 4));
|
|
_paintTransform.translate(-child.size.width / 2.0f, -child.size.height / 2.0f);
|
|
}
|
|
else {
|
|
performResize();
|
|
}
|
|
}
|
|
|
|
protected override bool hitTestChildren(
|
|
BoxHitTestResult result,
|
|
Offset position = null
|
|
) {
|
|
D.assert(_paintTransform != null || debugNeedsLayout || child == null);
|
|
if (child == null || _paintTransform == null) {
|
|
return false;
|
|
}
|
|
|
|
return result.addWithPaintTransform(
|
|
transform: _paintTransform,
|
|
position: position,
|
|
hitTest: (BoxHitTestResult resultIn, Offset positionIn) => {
|
|
return child.hitTest(resultIn, position: positionIn);
|
|
}
|
|
);
|
|
}
|
|
|
|
void _paintChild(PaintingContext context, Offset offset) {
|
|
context.paintChild(child, offset);
|
|
}
|
|
|
|
public override void paint(PaintingContext context, Offset offset) {
|
|
if (child != null) {
|
|
context.pushTransform(needsCompositing, offset, _paintTransform, _paintChild);
|
|
}
|
|
}
|
|
|
|
public override void applyPaintTransform(RenderObject child, Matrix4 transform) {
|
|
if (_paintTransform != null) {
|
|
transform.multiply(_paintTransform);
|
|
}
|
|
|
|
base.applyPaintTransform(child, transform);
|
|
}
|
|
}
|
|
}
|