소스 검색

Add reportScroll property to MouseMode

xuty 3 년 전
부모
커밋
21882b1b1c
1개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. 8 3
      lib/src/core/mouse/mode.dart

+ 8 - 3
lib/src/core/mouse/mode.dart

@@ -4,11 +4,16 @@ enum MouseMode {
 
   clickOnly,
 
-  upDownScroll,
+  upDownScroll(reportScroll: true),
 
-  upDownScrollDrag,
+  upDownScrollDrag(reportScroll: true),
 
-  upDownScrollMove,
+  upDownScrollMove(reportScroll: true),
+  ;
+
+  const MouseMode({this.reportScroll = false});
+
+  final bool reportScroll;
 }
 
 /// https://terminalguide.namepad.de/mouse/