您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
128 行
3.9 KiB
128 行
3.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UIWidgets.editor;
|
|
using UIWidgets.painting;
|
|
using UIWidgets.rendering;
|
|
using UIWidgets.ui;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
using Color = UIWidgets.ui.Color;
|
|
|
|
namespace UIWidgets.Tests {
|
|
public class RenderBoxes : EditorWindow {
|
|
private readonly Func<RenderBox>[] _options;
|
|
|
|
private readonly string[] _optionStrings;
|
|
|
|
private int _selected;
|
|
|
|
RenderBoxes() {
|
|
this._options = new Func<RenderBox>[] {
|
|
this.none,
|
|
this.decoratedBox,
|
|
this.flex,
|
|
};
|
|
this._optionStrings = this._options.Select(x => x.Method.Name).ToArray();
|
|
this._selected = 0;
|
|
|
|
this.titleContent = new GUIContent("RenderBoxes");
|
|
}
|
|
|
|
private WindowAdapter windowAdapter;
|
|
|
|
[NonSerialized] private bool hasInvoked = false;
|
|
|
|
void OnGUI() {
|
|
var selected = EditorGUILayout.Popup("test case", this._selected, this._optionStrings);
|
|
if (selected != this._selected || !this.hasInvoked) {
|
|
this._selected = selected;
|
|
this.hasInvoked = true;
|
|
|
|
var renderBox = this._options[this._selected]();
|
|
if (this.windowAdapter != null) {
|
|
this.windowAdapter.attachRootRenderBox(renderBox);
|
|
}
|
|
}
|
|
|
|
if (this.windowAdapter != null) {
|
|
this.windowAdapter.OnGUI();
|
|
}
|
|
|
|
}
|
|
|
|
void Update() {
|
|
if (this.windowAdapter != null) {
|
|
this.windowAdapter.Update();
|
|
}
|
|
}
|
|
|
|
private void OnEnable() {
|
|
this.windowAdapter = new WindowAdapter(this);
|
|
}
|
|
|
|
void OnDestroy() {
|
|
this.windowAdapter = null;
|
|
}
|
|
|
|
RenderBox none() {
|
|
return null;
|
|
}
|
|
|
|
RenderBox decoratedBox() {
|
|
return new RenderConstrainedOverflowBox(
|
|
minWidth: 100,
|
|
maxWidth: 100,
|
|
minHeight: 100,
|
|
maxHeight: 100,
|
|
child: new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(
|
|
color: new Color(0xFFFFFFFF),
|
|
borderRadius: BorderRadius.all(3),
|
|
boxShadow: new List<BoxShadow> {
|
|
new BoxShadow(
|
|
color: new Color(0xFFFF00FF),
|
|
offset: new Offset(0, 0),
|
|
blurRadius: 3.0,
|
|
spreadRadius: 10
|
|
)
|
|
}
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
RenderBox flex() {
|
|
var flexbox = new RenderFlex(
|
|
direction: Axis.horizontal,
|
|
crossAxisAlignment: CrossAxisAlignment.center);
|
|
|
|
flexbox.add(new RenderConstrainedBox(
|
|
additionalConstraints: new BoxConstraints(minWidth: 300, minHeight: 200),
|
|
child: new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(
|
|
color: new Color(0xFF00FF00)
|
|
)
|
|
)));
|
|
|
|
flexbox.add(new RenderConstrainedBox(
|
|
additionalConstraints: new BoxConstraints(minWidth: 100, minHeight: 300),
|
|
child: new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(
|
|
color: new Color(0xFF00FFFF)
|
|
)
|
|
)));
|
|
|
|
flexbox.add(new RenderConstrainedBox(
|
|
additionalConstraints: new BoxConstraints(minWidth: 50, minHeight: 100),
|
|
child: new RenderDecoratedBox(
|
|
decoration: new BoxDecoration(
|
|
color: new Color(0xFF0000FF)
|
|
)
|
|
)));
|
|
|
|
|
|
return flexbox;
|
|
}
|
|
}
|
|
}
|