update overlay widgets on flutter desktop

1. add mobile actions
2. disable showChatIcon
This commit is contained in:
csf 2022-09-08 22:18:02 +08:00
parent 36143c0880
commit d0c438268d
7 changed files with 126 additions and 117 deletions

View File

@ -14,6 +14,7 @@ import 'package:get/get.dart';
import 'package:shared_preferences/shared_preferences.dart'; import 'package:shared_preferences/shared_preferences.dart';
import 'package:window_manager/window_manager.dart'; import 'package:window_manager/window_manager.dart';
import 'mobile/widgets/overlay.dart';
import 'models/model.dart'; import 'models/model.dart';
import 'models/platform_model.dart'; import 'models/platform_model.dart';
@ -294,9 +295,11 @@ class Dialog<T> {
class OverlayDialogManager { class OverlayDialogManager {
OverlayState? _overlayState; OverlayState? _overlayState;
Map<String, Dialog> _dialogs = Map(); final Map<String, Dialog> _dialogs = {};
int _tagCount = 0; int _tagCount = 0;
OverlayEntry? _mobileActionsOverlayEntry;
/// By default OverlayDialogManager use global overlay /// By default OverlayDialogManager use global overlay
OverlayDialogManager() { OverlayDialogManager() {
_overlayState = globalKey.currentState?.overlay; _overlayState = globalKey.currentState?.overlay;
@ -418,6 +421,60 @@ class OverlayDialogManager {
); );
}); });
} }
void resetMobileActionsOverlay({FFI? ffi}) {
if (_mobileActionsOverlayEntry == null) return;
hideMobileActionsOverlay();
showMobileActionsOverlay(ffi: ffi);
}
void showMobileActionsOverlay({FFI? ffi}) {
if (_mobileActionsOverlayEntry != null) return;
if (_overlayState == null) return;
// compute overlay position
final screenW = MediaQuery.of(globalKey.currentContext!).size.width;
final screenH = MediaQuery.of(globalKey.currentContext!).size.height;
const double overlayW = 200;
const double overlayH = 45;
final left = (screenW - overlayW) / 2;
final top = screenH - overlayH - 80;
final overlay = OverlayEntry(builder: (context) {
final session = ffi ?? gFFI;
return DraggableMobileActions(
position: Offset(left, top),
width: overlayW,
height: overlayH,
onBackPressed: () => session.tap(MouseButtons.right),
onHomePressed: () => session.tap(MouseButtons.wheel),
onRecentPressed: () async {
session.sendMouse('down', MouseButtons.wheel);
await Future.delayed(const Duration(milliseconds: 500));
session.sendMouse('up', MouseButtons.wheel);
},
onHidePressed: () => hideMobileActionsOverlay(),
);
});
_overlayState!.insert(overlay);
_mobileActionsOverlayEntry = overlay;
}
void hideMobileActionsOverlay() {
if (_mobileActionsOverlayEntry != null) {
_mobileActionsOverlayEntry!.remove();
_mobileActionsOverlayEntry = null;
return;
}
}
void toggleMobileActionsOverlay({FFI? ffi}) {
if (_mobileActionsOverlayEntry == null) {
showMobileActionsOverlay(ffi: ffi);
} else {
hideMobileActionsOverlay();
}
}
} }
void showToast(String text, {Duration timeout = const Duration(seconds: 2)}) { void showToast(String text, {Duration timeout = const Duration(seconds: 2)}) {

View File

@ -1,6 +1,5 @@
import 'dart:async'; import 'dart:async';
import 'dart:io'; import 'dart:io';
import 'dart:typed_data';
import 'dart:ui' as ui; import 'dart:ui' as ui;
import 'package:flutter/gestures.dart'; import 'package:flutter/gestures.dart';
@ -16,7 +15,6 @@ import 'package:flutter_custom_cursor/flutter_custom_cursor.dart';
import '../widgets/remote_menubar.dart'; import '../widgets/remote_menubar.dart';
import '../../common.dart'; import '../../common.dart';
import '../../mobile/widgets/dialog.dart'; import '../../mobile/widgets/dialog.dart';
import '../../mobile/widgets/overlay.dart';
import '../../models/model.dart'; import '../../models/model.dart';
import '../../models/platform_model.dart'; import '../../models/platform_model.dart';
import '../../common/shared_state.dart'; import '../../common/shared_state.dart';
@ -107,7 +105,7 @@ class _RemotePageState extends State<RemotePage>
@override @override
void dispose() { void dispose() {
debugPrint("REMOTE PAGE dispose ${widget.id}"); debugPrint("REMOTE PAGE dispose ${widget.id}");
hideMobileActionsOverlay(); _ffi.dialogManager.hideMobileActionsOverlay();
_ffi.listenToMouse(false); _ffi.listenToMouse(false);
_mobileFocusNode.dispose(); _mobileFocusNode.dispose();
_physicalFocusNode.dispose(); _physicalFocusNode.dispose();

View File

@ -6,7 +6,6 @@ import 'package:rxdart/rxdart.dart' as rxdart;
import '../../common.dart'; import '../../common.dart';
import '../../mobile/widgets/dialog.dart'; import '../../mobile/widgets/dialog.dart';
import '../../mobile/widgets/overlay.dart';
import '../../models/model.dart'; import '../../models/model.dart';
import '../../models/platform_model.dart'; import '../../models/platform_model.dart';
import '../../common/shared_state.dart'; import '../../common/shared_state.dart';
@ -75,20 +74,17 @@ class _RemoteMenubarState extends State<RemoteMenubar> {
final List<Widget> menubarItems = []; final List<Widget> menubarItems = [];
if (!isWebDesktop) { if (!isWebDesktop) {
menubarItems.add(_buildFullscreen(context)); menubarItems.add(_buildFullscreen(context));
//if (widget.ffi.ffiModel.isPeerAndroid) { if (widget.ffi.ffiModel.isPeerAndroid) {
menubarItems.add(IconButton( menubarItems.add(IconButton(
tooltip: translate('Mobile Actions'), tooltip: translate('Mobile Actions'),
color: _MenubarTheme.commonColor, color: _MenubarTheme.commonColor,
icon: const Icon(Icons.build), icon: const Icon(Icons.build),
onPressed: () { onPressed: () {
if (mobileActionsOverlayEntry == null) { widget.ffi.dialogManager
showMobileActionsOverlay(); .toggleMobileActionsOverlay(ffi: widget.ffi);
} else { },
hideMobileActionsOverlay(); ));
} }
},
));
//}
} }
menubarItems.add(_buildMonitor(context)); menubarItems.add(_buildMonitor(context));
menubarItems.add(_buildControl(context)); menubarItems.add(_buildControl(context));

View File

@ -14,7 +14,6 @@ import '../../models/model.dart';
import '../../models/platform_model.dart'; import '../../models/platform_model.dart';
import '../widgets/dialog.dart'; import '../widgets/dialog.dart';
import '../widgets/gestures.dart'; import '../widgets/gestures.dart';
import '../widgets/overlay.dart';
final initText = '\1' * 1024; final initText = '\1' * 1024;
@ -64,7 +63,7 @@ class _RemotePageState extends State<RemotePage> {
@override @override
void dispose() { void dispose() {
hideMobileActionsOverlay(); gFFI.dialogManager.hideMobileActionsOverlay();
gFFI.listenToMouse(false); gFFI.listenToMouse(false);
gFFI.invokeMethod("enable_soft_keyboard", true); gFFI.invokeMethod("enable_soft_keyboard", true);
_mobileFocusNode.dispose(); _mobileFocusNode.dispose();
@ -266,8 +265,9 @@ class _RemotePageState extends State<RemotePage> {
: SafeArea(child: : SafeArea(child:
OrientationBuilder(builder: (ctx, orientation) { OrientationBuilder(builder: (ctx, orientation) {
if (_currentOrientation != orientation) { if (_currentOrientation != orientation) {
Timer(Duration(milliseconds: 200), () { Timer(const Duration(milliseconds: 200), () {
resetMobileActionsOverlay(); gFFI.dialogManager
.resetMobileActionsOverlay(ffi: gFFI);
_currentOrientation = orientation; _currentOrientation = orientation;
gFFI.canvasModel.updateViewStyle(); gFFI.canvasModel.updateViewStyle();
}); });
@ -422,14 +422,9 @@ class _RemotePageState extends State<RemotePage> {
? [ ? [
IconButton( IconButton(
color: Colors.white, color: Colors.white,
icon: Icon(Icons.build), icon: const Icon(Icons.build),
onPressed: () { onPressed: () => gFFI.dialogManager
if (mobileActionsOverlayEntry == null) { .toggleMobileActionsOverlay(ffi: gFFI),
showMobileActionsOverlay();
} else {
hideMobileActionsOverlay();
}
},
) )
] ]
: [ : [

View File

@ -2,11 +2,8 @@ import 'package:flutter/material.dart';
import 'package:flutter_hbb/common.dart'; import 'package:flutter_hbb/common.dart';
import '../../models/chat_model.dart'; import '../../models/chat_model.dart';
import '../../models/model.dart';
import '../pages/chat_page.dart'; import '../pages/chat_page.dart';
OverlayEntry? mobileActionsOverlayEntry;
class DraggableChatWindow extends StatelessWidget { class DraggableChatWindow extends StatelessWidget {
DraggableChatWindow( DraggableChatWindow(
{this.position = Offset.zero, {this.position = Offset.zero,
@ -99,6 +96,7 @@ class DraggableMobileActions extends StatelessWidget {
this.onBackPressed, this.onBackPressed,
this.onRecentPressed, this.onRecentPressed,
this.onHomePressed, this.onHomePressed,
this.onHidePressed,
required this.width, required this.width,
required this.height}); required this.height});
@ -108,6 +106,7 @@ class DraggableMobileActions extends StatelessWidget {
final VoidCallback? onBackPressed; final VoidCallback? onBackPressed;
final VoidCallback? onHomePressed; final VoidCallback? onHomePressed;
final VoidCallback? onRecentPressed; final VoidCallback? onRecentPressed;
final VoidCallback? onHidePressed;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
@ -118,89 +117,49 @@ class DraggableMobileActions extends StatelessWidget {
builder: (_, onPanUpdate) { builder: (_, onPanUpdate) {
return GestureDetector( return GestureDetector(
onPanUpdate: onPanUpdate, onPanUpdate: onPanUpdate,
child: Container( child: Card(
decoration: BoxDecoration( color: Colors.transparent,
color: MyTheme.accent.withOpacity(0.4), shadowColor: Colors.transparent,
borderRadius: BorderRadius.all(Radius.circular(15))), child: Container(
child: Row( decoration: BoxDecoration(
mainAxisAlignment: MainAxisAlignment.spaceAround, color: MyTheme.accent.withOpacity(0.4),
children: [ borderRadius: BorderRadius.all(Radius.circular(15))),
IconButton( child: Row(
color: MyTheme.white, mainAxisAlignment: MainAxisAlignment.spaceAround,
onPressed: onBackPressed, children: [
icon: Icon(Icons.arrow_back)), IconButton(
IconButton( color: MyTheme.white,
color: MyTheme.white, onPressed: onBackPressed,
onPressed: onHomePressed, splashRadius: 20,
icon: Icon(Icons.home)), icon: const Icon(Icons.arrow_back)),
IconButton( IconButton(
color: MyTheme.white, color: MyTheme.white,
onPressed: onRecentPressed, onPressed: onHomePressed,
icon: Icon(Icons.more_horiz)), splashRadius: 20,
VerticalDivider( icon: const Icon(Icons.home)),
width: 0, IconButton(
thickness: 2, color: MyTheme.white,
indent: 10, onPressed: onRecentPressed,
endIndent: 10, splashRadius: 20,
icon: const Icon(Icons.more_horiz)),
const VerticalDivider(
width: 0,
thickness: 2,
indent: 10,
endIndent: 10,
),
IconButton(
color: MyTheme.white,
onPressed: onHidePressed,
splashRadius: 20,
icon: const Icon(Icons.keyboard_arrow_down)),
],
), ),
IconButton( )));
color: MyTheme.white,
onPressed: hideMobileActionsOverlay,
icon: Icon(Icons.keyboard_arrow_down)),
],
),
));
}); });
} }
} }
resetMobileActionsOverlay() {
if (mobileActionsOverlayEntry == null) return;
hideMobileActionsOverlay();
showMobileActionsOverlay();
}
showMobileActionsOverlay() {
if (mobileActionsOverlayEntry != null) return;
if (globalKey.currentContext == null ||
globalKey.currentState == null ||
globalKey.currentState!.overlay == null) return;
final globalOverlayState = globalKey.currentState!.overlay!;
// compute overlay position
final screenW = MediaQuery.of(globalKey.currentContext!).size.width;
final screenH = MediaQuery.of(globalKey.currentContext!).size.height;
final double overlayW = 200;
final double overlayH = 45;
final left = (screenW - overlayW) / 2;
final top = screenH - overlayH - 80;
final overlay = OverlayEntry(builder: (context) {
return DraggableMobileActions(
position: Offset(left, top),
width: overlayW,
height: overlayH,
onBackPressed: () => gFFI.tap(MouseButtons.right),
onHomePressed: () => gFFI.tap(MouseButtons.wheel),
onRecentPressed: () async {
gFFI.sendMouse('down', MouseButtons.wheel);
await Future.delayed(Duration(milliseconds: 500));
gFFI.sendMouse('up', MouseButtons.wheel);
},
);
});
globalOverlayState.insert(overlay);
mobileActionsOverlayEntry = overlay;
}
hideMobileActionsOverlay() {
if (mobileActionsOverlayEntry != null) {
mobileActionsOverlayEntry!.remove();
mobileActionsOverlayEntry = null;
return;
}
}
class Draggable extends StatefulWidget { class Draggable extends StatefulWidget {
Draggable( Draggable(
{this.checkKeyboard = false, {this.checkKeyboard = false,

View File

@ -143,9 +143,12 @@ class ChatModel with ChangeNotifier {
} }
toggleChatOverlay() { toggleChatOverlay() {
if (chatIconOverlayEntry == null || chatWindowOverlayEntry == null) { if ((!isDesktop && chatIconOverlayEntry == null) ||
chatWindowOverlayEntry == null) {
gFFI.invokeMethod("enable_soft_keyboard", true); gFFI.invokeMethod("enable_soft_keyboard", true);
showChatIconOverlay(); if (!isDesktop) {
showChatIconOverlay();
}
showChatWindowOverlay(); showChatWindowOverlay();
} else { } else {
hideChatIconOverlay(); hideChatIconOverlay();

View File

@ -22,7 +22,6 @@ import 'package:flutter_custom_cursor/flutter_custom_cursor.dart';
import '../common.dart'; import '../common.dart';
import '../common/shared_state.dart'; import '../common/shared_state.dart';
import '../mobile/widgets/dialog.dart'; import '../mobile/widgets/dialog.dart';
import '../mobile/widgets/overlay.dart';
import 'peer_model.dart'; import 'peer_model.dart';
import 'platform_model.dart'; import 'platform_model.dart';
@ -267,8 +266,10 @@ class FfiModel with ChangeNotifier {
if (isPeerAndroid) { if (isPeerAndroid) {
_touchMode = true; _touchMode = true;
if (parent.target?.ffiModel.permissions['keyboard'] != false) { if (parent.target != null &&
Timer(const Duration(milliseconds: 100), showMobileActionsOverlay); parent.target!.ffiModel.permissions['keyboard'] != false) {
Timer(const Duration(milliseconds: 100),
parent.target!.dialogManager.showMobileActionsOverlay);
} }
} else { } else {
_touchMode = _touchMode =