|
|
@ -694,7 +694,10 @@ class RawEditorState extends EditorState |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
Widget build(BuildContext context) { |
|
|
|
Widget build(BuildContext context) { |
|
|
|
// TODO: implement build |
|
|
|
assert(debugCheckHasMediaQuery(context)); |
|
|
|
|
|
|
|
_focusAttachment.reparent(); |
|
|
|
|
|
|
|
super.build(context); |
|
|
|
|
|
|
|
|
|
|
|
throw UnimplementedError(); |
|
|
|
throw UnimplementedError(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -731,6 +734,17 @@ class RawEditorState extends EditorState |
|
|
|
widget.focusNode.addListener(_handleFocusChanged); |
|
|
|
widget.focusNode.addListener(_handleFocusChanged); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
|
|
|
didChangeDependencies() { |
|
|
|
|
|
|
|
// TODO |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
|
|
|
void didUpdateWidget(RawEditor oldWidget) { |
|
|
|
|
|
|
|
super.didUpdateWidget(oldWidget); |
|
|
|
|
|
|
|
// TODO |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
handleDelete(bool forward) { |
|
|
|
handleDelete(bool forward) { |
|
|
|
// TODO |
|
|
|
// TODO |
|
|
|
} |
|
|
|
} |
|
|
@ -834,11 +848,40 @@ class RawEditorState extends EditorState |
|
|
|
bool get wantKeepAlive => widget.focusNode.hasFocus; |
|
|
|
bool get wantKeepAlive => widget.focusNode.hasFocus; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef TextSelectionChangedHandler = void Function( |
|
|
|
|
|
|
|
TextSelection selection, SelectionChangedCause cause); |
|
|
|
|
|
|
|
|
|
|
|
class RenderEditor extends RenderEditableContainerBox |
|
|
|
class RenderEditor extends RenderEditableContainerBox |
|
|
|
implements RenderAbstractEditor { |
|
|
|
implements RenderAbstractEditor { |
|
|
|
Document document; |
|
|
|
Document document; |
|
|
|
TextSelection selection; |
|
|
|
TextSelection selection; |
|
|
|
bool _hasFocus = false; |
|
|
|
bool _hasFocus = false; |
|
|
|
|
|
|
|
LayerLink _startHandleLayerLink; |
|
|
|
|
|
|
|
LayerLink _endHandleLayerLink; |
|
|
|
|
|
|
|
TextSelectionChangedHandler onSelectionChanged; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RenderEditor( |
|
|
|
|
|
|
|
List<RenderEditableBox> children, |
|
|
|
|
|
|
|
TextDirection textDirection, |
|
|
|
|
|
|
|
hasFocus, |
|
|
|
|
|
|
|
EdgeInsetsGeometry padding, |
|
|
|
|
|
|
|
this.document, |
|
|
|
|
|
|
|
this.selection, |
|
|
|
|
|
|
|
this._hasFocus, |
|
|
|
|
|
|
|
this.onSelectionChanged, |
|
|
|
|
|
|
|
this._startHandleLayerLink, |
|
|
|
|
|
|
|
this._endHandleLayerLink, |
|
|
|
|
|
|
|
EdgeInsets floatingCursorAddedMargin) |
|
|
|
|
|
|
|
: assert(document != null), |
|
|
|
|
|
|
|
assert(textDirection != null), |
|
|
|
|
|
|
|
assert(hasFocus != null), |
|
|
|
|
|
|
|
assert(floatingCursorAddedMargin != null), |
|
|
|
|
|
|
|
super( |
|
|
|
|
|
|
|
children, |
|
|
|
|
|
|
|
document.root, |
|
|
|
|
|
|
|
textDirection, |
|
|
|
|
|
|
|
padding, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
setDocument(Document doc) { |
|
|
|
setDocument(Document doc) { |
|
|
|
assert(doc != null); |
|
|
|
assert(doc != null); |
|
|
@ -866,6 +909,22 @@ class RenderEditor extends RenderEditableContainerBox |
|
|
|
markNeedsPaint(); |
|
|
|
markNeedsPaint(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setStartHandleLayerLink(LayerLink value) { |
|
|
|
|
|
|
|
if (_startHandleLayerLink == value) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
_startHandleLayerLink = value; |
|
|
|
|
|
|
|
markNeedsPaint(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setEndHandleLayerLink(LayerLink value) { |
|
|
|
|
|
|
|
if (_endHandleLayerLink == value) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
_endHandleLayerLink = value; |
|
|
|
|
|
|
|
markNeedsPaint(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
List<TextSelectionPoint> getEndpointsForSelection( |
|
|
|
List<TextSelectionPoint> getEndpointsForSelection( |
|
|
|
TextSelection textSelection) { |
|
|
|
TextSelection textSelection) { |
|
|
@ -943,6 +1002,15 @@ class RenderEditableContainerBox extends RenderBox |
|
|
|
EdgeInsetsGeometry _padding; |
|
|
|
EdgeInsetsGeometry _padding; |
|
|
|
EdgeInsets _resolvedPadding; |
|
|
|
EdgeInsets _resolvedPadding; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RenderEditableContainerBox(List<RenderEditableBox> children, this._container, |
|
|
|
|
|
|
|
this._textDirection, this._padding) |
|
|
|
|
|
|
|
: assert(_container != null), |
|
|
|
|
|
|
|
assert(_textDirection != null), |
|
|
|
|
|
|
|
assert(_padding != null), |
|
|
|
|
|
|
|
assert(_padding.isNonNegative) { |
|
|
|
|
|
|
|
addAll(children); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
setContainer(container.Container c) { |
|
|
|
setContainer(container.Container c) { |
|
|
|
assert(c != null); |
|
|
|
assert(c != null); |
|
|
|
if (_container == c) { |
|
|
|
if (_container == c) { |
|
|
|