2022-05-29 17:19:50 +08:00
|
|
|
|
import 'dart:async';
|
|
|
|
|
import 'dart:io';
|
|
|
|
|
import 'dart:ui' as ui;
|
|
|
|
|
|
|
|
|
|
import 'package:flutter/gestures.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
|
import 'package:flutter_hbb/models/chat_model.dart';
|
2022-06-13 21:07:26 +08:00
|
|
|
|
import 'package:get/get.dart';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
import 'package:wakelock/wakelock.dart';
|
2022-06-27 10:34:57 +08:00
|
|
|
|
|
2022-06-27 09:48:35 +08:00
|
|
|
|
// import 'package:window_manager/window_manager.dart';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
import '../../common.dart';
|
|
|
|
|
import '../../mobile/widgets/dialog.dart';
|
|
|
|
|
import '../../mobile/widgets/overlay.dart';
|
|
|
|
|
import '../../models/model.dart';
|
2022-08-03 22:03:31 +08:00
|
|
|
|
import '../../models/platform_model.dart';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
final initText = '\1' * 1024;
|
|
|
|
|
|
|
|
|
|
class RemotePage extends StatefulWidget {
|
2022-08-16 20:48:36 +08:00
|
|
|
|
RemotePage(
|
|
|
|
|
{Key? key,
|
|
|
|
|
required this.id,
|
|
|
|
|
required this.tabBarHeight,
|
|
|
|
|
required this.fullscreenID})
|
2022-08-03 15:31:19 +08:00
|
|
|
|
: super(key: key);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
final String id;
|
2022-08-03 15:31:19 +08:00
|
|
|
|
final double tabBarHeight;
|
2022-08-16 20:48:36 +08:00
|
|
|
|
final Rx<String> fullscreenID;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
_RemotePageState createState() => _RemotePageState();
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-17 22:21:49 +08:00
|
|
|
|
class _RemotePageState extends State<RemotePage>
|
2022-06-27 09:48:35 +08:00
|
|
|
|
with AutomaticKeepAliveClientMixin {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
Timer? _timer;
|
|
|
|
|
bool _showBar = !isWebDesktop;
|
|
|
|
|
String _value = '';
|
2022-08-13 17:58:24 +08:00
|
|
|
|
var _cursorOverImage = false.obs;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
final FocusNode _mobileFocusNode = FocusNode();
|
|
|
|
|
final FocusNode _physicalFocusNode = FocusNode();
|
|
|
|
|
var _isPhysicalMouse = false;
|
2022-08-16 20:48:36 +08:00
|
|
|
|
var _imageFocused = false;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
2022-08-12 18:42:02 +08:00
|
|
|
|
late FFI _ffi;
|
2022-06-13 21:07:26 +08:00
|
|
|
|
|
2022-05-29 17:19:50 +08:00
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
2022-08-12 18:42:02 +08:00
|
|
|
|
_ffi = FFI();
|
|
|
|
|
_ffi.canvasModel.tabBarHeight = super.widget.tabBarHeight;
|
|
|
|
|
Get.put(_ffi, tag: widget.id);
|
|
|
|
|
_ffi.connect(widget.id, tabBarHeight: super.widget.tabBarHeight);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []);
|
2022-08-12 18:42:02 +08:00
|
|
|
|
_ffi.dialogManager
|
2022-08-15 14:39:31 +08:00
|
|
|
|
.showLoading(translate('Connecting...'), onCancel: backToHomePage);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
});
|
|
|
|
|
if (!Platform.isLinux) {
|
|
|
|
|
Wakelock.enable();
|
|
|
|
|
}
|
|
|
|
|
_physicalFocusNode.requestFocus();
|
2022-08-12 18:42:02 +08:00
|
|
|
|
_ffi.ffiModel.updateEventListener(widget.id);
|
|
|
|
|
_ffi.listenToMouse(true);
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.qualityMonitorModel.checkShowQualityMonitor(widget.id);
|
2022-06-27 09:48:35 +08:00
|
|
|
|
// WindowManager.instance.addListener(this);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
2022-08-05 10:27:06 +08:00
|
|
|
|
print("REMOTE PAGE dispose ${widget.id}");
|
2022-05-29 17:19:50 +08:00
|
|
|
|
hideMobileActionsOverlay();
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.listenToMouse(false);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
_mobileFocusNode.dispose();
|
|
|
|
|
_physicalFocusNode.dispose();
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.close();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
_timer?.cancel();
|
2022-08-12 18:42:02 +08:00
|
|
|
|
_ffi.dialogManager.dismissAll();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
|
|
|
|
|
overlays: SystemUiOverlay.values);
|
|
|
|
|
if (!Platform.isLinux) {
|
|
|
|
|
Wakelock.disable();
|
|
|
|
|
}
|
2022-06-27 09:48:35 +08:00
|
|
|
|
// WindowManager.instance.removeListener(this);
|
2022-06-13 21:07:26 +08:00
|
|
|
|
Get.delete<FFI>(tag: widget.id);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
super.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void resetTool() {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.resetModifiers();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handle mobile virtual keyboard
|
|
|
|
|
void handleInput(String newValue) {
|
|
|
|
|
var oldValue = _value;
|
|
|
|
|
_value = newValue;
|
|
|
|
|
if (isIOS) {
|
|
|
|
|
var i = newValue.length - 1;
|
|
|
|
|
for (; i >= 0 && newValue[i] != '\1'; --i) {}
|
|
|
|
|
var j = oldValue.length - 1;
|
|
|
|
|
for (; j >= 0 && oldValue[j] != '\1'; --j) {}
|
|
|
|
|
if (i < j) j = i;
|
|
|
|
|
newValue = newValue.substring(j + 1);
|
|
|
|
|
oldValue = oldValue.substring(j + 1);
|
|
|
|
|
var common = 0;
|
|
|
|
|
for (;
|
|
|
|
|
common < oldValue.length &&
|
|
|
|
|
common < newValue.length &&
|
|
|
|
|
newValue[common] == oldValue[common];
|
|
|
|
|
++common);
|
|
|
|
|
for (i = 0; i < oldValue.length - common; ++i) {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.inputKey('VK_BACK');
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
if (newValue.length > common) {
|
|
|
|
|
var s = newValue.substring(common);
|
|
|
|
|
if (s.length > 1) {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputString(id: widget.id, value: s);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
|
|
|
|
inputChar(s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (oldValue.length > 0 &&
|
|
|
|
|
newValue.length > 0 &&
|
|
|
|
|
oldValue[0] == '\1' &&
|
|
|
|
|
newValue[0] != '\1') {
|
|
|
|
|
// clipboard
|
|
|
|
|
oldValue = '';
|
|
|
|
|
}
|
|
|
|
|
if (newValue.length == oldValue.length) {
|
|
|
|
|
// ?
|
|
|
|
|
} else if (newValue.length < oldValue.length) {
|
|
|
|
|
final char = 'VK_BACK';
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.inputKey(char);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
|
|
|
|
final content = newValue.substring(oldValue.length);
|
|
|
|
|
if (content.length > 1) {
|
|
|
|
|
if (oldValue != '' &&
|
|
|
|
|
content.length == 2 &&
|
|
|
|
|
(content == '""' ||
|
|
|
|
|
content == '()' ||
|
|
|
|
|
content == '[]' ||
|
|
|
|
|
content == '<>' ||
|
|
|
|
|
content == "{}" ||
|
|
|
|
|
content == '”“' ||
|
|
|
|
|
content == '《》' ||
|
|
|
|
|
content == '()' ||
|
|
|
|
|
content == '【】')) {
|
|
|
|
|
// can not only input content[0], because when input ], [ are also auo insert, which cause ] never be input
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputString(id: widget.id, value: content);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputString(id: widget.id, value: content);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
|
|
|
|
inputChar(content);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void inputChar(String char) {
|
|
|
|
|
if (char == '\n') {
|
|
|
|
|
char = 'VK_RETURN';
|
|
|
|
|
} else if (char == ' ') {
|
|
|
|
|
char = 'VK_SPACE';
|
|
|
|
|
}
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.inputKey(char);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void sendRawKey(RawKeyEvent e, {bool? down, bool? press}) {
|
|
|
|
|
// for maximum compatibility
|
|
|
|
|
final label = _logicalKeyMap[e.logicalKey.keyId] ??
|
|
|
|
|
_physicalKeyMap[e.physicalKey.usbHidUsage] ??
|
|
|
|
|
e.logicalKey.keyLabel;
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.inputKey(label, down: down, press: press ?? false);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-06 18:48:07 +08:00
|
|
|
|
Widget buildBody(FfiModel ffiModel) {
|
|
|
|
|
final hasDisplays = ffiModel.pi.displays.length > 0;
|
|
|
|
|
final keyboard = ffiModel.permissions['keyboard'] != false;
|
|
|
|
|
return Scaffold(
|
|
|
|
|
// resizeToAvoidBottomInset: true,
|
2022-08-15 20:26:20 +08:00
|
|
|
|
floatingActionButton: _showBar
|
2022-08-06 18:48:07 +08:00
|
|
|
|
? null
|
|
|
|
|
: FloatingActionButton(
|
2022-08-15 20:26:20 +08:00
|
|
|
|
mini: true,
|
|
|
|
|
child: Icon(Icons.expand_less),
|
2022-08-06 18:48:07 +08:00
|
|
|
|
backgroundColor: MyTheme.accent,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() {
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_showBar = !_showBar;
|
2022-08-06 18:48:07 +08:00
|
|
|
|
});
|
|
|
|
|
}),
|
2022-08-14 12:57:30 +08:00
|
|
|
|
bottomNavigationBar:
|
|
|
|
|
_showBar && hasDisplays ? getBottomAppBar(ffiModel) : null,
|
2022-08-06 18:48:07 +08:00
|
|
|
|
body: Overlay(
|
|
|
|
|
initialEntries: [
|
|
|
|
|
OverlayEntry(builder: (context) {
|
2022-08-11 10:19:12 +08:00
|
|
|
|
_ffi.chatModel.setOverlayState(Overlay.of(context));
|
2022-08-12 18:42:02 +08:00
|
|
|
|
_ffi.dialogManager.setOverlayState(Overlay.of(context));
|
2022-08-06 18:48:07 +08:00
|
|
|
|
return Container(
|
2022-08-12 18:42:02 +08:00
|
|
|
|
color: Colors.black,
|
|
|
|
|
child: getRawPointerAndKeyBody(
|
|
|
|
|
getBodyForDesktop(context, keyboard)));
|
2022-08-06 18:48:07 +08:00
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-29 17:19:50 +08:00
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2022-06-17 22:21:49 +08:00
|
|
|
|
super.build(context);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
return WillPopScope(
|
2022-06-17 22:21:49 +08:00
|
|
|
|
onWillPop: () async {
|
2022-08-12 18:42:02 +08:00
|
|
|
|
clientClose(_ffi.dialogManager);
|
2022-06-17 00:06:49 +08:00
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
child: MultiProvider(
|
2022-08-06 18:48:07 +08:00
|
|
|
|
providers: [
|
|
|
|
|
ChangeNotifierProvider.value(value: _ffi.ffiModel),
|
|
|
|
|
ChangeNotifierProvider.value(value: _ffi.imageModel),
|
|
|
|
|
ChangeNotifierProvider.value(value: _ffi.cursorModel),
|
|
|
|
|
ChangeNotifierProvider.value(value: _ffi.canvasModel),
|
|
|
|
|
],
|
2022-08-11 10:19:12 +08:00
|
|
|
|
child: Consumer<FfiModel>(
|
|
|
|
|
builder: (context, ffiModel, _child) => buildBody(ffiModel))));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-06 18:48:07 +08:00
|
|
|
|
Widget getRawPointerAndKeyBody(Widget child) {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
return Consumer<FfiModel>(
|
|
|
|
|
builder: (context, FfiModel, _child) => MouseRegion(
|
|
|
|
|
cursor: FfiModel.permissions['keyboard'] != false
|
|
|
|
|
? SystemMouseCursors.none
|
|
|
|
|
: MouseCursor.defer,
|
|
|
|
|
child: FocusScope(
|
|
|
|
|
autofocus: true,
|
|
|
|
|
child: Focus(
|
2022-05-29 17:19:50 +08:00
|
|
|
|
autofocus: true,
|
2022-08-13 17:58:24 +08:00
|
|
|
|
canRequestFocus: true,
|
|
|
|
|
focusNode: _physicalFocusNode,
|
2022-08-16 20:48:36 +08:00
|
|
|
|
onFocusChange: (bool v) {
|
|
|
|
|
_imageFocused = v;
|
|
|
|
|
},
|
2022-08-13 17:58:24 +08:00
|
|
|
|
onKey: (data, e) {
|
|
|
|
|
final key = e.logicalKey;
|
|
|
|
|
if (e is RawKeyDownEvent) {
|
|
|
|
|
if (e.repeat) {
|
|
|
|
|
sendRawKey(e, press: true);
|
|
|
|
|
} else {
|
|
|
|
|
if (e.isAltPressed && !_ffi.alt) {
|
|
|
|
|
_ffi.alt = true;
|
|
|
|
|
} else if (e.isControlPressed && !_ffi.ctrl) {
|
|
|
|
|
_ffi.ctrl = true;
|
|
|
|
|
} else if (e.isShiftPressed && !_ffi.shift) {
|
|
|
|
|
_ffi.shift = true;
|
|
|
|
|
} else if (e.isMetaPressed && !_ffi.command) {
|
|
|
|
|
_ffi.command = true;
|
2022-08-06 18:48:07 +08:00
|
|
|
|
}
|
2022-08-13 17:58:24 +08:00
|
|
|
|
sendRawKey(e, down: true);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-15 20:26:20 +08:00
|
|
|
|
if (e is RawKeyUpEvent) {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
if (key == LogicalKeyboardKey.altLeft ||
|
|
|
|
|
key == LogicalKeyboardKey.altRight) {
|
|
|
|
|
_ffi.alt = false;
|
|
|
|
|
} else if (key == LogicalKeyboardKey.controlLeft ||
|
|
|
|
|
key == LogicalKeyboardKey.controlRight) {
|
|
|
|
|
_ffi.ctrl = false;
|
|
|
|
|
} else if (key == LogicalKeyboardKey.shiftRight ||
|
|
|
|
|
key == LogicalKeyboardKey.shiftLeft) {
|
|
|
|
|
_ffi.shift = false;
|
|
|
|
|
} else if (key == LogicalKeyboardKey.metaLeft ||
|
|
|
|
|
key == LogicalKeyboardKey.metaRight) {
|
|
|
|
|
_ffi.command = false;
|
|
|
|
|
}
|
|
|
|
|
sendRawKey(e);
|
|
|
|
|
}
|
|
|
|
|
return KeyEventResult.handled;
|
|
|
|
|
},
|
|
|
|
|
child: child))));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-14 12:57:30 +08:00
|
|
|
|
Widget? getBottomAppBar(FfiModel ffiModel) {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
return MouseRegion(
|
|
|
|
|
cursor: SystemMouseCursors.basic,
|
|
|
|
|
child: BottomAppBar(
|
2022-08-13 18:10:04 +08:00
|
|
|
|
elevation: 10,
|
|
|
|
|
color: MyTheme.accent,
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.clear),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
clientClose(_ffi.dialogManager);
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
] +
|
|
|
|
|
<Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.tv),
|
|
|
|
|
onPressed: () {
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.dialogManager.dismissAll();
|
|
|
|
|
showOptions(widget.id);
|
2022-08-13 18:10:04 +08:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
] +
|
2022-08-16 20:48:36 +08:00
|
|
|
|
(isWebDesktop
|
|
|
|
|
? []
|
|
|
|
|
: <Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(widget.fullscreenID.value.isEmpty
|
|
|
|
|
? Icons.fullscreen
|
|
|
|
|
: Icons.close_fullscreen),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (widget.fullscreenID.value.isEmpty) {
|
|
|
|
|
widget.fullscreenID.value = widget.id;
|
|
|
|
|
} else {
|
|
|
|
|
widget.fullscreenID.value = "";
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
]) +
|
2022-08-13 18:10:04 +08:00
|
|
|
|
(isWebDesktop
|
|
|
|
|
? []
|
|
|
|
|
: _ffi.ffiModel.isPeerAndroid
|
|
|
|
|
? [
|
2022-08-13 17:58:24 +08:00
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.build),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (mobileActionsOverlayEntry == null) {
|
|
|
|
|
showMobileActionsOverlay();
|
|
|
|
|
} else {
|
|
|
|
|
hideMobileActionsOverlay();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
]
|
2022-08-15 20:26:20 +08:00
|
|
|
|
: []) +
|
2022-08-13 17:58:24 +08:00
|
|
|
|
(isWeb
|
|
|
|
|
? []
|
|
|
|
|
: <Widget>[
|
2022-05-29 17:19:50 +08:00
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
2022-08-13 17:58:24 +08:00
|
|
|
|
icon: Icon(Icons.message),
|
2022-05-29 17:19:50 +08:00
|
|
|
|
onPressed: () {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
_ffi.chatModel
|
|
|
|
|
.changeCurrentID(ChatModel.clientModeID);
|
2022-08-13 18:10:04 +08:00
|
|
|
|
_ffi.chatModel.toggleChatOverlay();
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
]) +
|
|
|
|
|
[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.more_vert),
|
|
|
|
|
onPressed: () {
|
2022-08-14 12:57:30 +08:00
|
|
|
|
showActions(widget.id, ffiModel);
|
2022-08-13 18:10:04 +08:00
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.expand_more),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() => _showBar = !_showBar);
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// touchMode only:
|
|
|
|
|
/// LongPress -> right click
|
|
|
|
|
/// OneFingerPan -> start/end -> left down start/end
|
|
|
|
|
/// onDoubleTapDown -> move to
|
|
|
|
|
/// onLongPressDown => move to
|
|
|
|
|
///
|
|
|
|
|
/// mouseMode only:
|
|
|
|
|
/// DoubleFiner -> right click
|
|
|
|
|
/// HoldDrag -> left drag
|
|
|
|
|
|
2022-08-13 17:58:24 +08:00
|
|
|
|
void _onPointHoverImage(PointerHoverEvent e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
|
|
|
|
if (!_isPhysicalMouse) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_isPhysicalMouse = true;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (_isPhysicalMouse) {
|
|
|
|
|
_ffi.handleMouse(getEvent(e, 'mousemove'),
|
|
|
|
|
tabBarHeight: super.widget.tabBarHeight);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _onPointDownImage(PointerDownEvent e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) {
|
|
|
|
|
if (_isPhysicalMouse) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_isPhysicalMouse = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (_isPhysicalMouse) {
|
|
|
|
|
_ffi.handleMouse(getEvent(e, 'mousedown'),
|
|
|
|
|
tabBarHeight: super.widget.tabBarHeight);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _onPointUpImage(PointerUpEvent e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
|
|
|
|
if (_isPhysicalMouse) {
|
|
|
|
|
_ffi.handleMouse(getEvent(e, 'mouseup'),
|
|
|
|
|
tabBarHeight: super.widget.tabBarHeight);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _onPointMoveImage(PointerMoveEvent e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
|
|
|
|
if (_isPhysicalMouse) {
|
|
|
|
|
_ffi.handleMouse(getEvent(e, 'mousemove'),
|
|
|
|
|
tabBarHeight: super.widget.tabBarHeight);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _onPointerSignalImage(PointerSignalEvent e) {
|
|
|
|
|
if (e is PointerScrollEvent) {
|
2022-08-14 11:20:52 +08:00
|
|
|
|
var dx = e.scrollDelta.dx.toInt();
|
|
|
|
|
var dy = e.scrollDelta.dy.toInt();
|
2022-08-13 17:58:24 +08:00
|
|
|
|
if (dx > 0)
|
|
|
|
|
dx = -1;
|
|
|
|
|
else if (dx < 0) dx = 1;
|
|
|
|
|
if (dy > 0)
|
|
|
|
|
dy = -1;
|
|
|
|
|
else if (dy < 0) dy = 1;
|
|
|
|
|
bind.sessionSendMouse(
|
|
|
|
|
id: widget.id, msg: '{"type": "wheel", "x": "$dx", "y": "$dy"}');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Widget _buildImageListener(Widget child) {
|
|
|
|
|
return Listener(
|
|
|
|
|
onPointerHover: _onPointHoverImage,
|
|
|
|
|
onPointerDown: _onPointDownImage,
|
|
|
|
|
onPointerUp: _onPointUpImage,
|
|
|
|
|
onPointerMove: _onPointMoveImage,
|
|
|
|
|
onPointerSignal: _onPointerSignalImage,
|
|
|
|
|
child: MouseRegion(
|
|
|
|
|
onEnter: (evt) {
|
2022-08-16 20:48:36 +08:00
|
|
|
|
if (!_imageFocused) {
|
|
|
|
|
_physicalFocusNode.requestFocus();
|
|
|
|
|
}
|
2022-08-13 17:58:24 +08:00
|
|
|
|
_cursorOverImage.value = true;
|
|
|
|
|
},
|
|
|
|
|
onExit: (evt) {
|
|
|
|
|
_cursorOverImage.value = false;
|
|
|
|
|
},
|
|
|
|
|
child: child));
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-12 18:42:02 +08:00
|
|
|
|
Widget getBodyForDesktop(BuildContext context, bool keyboard) {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
var paints = <Widget>[
|
2022-08-11 16:03:04 +08:00
|
|
|
|
MouseRegion(onEnter: (evt) {
|
|
|
|
|
bind.hostStopSystemKeyPropagate(stopped: false);
|
|
|
|
|
}, onExit: (evt) {
|
|
|
|
|
bind.hostStopSystemKeyPropagate(stopped: true);
|
|
|
|
|
}, child: Container(
|
|
|
|
|
child: LayoutBuilder(builder: (context, constraints) {
|
|
|
|
|
Future.delayed(Duration.zero, () {
|
|
|
|
|
Provider.of<CanvasModel>(context, listen: false).updateViewStyle();
|
|
|
|
|
});
|
|
|
|
|
return ImagePaint(
|
2022-08-13 22:29:08 +08:00
|
|
|
|
id: widget.id,
|
|
|
|
|
cursorOverImage: _cursorOverImage,
|
|
|
|
|
listenerBuilder: _buildImageListener,
|
|
|
|
|
);
|
2022-08-11 16:03:04 +08:00
|
|
|
|
}),
|
|
|
|
|
))
|
2022-06-13 21:07:26 +08:00
|
|
|
|
];
|
2022-08-16 15:22:57 +08:00
|
|
|
|
final cursor = bind.sessionGetToggleOptionSync(
|
2022-08-03 22:03:31 +08:00
|
|
|
|
id: widget.id, arg: 'show-remote-cursor');
|
2022-05-31 22:09:36 +08:00
|
|
|
|
if (keyboard || cursor) {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
paints.add(CursorPaint(
|
|
|
|
|
id: widget.id,
|
|
|
|
|
));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
2022-08-15 20:26:20 +08:00
|
|
|
|
paints.add(QualityMonitor(_ffi.qualityMonitorModel));
|
2022-08-11 10:19:12 +08:00
|
|
|
|
return Stack(
|
|
|
|
|
children: paints,
|
|
|
|
|
);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int lastMouseDownButtons = 0;
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> getEvent(PointerEvent evt, String type) {
|
|
|
|
|
final Map<String, dynamic> out = {};
|
|
|
|
|
out['type'] = type;
|
|
|
|
|
out['x'] = evt.position.dx;
|
|
|
|
|
out['y'] = evt.position.dy;
|
2022-06-13 21:07:26 +08:00
|
|
|
|
if (_ffi.alt) out['alt'] = 'true';
|
|
|
|
|
if (_ffi.shift) out['shift'] = 'true';
|
|
|
|
|
if (_ffi.ctrl) out['ctrl'] = 'true';
|
|
|
|
|
if (_ffi.command) out['command'] = 'true';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
out['buttons'] = evt
|
|
|
|
|
.buttons; // left button: 1, right button: 2, middle button: 4, 1 | 2 = 3 (left + right)
|
|
|
|
|
if (evt.buttons != 0) {
|
|
|
|
|
lastMouseDownButtons = evt.buttons;
|
|
|
|
|
} else {
|
|
|
|
|
out['buttons'] = lastMouseDownButtons;
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-14 12:57:30 +08:00
|
|
|
|
void showActions(String id, FfiModel ffiModel) async {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
final size = MediaQuery.of(context).size;
|
|
|
|
|
final x = 120.0;
|
2022-08-03 15:31:19 +08:00
|
|
|
|
final y = size.height - super.widget.tabBarHeight;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
final more = <PopupMenuItem<String>>[];
|
2022-06-13 21:07:26 +08:00
|
|
|
|
final pi = _ffi.ffiModel.pi;
|
|
|
|
|
final perms = _ffi.ffiModel.permissions;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (pi.version.isNotEmpty) {
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Refresh')), value: 'refresh'));
|
|
|
|
|
}
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Row(
|
|
|
|
|
children: ([
|
2022-08-15 19:31:58 +08:00
|
|
|
|
Text(translate('OS Password')),
|
2022-05-29 17:19:50 +08:00
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
2022-08-12 18:42:02 +08:00
|
|
|
|
showSetOSPassword(widget.id, false, _ffi.dialogManager);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
child: Icon(Icons.edit, color: MyTheme.accent),
|
|
|
|
|
)
|
|
|
|
|
])),
|
|
|
|
|
value: 'enter_os_password'));
|
|
|
|
|
if (!isWebDesktop) {
|
|
|
|
|
if (perms['keyboard'] != false && perms['clipboard'] != false) {
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Paste')), value: 'paste'));
|
|
|
|
|
}
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Reset canvas')), value: 'reset_canvas'));
|
|
|
|
|
}
|
|
|
|
|
if (perms['keyboard'] != false) {
|
|
|
|
|
if (pi.platform == 'Linux' || pi.sasEnabled) {
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Insert') + ' Ctrl + Alt + Del'),
|
|
|
|
|
value: 'cad'));
|
|
|
|
|
}
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Insert Lock')), value: 'lock'));
|
|
|
|
|
if (pi.platform == 'Windows' &&
|
2022-08-16 15:22:57 +08:00
|
|
|
|
await bind.sessionGetToggleOption(id: id, arg: 'privacy-mode') !=
|
2022-05-31 22:09:36 +08:00
|
|
|
|
true) {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
more.add(PopupMenuItem<String>(
|
2022-08-14 12:57:30 +08:00
|
|
|
|
child: Text(translate(
|
|
|
|
|
(ffiModel.inputBlocked ? 'Unb' : 'B') + 'lock user input')),
|
2022-05-29 17:19:50 +08:00
|
|
|
|
value: 'block-input'));
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-15 19:31:58 +08:00
|
|
|
|
if (gFFI.ffiModel.permissions["restart"] != false &&
|
|
|
|
|
(pi.platform == "Linux" ||
|
|
|
|
|
pi.platform == "Windows" ||
|
|
|
|
|
pi.platform == "Mac OS")) {
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Restart Remote Device')), value: 'restart'));
|
|
|
|
|
}
|
2022-05-29 17:19:50 +08:00
|
|
|
|
() async {
|
|
|
|
|
var value = await showMenu(
|
|
|
|
|
context: context,
|
|
|
|
|
position: RelativeRect.fromLTRB(x, y, x, y),
|
|
|
|
|
items: more,
|
|
|
|
|
elevation: 8,
|
|
|
|
|
);
|
|
|
|
|
if (value == 'cad') {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionCtrlAltDel(id: widget.id);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else if (value == 'lock') {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionLockScreen(id: widget.id);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else if (value == 'block-input') {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionToggleOption(
|
2022-05-31 22:09:36 +08:00
|
|
|
|
id: widget.id,
|
2022-06-13 21:07:26 +08:00
|
|
|
|
value: (_ffi.ffiModel.inputBlocked ? 'un' : '') + 'block-input');
|
|
|
|
|
_ffi.ffiModel.inputBlocked = !_ffi.ffiModel.inputBlocked;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else if (value == 'refresh') {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionRefresh(id: widget.id);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else if (value == 'paste') {
|
|
|
|
|
() async {
|
|
|
|
|
ClipboardData? data = await Clipboard.getData(Clipboard.kTextPlain);
|
|
|
|
|
if (data != null && data.text != null) {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputString(id: widget.id, value: data.text ?? "");
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}();
|
|
|
|
|
} else if (value == 'enter_os_password') {
|
2022-08-13 15:08:17 +08:00
|
|
|
|
// FIXME:
|
2022-08-15 19:31:58 +08:00
|
|
|
|
// TODO icon diff
|
2022-08-13 15:08:17 +08:00
|
|
|
|
// null means no session of id
|
|
|
|
|
// empty string means no password
|
2022-08-16 15:22:57 +08:00
|
|
|
|
var password = await bind.sessionGetOption(id: id, arg: "os-password");
|
2022-05-31 22:09:36 +08:00
|
|
|
|
if (password != null) {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputOsPassword(id: widget.id, value: password);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
2022-08-12 18:42:02 +08:00
|
|
|
|
showSetOSPassword(widget.id, true, _ffi.dialogManager);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
} else if (value == 'reset_canvas') {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.cursorModel.reset();
|
2022-08-15 19:31:58 +08:00
|
|
|
|
} else if (value == 'restart') {
|
|
|
|
|
showRestartRemoteDevice(pi, widget.id, gFFI.dialogManager);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void onWindowEvent(String eventName) {
|
|
|
|
|
print("window event: $eventName");
|
|
|
|
|
switch (eventName) {
|
|
|
|
|
case 'resize':
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.canvasModel.updateViewStyle();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
case 'maximize':
|
|
|
|
|
Future.delayed(Duration(milliseconds: 100), () {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.canvasModel.updateViewStyle();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-17 22:21:49 +08:00
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
bool get wantKeepAlive => true;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ImagePaint extends StatelessWidget {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
final String id;
|
2022-08-13 17:58:24 +08:00
|
|
|
|
final Rx<bool> cursorOverImage;
|
|
|
|
|
final Widget Function(Widget)? listenerBuilder;
|
2022-08-11 00:12:47 +08:00
|
|
|
|
final ScrollController _horizontal = ScrollController();
|
|
|
|
|
final ScrollController _vertical = ScrollController();
|
2022-06-13 21:07:26 +08:00
|
|
|
|
|
2022-08-13 17:58:24 +08:00
|
|
|
|
ImagePaint(
|
|
|
|
|
{Key? key,
|
|
|
|
|
required this.id,
|
|
|
|
|
required this.cursorOverImage,
|
|
|
|
|
this.listenerBuilder = null})
|
|
|
|
|
: super(key: key);
|
2022-06-13 21:07:26 +08:00
|
|
|
|
|
2022-05-29 17:19:50 +08:00
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2022-06-17 00:06:49 +08:00
|
|
|
|
final m = Provider.of<ImageModel>(context);
|
2022-08-12 20:14:53 +08:00
|
|
|
|
var c = Provider.of<CanvasModel>(context);
|
|
|
|
|
final s = c.scale;
|
2022-08-11 00:12:47 +08:00
|
|
|
|
if (c.scrollStyle == ScrollStyle.scrollbar) {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
final imageWidget = SizedBox(
|
|
|
|
|
width: c.getDisplayWidth() * s,
|
|
|
|
|
height: c.getDisplayHeight() * s,
|
|
|
|
|
child: CustomPaint(
|
|
|
|
|
painter: new ImagePainter(image: m.image, x: 0, y: 0, scale: s),
|
|
|
|
|
));
|
2022-08-11 00:12:47 +08:00
|
|
|
|
return Center(
|
2022-08-12 20:14:53 +08:00
|
|
|
|
child: NotificationListener<ScrollNotification>(
|
|
|
|
|
onNotification: (_notification) {
|
|
|
|
|
final percentX = _horizontal.position.extentBefore /
|
|
|
|
|
(_horizontal.position.extentBefore +
|
|
|
|
|
_horizontal.position.extentInside +
|
|
|
|
|
_horizontal.position.extentAfter);
|
|
|
|
|
final percentY = _vertical.position.extentBefore /
|
|
|
|
|
(_vertical.position.extentBefore +
|
|
|
|
|
_vertical.position.extentInside +
|
|
|
|
|
_vertical.position.extentAfter);
|
|
|
|
|
c.setScrollPercent(percentX, percentY);
|
|
|
|
|
return false;
|
|
|
|
|
},
|
2022-08-13 17:58:24 +08:00
|
|
|
|
child: Obx(() => MouseRegion(
|
|
|
|
|
cursor: cursorOverImage.value
|
|
|
|
|
? SystemMouseCursors.none
|
|
|
|
|
: SystemMouseCursors.basic,
|
|
|
|
|
child: _buildCrossScrollbar(_buildListener(imageWidget)))),
|
2022-08-11 00:12:47 +08:00
|
|
|
|
));
|
|
|
|
|
} else {
|
2022-08-13 17:58:24 +08:00
|
|
|
|
final imageWidget = SizedBox(
|
|
|
|
|
width: c.size.width,
|
|
|
|
|
height: c.size.height,
|
|
|
|
|
child: CustomPaint(
|
|
|
|
|
painter: new ImagePainter(
|
|
|
|
|
image: m.image, x: c.x / s, y: c.y / s, scale: s),
|
|
|
|
|
));
|
|
|
|
|
return _buildListener(imageWidget);
|
2022-08-11 00:12:47 +08:00
|
|
|
|
}
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
2022-08-13 15:08:17 +08:00
|
|
|
|
|
2022-08-13 17:58:24 +08:00
|
|
|
|
Widget _buildCrossScrollbar(Widget child) {
|
2022-08-14 12:48:04 +08:00
|
|
|
|
final physicsVertical =
|
|
|
|
|
cursorOverImage.value ? const NeverScrollableScrollPhysics() : null;
|
|
|
|
|
final physicsHorizontal =
|
|
|
|
|
cursorOverImage.value ? const NeverScrollableScrollPhysics() : null;
|
|
|
|
|
return Scrollbar(
|
|
|
|
|
controller: _vertical,
|
|
|
|
|
thumbVisibility: true,
|
|
|
|
|
trackVisibility: true,
|
|
|
|
|
child: Scrollbar(
|
|
|
|
|
controller: _horizontal,
|
2022-08-13 17:58:24 +08:00
|
|
|
|
thumbVisibility: true,
|
|
|
|
|
trackVisibility: true,
|
2022-08-14 12:48:04 +08:00
|
|
|
|
notificationPredicate: (notif) => notif.depth == 1,
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
controller: _vertical,
|
|
|
|
|
physics: physicsVertical,
|
2022-08-13 17:58:24 +08:00
|
|
|
|
child: SingleChildScrollView(
|
2022-08-14 12:48:04 +08:00
|
|
|
|
controller: _horizontal,
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
physics: physicsHorizontal,
|
|
|
|
|
child: child,
|
2022-08-14 11:20:52 +08:00
|
|
|
|
),
|
2022-08-14 12:48:04 +08:00
|
|
|
|
),
|
|
|
|
|
));
|
2022-08-13 17:58:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Widget _buildListener(Widget child) {
|
|
|
|
|
if (listenerBuilder != null) {
|
|
|
|
|
return listenerBuilder!(child);
|
|
|
|
|
} else {
|
|
|
|
|
return child;
|
|
|
|
|
}
|
2022-08-13 15:08:17 +08:00
|
|
|
|
}
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class CursorPaint extends StatelessWidget {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
final String id;
|
|
|
|
|
|
|
|
|
|
const CursorPaint({Key? key, required this.id}) : super(key: key);
|
|
|
|
|
|
2022-05-29 17:19:50 +08:00
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2022-06-17 00:06:49 +08:00
|
|
|
|
final m = Provider.of<CursorModel>(context);
|
|
|
|
|
final c = Provider.of<CanvasModel>(context);
|
|
|
|
|
// final adjust = m.adjustForKeyboard();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
var s = c.scale;
|
|
|
|
|
return CustomPaint(
|
|
|
|
|
painter: new ImagePainter(
|
|
|
|
|
image: m.image,
|
|
|
|
|
x: m.x * s - m.hotx + c.x,
|
2022-06-17 00:06:49 +08:00
|
|
|
|
y: m.y * s - m.hoty + c.y,
|
2022-05-29 17:19:50 +08:00
|
|
|
|
scale: 1),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ImagePainter extends CustomPainter {
|
|
|
|
|
ImagePainter({
|
|
|
|
|
required this.image,
|
|
|
|
|
required this.x,
|
|
|
|
|
required this.y,
|
|
|
|
|
required this.scale,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ui.Image? image;
|
|
|
|
|
double x;
|
|
|
|
|
double y;
|
|
|
|
|
double scale;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void paint(Canvas canvas, Size size) {
|
|
|
|
|
if (image == null) return;
|
|
|
|
|
canvas.scale(scale, scale);
|
2022-08-05 11:07:24 +08:00
|
|
|
|
// https://github.com/flutter/flutter/issues/76187#issuecomment-784628161
|
2022-08-08 09:41:24 +08:00
|
|
|
|
// https://api.flutter-io.cn/flutter/dart-ui/FilterQuality.html
|
2022-08-05 11:07:24 +08:00
|
|
|
|
var paint = new Paint();
|
2022-08-08 09:41:24 +08:00
|
|
|
|
paint.filterQuality = FilterQuality.medium;
|
|
|
|
|
if (scale > 10.00000) {
|
2022-08-05 11:07:24 +08:00
|
|
|
|
paint.filterQuality = FilterQuality.high;
|
|
|
|
|
}
|
|
|
|
|
canvas.drawImage(image!, new Offset(x, y), paint);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
bool shouldRepaint(CustomPainter oldDelegate) {
|
|
|
|
|
return oldDelegate != this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-15 20:26:20 +08:00
|
|
|
|
class QualityMonitor extends StatelessWidget {
|
|
|
|
|
final QualityMonitorModel qualityMonitorModel;
|
|
|
|
|
QualityMonitor(this.qualityMonitorModel);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) => ChangeNotifierProvider.value(
|
|
|
|
|
value: qualityMonitorModel,
|
|
|
|
|
child: Consumer<QualityMonitorModel>(
|
|
|
|
|
builder: (context, qualityMonitorModel, child) => Positioned(
|
|
|
|
|
top: 10,
|
|
|
|
|
right: 10,
|
|
|
|
|
child: qualityMonitorModel.show
|
|
|
|
|
? Container(
|
|
|
|
|
padding: EdgeInsets.all(8),
|
|
|
|
|
color: MyTheme.canvasColor.withAlpha(120),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Text(
|
|
|
|
|
"Speed: ${qualityMonitorModel.data.speed ?? ''}",
|
|
|
|
|
style: TextStyle(color: MyTheme.grayBg),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
"FPS: ${qualityMonitorModel.data.fps ?? ''}",
|
|
|
|
|
style: TextStyle(color: MyTheme.grayBg),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
"Delay: ${qualityMonitorModel.data.delay ?? ''} ms",
|
|
|
|
|
style: TextStyle(color: MyTheme.grayBg),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
"Target Bitrate: ${qualityMonitorModel.data.targetBitrate ?? ''}kb",
|
|
|
|
|
style: TextStyle(color: MyTheme.grayBg),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
"Codec: ${qualityMonitorModel.data.codecFormat ?? ''}",
|
|
|
|
|
style: TextStyle(color: MyTheme.grayBg),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
: SizedBox.shrink())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void showOptions(String id) async {
|
|
|
|
|
final _ffi = ffi(id);
|
2022-08-16 15:22:57 +08:00
|
|
|
|
String quality = await bind.sessionGetImageQuality(id: id) ?? 'balanced';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (quality == '') quality = 'balanced';
|
2022-05-31 17:36:36 +08:00
|
|
|
|
String viewStyle =
|
2022-08-16 15:22:57 +08:00
|
|
|
|
await bind.sessionGetOption(id: id, arg: 'view-style') ?? '';
|
2022-08-11 00:12:47 +08:00
|
|
|
|
String scrollStyle =
|
2022-08-16 15:22:57 +08:00
|
|
|
|
await bind.sessionGetOption(id: id, arg: 'scroll-style') ?? '';
|
2022-05-29 17:19:50 +08:00
|
|
|
|
var displays = <Widget>[];
|
2022-08-15 20:26:20 +08:00
|
|
|
|
final pi = _ffi.ffiModel.pi;
|
|
|
|
|
final image = _ffi.ffiModel.getConnectionImage();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (image != null)
|
|
|
|
|
displays.add(Padding(padding: const EdgeInsets.only(top: 8), child: image));
|
|
|
|
|
if (pi.displays.length > 1) {
|
|
|
|
|
final cur = pi.currentDisplay;
|
|
|
|
|
final children = <Widget>[];
|
|
|
|
|
for (var i = 0; i < pi.displays.length; ++i)
|
|
|
|
|
children.add(InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
if (i == cur) return;
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionSwitchDisplay(id: id, value: i);
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.dialogManager.dismissAll();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
child: Ink(
|
|
|
|
|
width: 40,
|
|
|
|
|
height: 40,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border: Border.all(color: Colors.black87),
|
|
|
|
|
color: i == cur ? Colors.black87 : Colors.white),
|
|
|
|
|
child: Center(
|
|
|
|
|
child: Text((i + 1).toString(),
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
color: i == cur ? Colors.white : Colors.black87))))));
|
|
|
|
|
displays.add(Padding(
|
|
|
|
|
padding: const EdgeInsets.only(top: 8),
|
|
|
|
|
child: Wrap(
|
|
|
|
|
alignment: WrapAlignment.center,
|
|
|
|
|
spacing: 8,
|
|
|
|
|
children: children,
|
|
|
|
|
)));
|
|
|
|
|
}
|
|
|
|
|
if (displays.isNotEmpty) {
|
|
|
|
|
displays.add(Divider(color: MyTheme.border));
|
|
|
|
|
}
|
2022-08-15 20:26:20 +08:00
|
|
|
|
final perms = _ffi.ffiModel.permissions;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.dialogManager.show((setState, close) {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
final more = <Widget>[];
|
|
|
|
|
if (perms['audio'] != false) {
|
2022-05-31 22:09:36 +08:00
|
|
|
|
more.add(getToggle(id, setState, 'disable-audio', 'Mute'));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
if (perms['keyboard'] != false) {
|
|
|
|
|
if (perms['clipboard'] != false)
|
2022-05-31 22:09:36 +08:00
|
|
|
|
more.add(
|
|
|
|
|
getToggle(id, setState, 'disable-clipboard', 'Disable clipboard'));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
more.add(getToggle(
|
2022-05-31 22:09:36 +08:00
|
|
|
|
id, setState, 'lock-after-session-end', 'Lock after session end'));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (pi.platform == 'Windows') {
|
2022-08-08 22:00:01 +08:00
|
|
|
|
more.add(Consumer<FfiModel>(
|
|
|
|
|
builder: (_context, _ffiModel, _child) => () {
|
|
|
|
|
return getToggle(
|
|
|
|
|
id, setState, 'privacy-mode', 'Privacy mode');
|
|
|
|
|
}()));
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
var setQuality = (String? value) {
|
|
|
|
|
if (value == null) return;
|
|
|
|
|
setState(() {
|
|
|
|
|
quality = value;
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionSetImageQuality(id: id, value: value);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
var setViewStyle = (String? value) {
|
|
|
|
|
if (value == null) return;
|
|
|
|
|
setState(() {
|
|
|
|
|
viewStyle = value;
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionPeerOption(id: id, name: "view-style", value: value);
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.canvasModel.updateViewStyle();
|
2022-05-29 17:19:50 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
2022-08-11 00:12:47 +08:00
|
|
|
|
var setScrollStyle = (String? value) {
|
|
|
|
|
if (value == null) return;
|
|
|
|
|
setState(() {
|
|
|
|
|
scrollStyle = value;
|
|
|
|
|
bind.sessionPeerOption(id: id, name: "scroll-style", value: value);
|
2022-08-15 20:26:20 +08:00
|
|
|
|
_ffi.canvasModel.updateScrollStyle();
|
2022-08-11 00:12:47 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
2022-05-29 17:19:50 +08:00
|
|
|
|
return CustomAlertDialog(
|
|
|
|
|
title: SizedBox.shrink(),
|
|
|
|
|
content: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: displays +
|
|
|
|
|
<Widget>[
|
|
|
|
|
getRadio('Original', 'original', viewStyle, setViewStyle),
|
|
|
|
|
getRadio('Shrink', 'shrink', viewStyle, setViewStyle),
|
|
|
|
|
getRadio('Stretch', 'stretch', viewStyle, setViewStyle),
|
|
|
|
|
Divider(color: MyTheme.border),
|
2022-08-11 00:12:47 +08:00
|
|
|
|
getRadio(
|
2022-08-12 20:14:53 +08:00
|
|
|
|
'ScrollAuto', 'scrollauto', scrollStyle, setScrollStyle),
|
2022-08-13 22:29:08 +08:00
|
|
|
|
getRadio('Scrollbar', 'scrollbar', scrollStyle, setScrollStyle),
|
2022-08-11 00:12:47 +08:00
|
|
|
|
Divider(color: MyTheme.border),
|
2022-05-29 17:19:50 +08:00
|
|
|
|
getRadio('Good image quality', 'best', quality, setQuality),
|
|
|
|
|
getRadio('Balanced', 'balanced', quality, setQuality),
|
|
|
|
|
getRadio('Optimize reaction time', 'low', quality, setQuality),
|
|
|
|
|
Divider(color: MyTheme.border),
|
2022-05-31 22:09:36 +08:00
|
|
|
|
getToggle(
|
|
|
|
|
id, setState, 'show-remote-cursor', 'Show remote cursor'),
|
2022-08-15 20:26:20 +08:00
|
|
|
|
getToggle(id, setState, 'show-quality-monitor',
|
|
|
|
|
'Show quality monitor',
|
|
|
|
|
ffi: _ffi),
|
2022-05-29 17:19:50 +08:00
|
|
|
|
] +
|
|
|
|
|
more),
|
|
|
|
|
actions: [],
|
|
|
|
|
contentPadding: 0,
|
|
|
|
|
);
|
|
|
|
|
}, clickMaskDismiss: true, backDismiss: true);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-12 18:42:02 +08:00
|
|
|
|
void showSetOSPassword(
|
|
|
|
|
String id, bool login, OverlayDialogManager dialogManager) async {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
final controller = TextEditingController();
|
2022-08-16 15:22:57 +08:00
|
|
|
|
var password = await bind.sessionGetOption(id: id, arg: "os-password") ?? "";
|
|
|
|
|
var autoLogin = await bind.sessionGetOption(id: id, arg: "auto-login") != "";
|
2022-05-29 17:19:50 +08:00
|
|
|
|
controller.text = password;
|
2022-08-12 18:42:02 +08:00
|
|
|
|
dialogManager.show((setState, close) {
|
2022-05-29 17:19:50 +08:00
|
|
|
|
return CustomAlertDialog(
|
|
|
|
|
title: Text(translate('OS Password')),
|
|
|
|
|
content: Column(mainAxisSize: MainAxisSize.min, children: [
|
|
|
|
|
PasswordWidget(controller: controller),
|
|
|
|
|
CheckboxListTile(
|
|
|
|
|
contentPadding: const EdgeInsets.all(0),
|
|
|
|
|
dense: true,
|
|
|
|
|
controlAffinity: ListTileControlAffinity.leading,
|
|
|
|
|
title: Text(
|
|
|
|
|
translate('Auto Login'),
|
|
|
|
|
),
|
|
|
|
|
value: autoLogin,
|
|
|
|
|
onChanged: (v) {
|
|
|
|
|
if (v == null) return;
|
|
|
|
|
setState(() => autoLogin = v);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
actions: [
|
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
child: Text(translate('Cancel')),
|
|
|
|
|
),
|
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
var text = controller.text.trim();
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionPeerOption(id: id, name: "os-password", value: text);
|
|
|
|
|
bind.sessionPeerOption(
|
2022-05-31 22:09:36 +08:00
|
|
|
|
id: id, name: "auto-login", value: autoLogin ? 'Y' : '');
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (text != "" && login) {
|
2022-08-03 22:03:31 +08:00
|
|
|
|
bind.sessionInputOsPassword(id: id, value: text);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
close();
|
|
|
|
|
},
|
|
|
|
|
child: Text(translate('OK')),
|
|
|
|
|
),
|
|
|
|
|
]);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-13 21:07:26 +08:00
|
|
|
|
void sendPrompt(String id, bool isMac, String key) {
|
|
|
|
|
FFI _ffi = ffi(id);
|
|
|
|
|
final old = isMac ? _ffi.command : _ffi.ctrl;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (isMac) {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.command = true;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.ctrl = true;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.inputKey(key);
|
2022-05-29 17:19:50 +08:00
|
|
|
|
if (isMac) {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.command = old;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
} else {
|
2022-06-13 21:07:26 +08:00
|
|
|
|
_ffi.ctrl = old;
|
2022-05-29 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// flutter/packages/flutter/lib/src/services/keyboard_key.dart -> _keyLabels
|
|
|
|
|
/// see [LogicalKeyboardKey.keyLabel]
|
|
|
|
|
const Map<int, String> _logicalKeyMap = <int, String>{
|
|
|
|
|
0x00000000020: 'VK_SPACE',
|
|
|
|
|
0x00000000022: 'VK_QUOTE',
|
|
|
|
|
0x0000000002c: 'VK_COMMA',
|
|
|
|
|
0x0000000002d: 'VK_MINUS',
|
|
|
|
|
0x0000000002f: 'VK_SLASH',
|
|
|
|
|
0x00000000030: 'VK_0',
|
|
|
|
|
0x00000000031: 'VK_1',
|
|
|
|
|
0x00000000032: 'VK_2',
|
|
|
|
|
0x00000000033: 'VK_3',
|
|
|
|
|
0x00000000034: 'VK_4',
|
|
|
|
|
0x00000000035: 'VK_5',
|
|
|
|
|
0x00000000036: 'VK_6',
|
|
|
|
|
0x00000000037: 'VK_7',
|
|
|
|
|
0x00000000038: 'VK_8',
|
|
|
|
|
0x00000000039: 'VK_9',
|
|
|
|
|
0x0000000003b: 'VK_SEMICOLON',
|
|
|
|
|
0x0000000003d: 'VK_PLUS', // it is =
|
|
|
|
|
0x0000000005b: 'VK_LBRACKET',
|
|
|
|
|
0x0000000005c: 'VK_BACKSLASH',
|
|
|
|
|
0x0000000005d: 'VK_RBRACKET',
|
|
|
|
|
0x00000000061: 'VK_A',
|
|
|
|
|
0x00000000062: 'VK_B',
|
|
|
|
|
0x00000000063: 'VK_C',
|
|
|
|
|
0x00000000064: 'VK_D',
|
|
|
|
|
0x00000000065: 'VK_E',
|
|
|
|
|
0x00000000066: 'VK_F',
|
|
|
|
|
0x00000000067: 'VK_G',
|
|
|
|
|
0x00000000068: 'VK_H',
|
|
|
|
|
0x00000000069: 'VK_I',
|
|
|
|
|
0x0000000006a: 'VK_J',
|
|
|
|
|
0x0000000006b: 'VK_K',
|
|
|
|
|
0x0000000006c: 'VK_L',
|
|
|
|
|
0x0000000006d: 'VK_M',
|
|
|
|
|
0x0000000006e: 'VK_N',
|
|
|
|
|
0x0000000006f: 'VK_O',
|
|
|
|
|
0x00000000070: 'VK_P',
|
|
|
|
|
0x00000000071: 'VK_Q',
|
|
|
|
|
0x00000000072: 'VK_R',
|
|
|
|
|
0x00000000073: 'VK_S',
|
|
|
|
|
0x00000000074: 'VK_T',
|
|
|
|
|
0x00000000075: 'VK_U',
|
|
|
|
|
0x00000000076: 'VK_V',
|
|
|
|
|
0x00000000077: 'VK_W',
|
|
|
|
|
0x00000000078: 'VK_X',
|
|
|
|
|
0x00000000079: 'VK_Y',
|
|
|
|
|
0x0000000007a: 'VK_Z',
|
|
|
|
|
0x00100000008: 'VK_BACK',
|
|
|
|
|
0x00100000009: 'VK_TAB',
|
|
|
|
|
0x0010000000d: 'VK_ENTER',
|
|
|
|
|
0x0010000001b: 'VK_ESCAPE',
|
|
|
|
|
0x0010000007f: 'VK_DELETE',
|
|
|
|
|
0x00100000104: 'VK_CAPITAL',
|
|
|
|
|
0x00100000301: 'VK_DOWN',
|
|
|
|
|
0x00100000302: 'VK_LEFT',
|
|
|
|
|
0x00100000303: 'VK_RIGHT',
|
|
|
|
|
0x00100000304: 'VK_UP',
|
|
|
|
|
0x00100000305: 'VK_END',
|
|
|
|
|
0x00100000306: 'VK_HOME',
|
|
|
|
|
0x00100000307: 'VK_NEXT',
|
|
|
|
|
0x00100000308: 'VK_PRIOR',
|
|
|
|
|
0x00100000401: 'VK_CLEAR',
|
|
|
|
|
0x00100000407: 'VK_INSERT',
|
|
|
|
|
0x00100000504: 'VK_CANCEL',
|
|
|
|
|
0x00100000506: 'VK_EXECUTE',
|
|
|
|
|
0x00100000508: 'VK_HELP',
|
|
|
|
|
0x00100000509: 'VK_PAUSE',
|
|
|
|
|
0x0010000050c: 'VK_SELECT',
|
|
|
|
|
0x00100000608: 'VK_PRINT',
|
|
|
|
|
0x00100000705: 'VK_CONVERT',
|
|
|
|
|
0x00100000706: 'VK_FINAL',
|
|
|
|
|
0x00100000711: 'VK_HANGUL',
|
|
|
|
|
0x00100000712: 'VK_HANJA',
|
|
|
|
|
0x00100000713: 'VK_JUNJA',
|
|
|
|
|
0x00100000718: 'VK_KANA',
|
|
|
|
|
0x00100000719: 'VK_KANJI',
|
|
|
|
|
0x00100000801: 'VK_F1',
|
|
|
|
|
0x00100000802: 'VK_F2',
|
|
|
|
|
0x00100000803: 'VK_F3',
|
|
|
|
|
0x00100000804: 'VK_F4',
|
|
|
|
|
0x00100000805: 'VK_F5',
|
|
|
|
|
0x00100000806: 'VK_F6',
|
|
|
|
|
0x00100000807: 'VK_F7',
|
|
|
|
|
0x00100000808: 'VK_F8',
|
|
|
|
|
0x00100000809: 'VK_F9',
|
|
|
|
|
0x0010000080a: 'VK_F10',
|
|
|
|
|
0x0010000080b: 'VK_F11',
|
|
|
|
|
0x0010000080c: 'VK_F12',
|
|
|
|
|
0x00100000d2b: 'Apps',
|
|
|
|
|
0x00200000002: 'VK_SLEEP',
|
|
|
|
|
0x00200000100: 'VK_CONTROL',
|
|
|
|
|
0x00200000101: 'RControl',
|
|
|
|
|
0x00200000102: 'VK_SHIFT',
|
|
|
|
|
0x00200000103: 'RShift',
|
|
|
|
|
0x00200000104: 'VK_MENU',
|
|
|
|
|
0x00200000105: 'RAlt',
|
|
|
|
|
0x002000001f0: 'VK_CONTROL',
|
|
|
|
|
0x002000001f2: 'VK_SHIFT',
|
|
|
|
|
0x002000001f4: 'VK_MENU',
|
|
|
|
|
0x002000001f6: 'Meta',
|
|
|
|
|
0x0020000022a: 'VK_MULTIPLY',
|
|
|
|
|
0x0020000022b: 'VK_ADD',
|
|
|
|
|
0x0020000022d: 'VK_SUBTRACT',
|
|
|
|
|
0x0020000022e: 'VK_DECIMAL',
|
|
|
|
|
0x0020000022f: 'VK_DIVIDE',
|
|
|
|
|
0x00200000230: 'VK_NUMPAD0',
|
|
|
|
|
0x00200000231: 'VK_NUMPAD1',
|
|
|
|
|
0x00200000232: 'VK_NUMPAD2',
|
|
|
|
|
0x00200000233: 'VK_NUMPAD3',
|
|
|
|
|
0x00200000234: 'VK_NUMPAD4',
|
|
|
|
|
0x00200000235: 'VK_NUMPAD5',
|
|
|
|
|
0x00200000236: 'VK_NUMPAD6',
|
|
|
|
|
0x00200000237: 'VK_NUMPAD7',
|
|
|
|
|
0x00200000238: 'VK_NUMPAD8',
|
|
|
|
|
0x00200000239: 'VK_NUMPAD9',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// flutter/packages/flutter/lib/src/services/keyboard_key.dart -> _debugName
|
|
|
|
|
/// see [PhysicalKeyboardKey.debugName] -> _debugName
|
|
|
|
|
const Map<int, String> _physicalKeyMap = <int, String>{
|
|
|
|
|
0x00010082: 'VK_SLEEP',
|
|
|
|
|
0x00070004: 'VK_A',
|
|
|
|
|
0x00070005: 'VK_B',
|
|
|
|
|
0x00070006: 'VK_C',
|
|
|
|
|
0x00070007: 'VK_D',
|
|
|
|
|
0x00070008: 'VK_E',
|
|
|
|
|
0x00070009: 'VK_F',
|
|
|
|
|
0x0007000a: 'VK_G',
|
|
|
|
|
0x0007000b: 'VK_H',
|
|
|
|
|
0x0007000c: 'VK_I',
|
|
|
|
|
0x0007000d: 'VK_J',
|
|
|
|
|
0x0007000e: 'VK_K',
|
|
|
|
|
0x0007000f: 'VK_L',
|
|
|
|
|
0x00070010: 'VK_M',
|
|
|
|
|
0x00070011: 'VK_N',
|
|
|
|
|
0x00070012: 'VK_O',
|
|
|
|
|
0x00070013: 'VK_P',
|
|
|
|
|
0x00070014: 'VK_Q',
|
|
|
|
|
0x00070015: 'VK_R',
|
|
|
|
|
0x00070016: 'VK_S',
|
|
|
|
|
0x00070017: 'VK_T',
|
|
|
|
|
0x00070018: 'VK_U',
|
|
|
|
|
0x00070019: 'VK_V',
|
|
|
|
|
0x0007001a: 'VK_W',
|
|
|
|
|
0x0007001b: 'VK_X',
|
|
|
|
|
0x0007001c: 'VK_Y',
|
|
|
|
|
0x0007001d: 'VK_Z',
|
|
|
|
|
0x0007001e: 'VK_1',
|
|
|
|
|
0x0007001f: 'VK_2',
|
|
|
|
|
0x00070020: 'VK_3',
|
|
|
|
|
0x00070021: 'VK_4',
|
|
|
|
|
0x00070022: 'VK_5',
|
|
|
|
|
0x00070023: 'VK_6',
|
|
|
|
|
0x00070024: 'VK_7',
|
|
|
|
|
0x00070025: 'VK_8',
|
|
|
|
|
0x00070026: 'VK_9',
|
|
|
|
|
0x00070027: 'VK_0',
|
|
|
|
|
0x00070028: 'VK_ENTER',
|
|
|
|
|
0x00070029: 'VK_ESCAPE',
|
|
|
|
|
0x0007002a: 'VK_BACK',
|
|
|
|
|
0x0007002b: 'VK_TAB',
|
|
|
|
|
0x0007002c: 'VK_SPACE',
|
|
|
|
|
0x0007002d: 'VK_MINUS',
|
|
|
|
|
0x0007002e: 'VK_PLUS', // it is =
|
|
|
|
|
0x0007002f: 'VK_LBRACKET',
|
|
|
|
|
0x00070030: 'VK_RBRACKET',
|
|
|
|
|
0x00070033: 'VK_SEMICOLON',
|
|
|
|
|
0x00070034: 'VK_QUOTE',
|
|
|
|
|
0x00070036: 'VK_COMMA',
|
|
|
|
|
0x00070038: 'VK_SLASH',
|
|
|
|
|
0x00070039: 'VK_CAPITAL',
|
|
|
|
|
0x0007003a: 'VK_F1',
|
|
|
|
|
0x0007003b: 'VK_F2',
|
|
|
|
|
0x0007003c: 'VK_F3',
|
|
|
|
|
0x0007003d: 'VK_F4',
|
|
|
|
|
0x0007003e: 'VK_F5',
|
|
|
|
|
0x0007003f: 'VK_F6',
|
|
|
|
|
0x00070040: 'VK_F7',
|
|
|
|
|
0x00070041: 'VK_F8',
|
|
|
|
|
0x00070042: 'VK_F9',
|
|
|
|
|
0x00070043: 'VK_F10',
|
|
|
|
|
0x00070044: 'VK_F11',
|
|
|
|
|
0x00070045: 'VK_F12',
|
|
|
|
|
0x00070049: 'VK_INSERT',
|
|
|
|
|
0x0007004a: 'VK_HOME',
|
|
|
|
|
0x0007004b: 'VK_PRIOR', // Page Up
|
|
|
|
|
0x0007004c: 'VK_DELETE',
|
|
|
|
|
0x0007004d: 'VK_END',
|
|
|
|
|
0x0007004e: 'VK_NEXT', // Page Down
|
|
|
|
|
0x0007004f: 'VK_RIGHT',
|
|
|
|
|
0x00070050: 'VK_LEFT',
|
|
|
|
|
0x00070051: 'VK_DOWN',
|
|
|
|
|
0x00070052: 'VK_UP',
|
|
|
|
|
0x00070053: 'Num Lock', // TODO rust not impl
|
|
|
|
|
0x00070054: 'VK_DIVIDE', // numpad
|
|
|
|
|
0x00070055: 'VK_MULTIPLY',
|
|
|
|
|
0x00070056: 'VK_SUBTRACT',
|
|
|
|
|
0x00070057: 'VK_ADD',
|
|
|
|
|
0x00070058: 'VK_ENTER', // num enter
|
|
|
|
|
0x00070059: 'VK_NUMPAD0',
|
|
|
|
|
0x0007005a: 'VK_NUMPAD1',
|
|
|
|
|
0x0007005b: 'VK_NUMPAD2',
|
|
|
|
|
0x0007005c: 'VK_NUMPAD3',
|
|
|
|
|
0x0007005d: 'VK_NUMPAD4',
|
|
|
|
|
0x0007005e: 'VK_NUMPAD5',
|
|
|
|
|
0x0007005f: 'VK_NUMPAD6',
|
|
|
|
|
0x00070060: 'VK_NUMPAD7',
|
|
|
|
|
0x00070061: 'VK_NUMPAD8',
|
|
|
|
|
0x00070062: 'VK_NUMPAD9',
|
|
|
|
|
0x00070063: 'VK_DECIMAL',
|
|
|
|
|
0x00070075: 'VK_HELP',
|
|
|
|
|
0x00070077: 'VK_SELECT',
|
|
|
|
|
0x00070088: 'VK_KANA',
|
|
|
|
|
0x0007008a: 'VK_CONVERT',
|
|
|
|
|
0x000700e0: 'VK_CONTROL',
|
|
|
|
|
0x000700e1: 'VK_SHIFT',
|
|
|
|
|
0x000700e2: 'VK_MENU',
|
|
|
|
|
0x000700e3: 'Meta',
|
|
|
|
|
0x000700e4: 'RControl',
|
|
|
|
|
0x000700e5: 'RShift',
|
|
|
|
|
0x000700e6: 'RAlt',
|
|
|
|
|
0x000700e7: 'RWin',
|
|
|
|
|
0x000c00b1: 'VK_PAUSE',
|
|
|
|
|
0x000c00cd: 'VK_PAUSE',
|
|
|
|
|
0x000c019e: 'LOCK_SCREEN',
|
|
|
|
|
0x000c0208: 'VK_PRINT',
|
|
|
|
|
};
|