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
8a815c1d
Unverified
Commit
8a815c1d
authored
Apr 21, 2023
by
chunhtai
Committed by
GitHub
Apr 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unecessary reference to ClipboardStatusNotifier (#125255)
fixes
https://github.com/flutter/flutter/issues/99360
parent
baafa199
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
26 additions
and
40 deletions
+26
-40
desktop_text_selection.dart
...ges/flutter/lib/src/cupertino/desktop_text_selection.dart
+3
-3
text_selection.dart
packages/flutter/lib/src/cupertino/text_selection.dart
+3
-3
desktop_text_selection.dart
...ages/flutter/lib/src/material/desktop_text_selection.dart
+3
-3
text_selection.dart
packages/flutter/lib/src/material/text_selection.dart
+3
-2
text_selection.dart
packages/flutter/lib/src/widgets/text_selection.dart
+4
-15
text_field_test.dart
packages/flutter/test/cupertino/text_field_test.dart
+1
-1
text_selection_toolbar_test.dart
...s/flutter/test/cupertino/text_selection_toolbar_test.dart
+1
-1
text_selection_toolbar_test.dart
...es/flutter/test/material/text_selection_toolbar_test.dart
+1
-1
editable_text_test.dart
packages/flutter/test/widgets/editable_text_test.dart
+5
-9
text_selection_test.dart
packages/flutter/test/widgets/text_selection_test.dart
+2
-2
No files found.
packages/flutter/lib/src/cupertino/desktop_text_selection.dart
View file @
8a815c1d
...
...
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
show
clampDouble
;
import
'package:flutter/foundation.dart'
show
ValueListenable
,
clampDouble
;
import
'package:flutter/widgets.dart'
;
import
'desktop_text_selection_toolbar.dart'
;
...
...
@@ -40,7 +40,7 @@ class CupertinoDesktopTextSelectionControls extends TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
_CupertinoDesktopTextSelectionControlsToolbar
(
...
...
@@ -107,7 +107,7 @@ class _CupertinoDesktopTextSelectionControlsToolbar extends StatefulWidget {
required
this
.
lastSecondaryTapDownPosition
,
});
final
ClipboardStatusNotifier
?
clipboardStatus
;
final
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
;
final
List
<
TextSelectionPoint
>
endpoints
;
final
Rect
globalEditableRegion
;
final
VoidCallback
?
handleCopy
;
...
...
packages/flutter/lib/src/cupertino/text_selection.dart
View file @
8a815c1d
...
...
@@ -4,7 +4,7 @@
import
'dart:math'
as
math
;
import
'package:flutter/foundation.dart'
show
clampDouble
;
import
'package:flutter/foundation.dart'
show
ValueListenable
,
clampDouble
;
import
'package:flutter/widgets.dart'
;
import
'localizations.dart'
;
...
...
@@ -92,7 +92,7 @@ class CupertinoTextSelectionControls extends TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
Value
Notifier
<
ClipboardStatus
>?
clipboardStatus
,
Value
Listenable
<
ClipboardStatus
>?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
_CupertinoTextSelectionControlsToolbar
(
...
...
@@ -209,7 +209,7 @@ class _CupertinoTextSelectionControlsToolbar extends StatefulWidget {
required
this
.
textLineHeight
,
});
final
Value
Notifier
<
ClipboardStatus
>?
clipboardStatus
;
final
Value
Listenable
<
ClipboardStatus
>?
clipboardStatus
;
final
List
<
TextSelectionPoint
>
endpoints
;
final
Rect
globalEditableRegion
;
final
VoidCallback
?
handleCopy
;
...
...
packages/flutter/lib/src/material/desktop_text_selection.dart
View file @
8a815c1d
...
...
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
show
clampDouble
;
import
'package:flutter/foundation.dart'
show
ValueListenable
,
clampDouble
;
import
'package:flutter/widgets.dart'
;
import
'debug.dart'
;
...
...
@@ -41,7 +41,7 @@ class DesktopTextSelectionControls extends TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
_DesktopTextSelectionControlsToolbar
(
...
...
@@ -123,7 +123,7 @@ class _DesktopTextSelectionControlsToolbar extends StatefulWidget {
required
this
.
lastSecondaryTapDownPosition
,
});
final
ClipboardStatusNotifier
?
clipboardStatus
;
final
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
;
final
List
<
TextSelectionPoint
>
endpoints
;
final
Rect
globalEditableRegion
;
final
VoidCallback
?
handleCopy
;
...
...
packages/flutter/lib/src/material/text_selection.dart
View file @
8a815c1d
...
...
@@ -4,6 +4,7 @@
import
'dart:math'
as
math
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/widgets.dart'
;
import
'debug.dart'
;
...
...
@@ -52,7 +53,7 @@ class MaterialTextSelectionControls extends TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
_TextSelectionControlsToolbar
(
...
...
@@ -163,7 +164,7 @@ class _TextSelectionControlsToolbar extends StatefulWidget {
required
this
.
textLineHeight
,
});
final
ClipboardStatusNotifier
?
clipboardStatus
;
final
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
;
final
TextSelectionDelegate
delegate
;
final
List
<
TextSelectionPoint
>
endpoints
;
final
Rect
globalEditableRegion
;
...
...
packages/flutter/lib/src/widgets/text_selection.dart
View file @
8a815c1d
...
...
@@ -125,9 +125,7 @@ abstract class TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
// TODO(chunhtai): Change to ValueListenable<ClipboardStatus>? once
// migration is done. https://github.com/flutter/flutter/issues/99360
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
);
...
...
@@ -200,13 +198,11 @@ abstract class TextSelectionControls {
///
/// This is called by subclasses when their cut affordance is activated by
/// the user.
// TODO(chunhtai): remove optional parameter once migration is done.
// https://github.com/flutter/flutter/issues/99360
@Deprecated
(
'Use `contextMenuBuilder` instead. '
'This feature was deprecated after v3.3.0-0.5.pre.'
,
)
void
handleCut
(
TextSelectionDelegate
delegate
,
[
ClipboardStatusNotifier
?
clipboardStatus
]
)
{
void
handleCut
(
TextSelectionDelegate
delegate
)
{
delegate
.
cutSelection
(
SelectionChangedCause
.
toolbar
);
}
...
...
@@ -214,13 +210,11 @@ abstract class TextSelectionControls {
///
/// This is called by subclasses when their copy affordance is activated by
/// the user.
// TODO(chunhtai): remove optional parameter once migration is done.
// https://github.com/flutter/flutter/issues/99360
@Deprecated
(
'Use `contextMenuBuilder` instead. '
'This feature was deprecated after v3.3.0-0.5.pre.'
,
)
void
handleCopy
(
TextSelectionDelegate
delegate
,
[
ClipboardStatusNotifier
?
clipboardStatus
]
)
{
void
handleCopy
(
TextSelectionDelegate
delegate
)
{
delegate
.
copySelection
(
SelectionChangedCause
.
toolbar
);
}
...
...
@@ -3236,10 +3230,6 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget
})
:
super
(
value
);
bool
_disposed
=
false
;
// TODO(chunhtai): remove this getter once migration is done.
// https://github.com/flutter/flutter/issues/99360
/// True if this instance has been disposed.
bool
get
disposed
=>
_disposed
;
/// Check the [Clipboard] and update [value] if needed.
Future
<
void
>
update
()
async
{
...
...
@@ -3265,7 +3255,6 @@ class ClipboardStatusNotifier extends ValueNotifier<ClipboardStatus> with Widget
value
=
ClipboardStatus
.
unknown
;
return
;
}
final
ClipboardStatus
nextStatus
=
hasStrings
?
ClipboardStatus
.
pasteable
:
ClipboardStatus
.
notPasteable
;
...
...
@@ -3349,7 +3338,7 @@ mixin TextSelectionHandleControls on TextSelectionControls {
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
Value
Notifier
<
ClipboardStatus
>?
clipboardStatus
,
Value
Listenable
<
ClipboardStatus
>?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
=>
const
SizedBox
.
shrink
();
...
...
packages/flutter/test/cupertino/text_field_test.dart
View file @
8a815c1d
...
...
@@ -40,7 +40,7 @@ class MockTextSelectionControls extends TextSelectionControls {
Offset
position
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
throw
UnimplementedError
();
...
...
packages/flutter/test/cupertino/text_selection_toolbar_test.dart
View file @
8a815c1d
...
...
@@ -23,7 +23,7 @@ class _CustomCupertinoTextSelectionControls extends CupertinoTextSelectionContro
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
Value
Notifier
<
ClipboardStatus
>?
clipboardStatus
,
Value
Listenable
<
ClipboardStatus
>?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
final
EdgeInsets
mediaQueryPadding
=
MediaQuery
.
paddingOf
(
context
);
...
...
packages/flutter/test/material/text_selection_toolbar_test.dart
View file @
8a815c1d
...
...
@@ -20,7 +20,7 @@ class _CustomMaterialTextSelectionControls extends MaterialTextSelectionControls
Offset
selectionMidpoint
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
final
TextSelectionPoint
startTextSelectionPoint
=
endpoints
[
0
];
...
...
packages/flutter/test/widgets/editable_text_test.dart
View file @
8a815c1d
...
...
@@ -15978,7 +15978,7 @@ class MockTextSelectionControls extends Fake implements TextSelectionControls {
Offset
position
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
const
SizedBox
();
...
...
@@ -16007,10 +16007,8 @@ class MockTextSelectionControls extends Fake implements TextSelectionControls {
int
pasteCount
=
0
;
int
copyCount
=
0
;
// TODO(chunhtai): remove optional parameter once migration is done.
// https://github.com/flutter/flutter/issues/99360
@override
void
handleCopy
(
TextSelectionDelegate
delegate
,
[
ClipboardStatusNotifier
?
clipboardStatus
]
)
{
void
handleCopy
(
TextSelectionDelegate
delegate
)
{
copyCount
+=
1
;
}
...
...
@@ -16019,10 +16017,8 @@ class MockTextSelectionControls extends Fake implements TextSelectionControls {
pasteCount
+=
1
;
}
// TODO(chunhtai): remove optional parameter once migration is done.
// https://github.com/flutter/flutter/issues/99360
@override
void
handleCut
(
TextSelectionDelegate
delegate
,
[
ClipboardStatusNotifier
?
clipboardStatus
]
)
{
void
handleCut
(
TextSelectionDelegate
delegate
)
{
cutCount
+=
1
;
}
...
...
@@ -16062,7 +16058,7 @@ class _CustomTextSelectionControls extends TextSelectionControls {
Offset
position
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
final
Offset
selectionMidpoint
=
position
;
...
...
@@ -16120,7 +16116,7 @@ class _CustomTextSelectionControls extends TextSelectionControls {
@override
void
handleCut
(
TextSelectionDelegate
delegate
,
[
ClipboardStatusNotifier
?
clipboardStatus
])
{
onCut
?.
call
();
return
super
.
handleCut
(
delegate
,
clipboardStatus
);
return
super
.
handleCut
(
delegate
);
}
}
...
...
packages/flutter/test/widgets/text_selection_test.dart
View file @
8a815c1d
...
...
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/foundation.dart'
show
defaultTargetPlatform
;
import
'package:flutter/foundation.dart'
show
ValueListenable
,
defaultTargetPlatform
;
import
'package:flutter/gestures.dart'
show
PointerDeviceKind
,
kSecondaryButton
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
...
...
@@ -1836,7 +1836,7 @@ class TextSelectionControlsSpy extends TextSelectionControls {
Offset
position
,
List
<
TextSelectionPoint
>
endpoints
,
TextSelectionDelegate
delegate
,
ClipboardStatusNotifier
?
clipboardStatus
,
ValueListenable
<
ClipboardStatus
>
?
clipboardStatus
,
Offset
?
lastSecondaryTapDownPosition
,
)
{
return
Text
(
'dummy'
,
key:
toolBarKey
);
...
...
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