From cc48a2539eb7fa13e46625612bebba49336eebbb Mon Sep 17 00:00:00 2001 From: Cierra_Runis <2864283875@qq.com> Date: Sat, 18 May 2024 13:21:12 +0800 Subject: [PATCH] feat: Add `readOnlyMouseCursor` to config mouse cursor type (#1873) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🌍Add `readOnlyMouseCursor` to config mouse cursor type Related issue: [Bug] Mouse cursor is still text insertion type when `readOnly` is `false` #1752 * 🔧Fix import --- .../config/raw_editor/raw_editor_configurations.dart | 7 ++++++- .../widgets/raw_editor/raw_editor_render_object.dart | 5 +++-- lib/src/widgets/raw_editor/raw_editor_state.dart | 12 ++++++++---- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/lib/src/models/config/raw_editor/raw_editor_configurations.dart b/lib/src/models/config/raw_editor/raw_editor_configurations.dart index eb1f9def..51906cfe 100644 --- a/lib/src/models/config/raw_editor/raw_editor_configurations.dart +++ b/lib/src/models/config/raw_editor/raw_editor_configurations.dart @@ -22,7 +22,9 @@ import 'package:flutter/widgets.dart' TextFieldTapRegion, TextSelectionControls, ValueChanged, - Widget; + Widget, + MouseCursor, + SystemMouseCursors; import 'package:meta/meta.dart' show immutable; import '../../../widgets/others/cursor.dart'; @@ -174,6 +176,9 @@ class QuillRawEditorConfigurations extends Equatable { /// The style to be used for the editing cursor. final CursorStyle cursorStyle; + /// The [readOnlyMouseCursor] is used for Windows, macOS when [readOnly] is [true] + final MouseCursor readOnlyMouseCursor = SystemMouseCursors.text; + /// Configures how the platform keyboard will select an uppercase or /// lowercase keyboard. /// diff --git a/lib/src/widgets/raw_editor/raw_editor_render_object.dart b/lib/src/widgets/raw_editor/raw_editor_render_object.dart index af99671f..ec9fb2cd 100644 --- a/lib/src/widgets/raw_editor/raw_editor_render_object.dart +++ b/lib/src/widgets/raw_editor/raw_editor_render_object.dart @@ -5,8 +5,9 @@ import '../../models/documents/document.dart'; import '../editor/editor.dart'; import '../others/cursor.dart'; -class QuilRawEditorMultiChildRenderObject extends MultiChildRenderObjectWidget { - const QuilRawEditorMultiChildRenderObject({ +class QuillRawEditorMultiChildRenderObject + extends MultiChildRenderObjectWidget { + const QuillRawEditorMultiChildRenderObject({ required super.children, required this.document, required this.textDirection, diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index e452f4fd..07e5f013 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -483,8 +483,10 @@ class QuillRawEditorState extends EditorState viewportBuilder: (_, offset) => CompositedTransformTarget( link: _toolbarLayerLink, child: MouseRegion( - cursor: SystemMouseCursors.text, - child: QuilRawEditorMultiChildRenderObject( + cursor: widget.configurations.readOnly + ? widget.configurations.readOnlyMouseCursor + : SystemMouseCursors.text, + child: QuillRawEditorMultiChildRenderObject( key: _editorKey, offset: offset, document: doc, @@ -515,8 +517,10 @@ class QuillRawEditorState extends EditorState link: _toolbarLayerLink, child: Semantics( child: MouseRegion( - cursor: SystemMouseCursors.text, - child: QuilRawEditorMultiChildRenderObject( + cursor: widget.configurations.readOnly + ? widget.configurations.readOnlyMouseCursor + : SystemMouseCursors.text, + child: QuillRawEditorMultiChildRenderObject( key: _editorKey, document: doc, selection: controller.selection,