2022-04-25 18:25:25 +08:00
|
|
|
|
import 'package:flutter/gestures.dart';
|
2020-11-17 01:22:14 +08:00
|
|
|
|
import 'package:flutter/material.dart';
|
2022-04-12 22:38:39 +08:00
|
|
|
|
import 'package:flutter_hbb/models/chat_model.dart';
|
2022-05-24 23:33:00 +08:00
|
|
|
|
import 'package:flutter_hbb/mobile/widgets/gesture_help.dart';
|
2022-04-19 13:07:45 +08:00
|
|
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
2020-11-18 23:15:59 +08:00
|
|
|
|
import 'package:provider/provider.dart';
|
2020-11-17 01:22:14 +08:00
|
|
|
|
import 'package:flutter/services.dart';
|
2020-11-17 11:12:55 +08:00
|
|
|
|
import 'dart:ui' as ui;
|
2020-11-17 12:08:31 +08:00
|
|
|
|
import 'dart:async';
|
2020-11-23 13:03:51 +08:00
|
|
|
|
import 'package:wakelock/wakelock.dart';
|
2022-05-24 23:33:00 +08:00
|
|
|
|
import '../../common.dart';
|
2022-03-13 00:32:44 +08:00
|
|
|
|
import '../widgets/gestures.dart';
|
2022-05-24 23:33:00 +08:00
|
|
|
|
import '../../models/model.dart';
|
2022-03-07 22:54:34 +08:00
|
|
|
|
import '../widgets/dialog.dart';
|
2022-04-28 22:44:54 +08:00
|
|
|
|
import '../widgets/overlay.dart';
|
2020-11-17 01:22:14 +08:00
|
|
|
|
|
2020-11-28 18:06:27 +08:00
|
|
|
|
final initText = '\1' * 1024;
|
|
|
|
|
|
2020-11-17 01:22:14 +08:00
|
|
|
|
class RemotePage extends StatefulWidget {
|
2022-02-17 15:22:14 +08:00
|
|
|
|
RemotePage({Key? key, required this.id}) : super(key: key);
|
2020-11-17 01:22:14 +08:00
|
|
|
|
|
|
|
|
|
final String id;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
_RemotePageState createState() => _RemotePageState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _RemotePageState extends State<RemotePage> {
|
2022-02-17 15:22:14 +08:00
|
|
|
|
Timer? _interval;
|
|
|
|
|
Timer? _timer;
|
2022-05-23 16:02:37 +08:00
|
|
|
|
bool _showBar = !isWebDesktop;
|
2020-11-20 17:20:42 +08:00
|
|
|
|
double _bottom = 0;
|
2020-11-25 16:28:46 +08:00
|
|
|
|
String _value = '';
|
2020-11-23 23:18:42 +08:00
|
|
|
|
double _scale = 1;
|
2022-05-12 20:05:59 +08:00
|
|
|
|
double _mouseScrollIntegral = 0; // mouse scroll speed controller
|
2022-02-17 18:00:44 +08:00
|
|
|
|
|
2020-12-24 10:44:44 +08:00
|
|
|
|
var _more = true;
|
2020-11-25 16:28:46 +08:00
|
|
|
|
var _fn = false;
|
2022-04-25 18:25:25 +08:00
|
|
|
|
final FocusNode _mobileFocusNode = FocusNode();
|
|
|
|
|
final FocusNode _physicalFocusNode = FocusNode();
|
2022-05-11 17:06:40 +08:00
|
|
|
|
var _showEdit = false; // use soft keyboard
|
|
|
|
|
var _isPhysicalMouse = false;
|
2020-11-17 12:08:31 +08:00
|
|
|
|
|
2020-11-17 11:12:55 +08:00
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
|
|
|
|
FFI.connect(widget.id);
|
2022-02-17 15:22:14 +08:00
|
|
|
|
WidgetsBinding.instance!.addPostFrameCallback((_) {
|
2022-02-24 18:24:52 +08:00
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []);
|
2022-02-28 16:11:21 +08:00
|
|
|
|
showLoading(translate('Connecting...'));
|
2020-11-17 12:08:31 +08:00
|
|
|
|
_interval =
|
|
|
|
|
Timer.periodic(Duration(milliseconds: 30), (timer) => interval());
|
|
|
|
|
});
|
2020-11-23 12:00:56 +08:00
|
|
|
|
Wakelock.enable();
|
2022-04-25 18:25:25 +08:00
|
|
|
|
_physicalFocusNode.requestFocus();
|
2022-05-17 19:59:37 +08:00
|
|
|
|
FFI.ffiModel.updateEventListener(widget.id);
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.listenToMouse(true);
|
2020-11-17 12:08:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
hideMobileActionsOverlay();
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.listenToMouse(false);
|
2022-04-26 21:21:08 +08:00
|
|
|
|
FFI.invokeMethod("enable_soft_keyboard", true);
|
2022-04-25 18:25:25 +08:00
|
|
|
|
_mobileFocusNode.dispose();
|
|
|
|
|
_physicalFocusNode.dispose();
|
2020-11-28 18:06:27 +08:00
|
|
|
|
FFI.close();
|
2022-02-17 15:22:14 +08:00
|
|
|
|
_interval?.cancel();
|
2020-11-27 16:06:35 +08:00
|
|
|
|
_timer?.cancel();
|
2022-04-19 13:07:45 +08:00
|
|
|
|
SmartDialog.dismiss();
|
2022-02-24 18:24:52 +08:00
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
|
|
|
|
|
overlays: SystemUiOverlay.values);
|
2020-11-23 12:00:56 +08:00
|
|
|
|
Wakelock.disable();
|
2021-08-18 02:01:03 +08:00
|
|
|
|
super.dispose();
|
2020-11-17 12:08:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-25 16:28:46 +08:00
|
|
|
|
void resetTool() {
|
|
|
|
|
FFI.resetModifiers();
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-01 01:35:01 +08:00
|
|
|
|
bool isKeyboardShown() {
|
|
|
|
|
return _bottom >= 100;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-24 18:24:52 +08:00
|
|
|
|
// crash on web before widget initiated.
|
2022-01-26 19:00:23 +08:00
|
|
|
|
void intervalUnsafe() {
|
2020-11-20 17:20:42 +08:00
|
|
|
|
var v = MediaQuery.of(context).viewInsets.bottom;
|
|
|
|
|
if (v != _bottom) {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
resetTool();
|
2020-11-20 17:20:42 +08:00
|
|
|
|
setState(() {
|
|
|
|
|
_bottom = v;
|
2020-11-25 16:28:46 +08:00
|
|
|
|
if (v < 100) {
|
2022-02-24 18:24:52 +08:00
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
|
|
|
|
|
overlays: []);
|
2022-05-16 00:01:27 +08:00
|
|
|
|
// [pi.version.isNotEmpty] -> check ready or not,avoid login without soft-keyboard
|
|
|
|
|
if (chatWindowOverlayEntry == null &&
|
|
|
|
|
FFI.ffiModel.pi.version.isNotEmpty) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
FFI.invokeMethod("enable_soft_keyboard", false);
|
|
|
|
|
}
|
2020-11-20 17:20:42 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-11-19 21:59:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-26 19:00:23 +08:00
|
|
|
|
void interval() {
|
|
|
|
|
try {
|
|
|
|
|
intervalUnsafe();
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-25 18:25:25 +08:00
|
|
|
|
// handle mobile virtual keyboard
|
2020-11-28 18:06:27 +08:00
|
|
|
|
void handleInput(String newValue) {
|
2021-08-17 22:57:35 +08:00
|
|
|
|
var oldValue = _value;
|
|
|
|
|
_value = newValue;
|
2022-01-25 18:13:11 +08:00
|
|
|
|
if (isIOS) {
|
2021-08-17 22:57:35 +08:00
|
|
|
|
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) {
|
|
|
|
|
FFI.inputKey('VK_BACK');
|
|
|
|
|
}
|
|
|
|
|
if (newValue.length > common) {
|
|
|
|
|
var s = newValue.substring(common);
|
|
|
|
|
if (s.length > 1) {
|
|
|
|
|
FFI.setByName('input_string', s);
|
|
|
|
|
} else {
|
|
|
|
|
inputChar(s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (oldValue.length > 0 &&
|
|
|
|
|
newValue.length > 0 &&
|
|
|
|
|
oldValue[0] == '\1' &&
|
|
|
|
|
newValue[0] != '\1') {
|
2020-11-28 18:06:27 +08:00
|
|
|
|
// clipboard
|
2021-08-17 22:57:35 +08:00
|
|
|
|
oldValue = '';
|
2020-11-28 18:06:27 +08:00
|
|
|
|
}
|
2021-09-01 01:48:41 +08:00
|
|
|
|
if (newValue.length == oldValue.length) {
|
|
|
|
|
// ?
|
|
|
|
|
} else if (newValue.length < oldValue.length) {
|
2020-11-28 18:06:27 +08:00
|
|
|
|
final char = 'VK_BACK';
|
|
|
|
|
FFI.inputKey(char);
|
|
|
|
|
} else {
|
2021-08-17 22:57:35 +08:00
|
|
|
|
final content = newValue.substring(oldValue.length);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
if (content.length > 1) {
|
2021-08-17 22:57:35 +08:00
|
|
|
|
if (oldValue != '' &&
|
2020-12-22 16:00:10 +08:00
|
|
|
|
content.length == 2 &&
|
|
|
|
|
(content == '""' ||
|
|
|
|
|
content == '()' ||
|
|
|
|
|
content == '[]' ||
|
|
|
|
|
content == '<>' ||
|
|
|
|
|
content == "{}" ||
|
|
|
|
|
content == '”“' ||
|
|
|
|
|
content == '《》' ||
|
|
|
|
|
content == '()' ||
|
|
|
|
|
content == '【】')) {
|
2020-12-22 16:07:48 +08:00
|
|
|
|
// can not only input content[0], because when input ], [ are also auo insert, which cause ] never be input
|
|
|
|
|
FFI.setByName('input_string', content);
|
2020-12-22 16:00:10 +08:00
|
|
|
|
openKeyboard();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-11-28 18:06:27 +08:00
|
|
|
|
FFI.setByName('input_string', content);
|
|
|
|
|
} else {
|
2021-08-17 22:57:35 +08:00
|
|
|
|
inputChar(content);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-17 22:57:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void inputChar(String char) {
|
|
|
|
|
if (char == '\n') {
|
|
|
|
|
char = 'VK_RETURN';
|
|
|
|
|
} else if (char == ' ') {
|
|
|
|
|
char = 'VK_SPACE';
|
|
|
|
|
}
|
|
|
|
|
FFI.inputKey(char);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void openKeyboard() {
|
2022-04-26 21:21:08 +08:00
|
|
|
|
FFI.invokeMethod("enable_soft_keyboard", true);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
// destroy first, so that our _value trick can work
|
2020-12-22 15:26:35 +08:00
|
|
|
|
_value = initText;
|
2021-09-01 01:35:01 +08:00
|
|
|
|
setState(() => _showEdit = false);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
_timer?.cancel();
|
|
|
|
|
_timer = Timer(Duration(milliseconds: 30), () {
|
|
|
|
|
// show now, and sleep a while to requestFocus to
|
|
|
|
|
// make sure edit ready, so that keyboard wont show/hide/show/hide happen
|
2021-09-01 01:35:01 +08:00
|
|
|
|
setState(() => _showEdit = true);
|
2020-11-28 18:06:27 +08:00
|
|
|
|
_timer?.cancel();
|
|
|
|
|
_timer = Timer(Duration(milliseconds: 30), () {
|
2022-02-24 18:24:52 +08:00
|
|
|
|
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual,
|
|
|
|
|
overlays: SystemUiOverlay.values);
|
2022-04-25 18:25:25 +08:00
|
|
|
|
_mobileFocusNode.requestFocus();
|
2020-11-28 18:06:27 +08:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-07 18:04:00 +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-05-07 18:12:14 +08:00
|
|
|
|
FFI.inputKey(label, down: down, press: press ?? false);
|
2022-04-25 18:25:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-17 01:22:14 +08:00
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2020-11-29 14:28:07 +08:00
|
|
|
|
final pi = Provider.of<FfiModel>(context).pi;
|
2021-09-01 01:35:01 +08:00
|
|
|
|
final hideKeyboard = isKeyboardShown() && _showEdit;
|
2021-08-17 15:07:01 +08:00
|
|
|
|
final showActionButton = !_showBar || hideKeyboard;
|
2022-04-26 21:21:08 +08:00
|
|
|
|
final keyboard = FFI.ffiModel.permissions['keyboard'] != false;
|
|
|
|
|
|
2020-11-22 18:29:04 +08:00
|
|
|
|
return WillPopScope(
|
2020-11-29 14:19:01 +08:00
|
|
|
|
onWillPop: () async {
|
2022-03-07 22:54:34 +08:00
|
|
|
|
clientClose();
|
2020-11-29 14:19:01 +08:00
|
|
|
|
return false;
|
|
|
|
|
},
|
2022-04-26 21:21:08 +08:00
|
|
|
|
child: getRawPointerAndKeyBody(
|
|
|
|
|
keyboard,
|
|
|
|
|
Scaffold(
|
|
|
|
|
// resizeToAvoidBottomInset: true,
|
|
|
|
|
floatingActionButton: !showActionButton
|
|
|
|
|
? null
|
|
|
|
|
: FloatingActionButton(
|
|
|
|
|
mini: !hideKeyboard,
|
|
|
|
|
child: Icon(
|
|
|
|
|
hideKeyboard ? Icons.expand_more : Icons.expand_less),
|
|
|
|
|
backgroundColor: MyTheme.accent,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() {
|
|
|
|
|
if (hideKeyboard) {
|
|
|
|
|
_showEdit = false;
|
|
|
|
|
FFI.invokeMethod("enable_soft_keyboard", false);
|
|
|
|
|
_mobileFocusNode.unfocus();
|
|
|
|
|
_physicalFocusNode.requestFocus();
|
|
|
|
|
} else {
|
|
|
|
|
_showBar = !_showBar;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}),
|
2022-04-28 22:44:54 +08:00
|
|
|
|
bottomNavigationBar: _showBar && pi.displays.length > 0
|
|
|
|
|
? getBottomAppBar(keyboard)
|
|
|
|
|
: null,
|
2022-04-26 21:21:08 +08:00
|
|
|
|
body: Overlay(
|
|
|
|
|
initialEntries: [
|
|
|
|
|
OverlayEntry(builder: (context) {
|
|
|
|
|
return Container(
|
|
|
|
|
color: Colors.black,
|
2022-05-23 16:02:37 +08:00
|
|
|
|
child: isWebDesktop
|
2022-04-26 21:21:08 +08:00
|
|
|
|
? getBodyForDesktopWithListener(keyboard)
|
|
|
|
|
: SafeArea(
|
|
|
|
|
child: Container(
|
|
|
|
|
color: MyTheme.canvasColor,
|
2022-05-11 17:06:40 +08:00
|
|
|
|
child: _isPhysicalMouse
|
2022-04-26 21:21:08 +08:00
|
|
|
|
? getBodyForMobile()
|
|
|
|
|
: getBodyForMobileWithGesture())));
|
|
|
|
|
})
|
|
|
|
|
],
|
|
|
|
|
))),
|
2020-11-29 14:19:01 +08:00
|
|
|
|
);
|
2020-11-20 16:37:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-26 21:21:08 +08:00
|
|
|
|
Widget getRawPointerAndKeyBody(bool keyboard, Widget child) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
return Listener(
|
|
|
|
|
onPointerHover: (e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (!_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
setState(() {
|
2022-05-11 17:06:40 +08:00
|
|
|
|
_isPhysicalMouse = true;
|
2022-04-25 18:25:25 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.handleMouse(getEvent(e, 'mousemove'));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPointerDown: (e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) {
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
setState(() {
|
2022-05-11 17:06:40 +08:00
|
|
|
|
_isPhysicalMouse = false;
|
2022-04-25 18:25:25 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.handleMouse(getEvent(e, 'mousedown'));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPointerUp: (e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.handleMouse(getEvent(e, 'mouseup'));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPointerMove: (e) {
|
|
|
|
|
if (e.kind != ui.PointerDeviceKind.mouse) return;
|
2022-05-11 17:06:40 +08:00
|
|
|
|
if (_isPhysicalMouse) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.handleMouse(getEvent(e, 'mousemove'));
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onPointerSignal: (e) {
|
|
|
|
|
if (e is PointerScrollEvent) {
|
|
|
|
|
var dx = e.scrollDelta.dx;
|
|
|
|
|
var dy = e.scrollDelta.dy;
|
|
|
|
|
if (dx > 0)
|
|
|
|
|
dx = -1;
|
|
|
|
|
else if (dx < 0) dx = 1;
|
|
|
|
|
if (dy > 0)
|
|
|
|
|
dy = -1;
|
|
|
|
|
else if (dy < 0) dy = 1;
|
|
|
|
|
FFI.setByName(
|
|
|
|
|
'send_mouse', '{"type": "wheel", "x": "$dx", "y": "$dy"}');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
child: MouseRegion(
|
|
|
|
|
cursor: keyboard ? SystemMouseCursors.none : MouseCursor.defer,
|
|
|
|
|
child: FocusScope(
|
|
|
|
|
autofocus: true,
|
|
|
|
|
child: Focus(
|
|
|
|
|
autofocus: true,
|
|
|
|
|
canRequestFocus: true,
|
|
|
|
|
focusNode: _physicalFocusNode,
|
|
|
|
|
onKey: (data, e) {
|
|
|
|
|
final key = e.logicalKey;
|
|
|
|
|
if (e is RawKeyDownEvent) {
|
2022-05-07 18:04:00 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
sendRawKey(e, down: true);
|
2022-04-25 18:25:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-11 17:06:40 +08:00
|
|
|
|
// [!_showEdit] workaround for soft-keyboard's control_key like Backspace / Enter
|
|
|
|
|
if (!_showEdit && e is RawKeyUpEvent) {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
if (key == LogicalKeyboardKey.altLeft ||
|
|
|
|
|
key == LogicalKeyboardKey.altRight) {
|
|
|
|
|
FFI.alt = false;
|
2022-05-07 18:04:00 +08:00
|
|
|
|
} else if (key == LogicalKeyboardKey.controlLeft ||
|
2022-04-25 18:25:25 +08:00
|
|
|
|
key == LogicalKeyboardKey.controlRight) {
|
|
|
|
|
FFI.ctrl = false;
|
2022-05-07 18:04:00 +08:00
|
|
|
|
} else if (key == LogicalKeyboardKey.shiftRight ||
|
2022-04-25 18:25:25 +08:00
|
|
|
|
key == LogicalKeyboardKey.shiftLeft) {
|
|
|
|
|
FFI.shift = false;
|
2022-05-07 18:04:00 +08:00
|
|
|
|
} else if (key == LogicalKeyboardKey.metaLeft ||
|
2022-04-25 18:25:25 +08:00
|
|
|
|
key == LogicalKeyboardKey.metaRight) {
|
|
|
|
|
FFI.command = false;
|
|
|
|
|
}
|
|
|
|
|
sendRawKey(e);
|
|
|
|
|
}
|
|
|
|
|
return KeyEventResult.handled;
|
|
|
|
|
},
|
2022-04-26 21:21:08 +08:00
|
|
|
|
child: child))));
|
2022-04-25 18:25:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-28 22:44:54 +08:00
|
|
|
|
Widget getBottomAppBar(bool keyboard) {
|
2022-02-02 01:20:14 +08:00
|
|
|
|
return BottomAppBar(
|
|
|
|
|
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: () {
|
2022-03-07 22:54:34 +08:00
|
|
|
|
clientClose();
|
2022-02-02 01:20:14 +08:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
] +
|
|
|
|
|
<Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.tv),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() => _showEdit = false);
|
2022-03-13 00:32:44 +08:00
|
|
|
|
showOptions();
|
2022-02-02 01:20:14 +08:00
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
] +
|
2022-05-23 16:02:37 +08:00
|
|
|
|
(isWebDesktop
|
2022-02-02 01:20:14 +08:00
|
|
|
|
? []
|
2022-05-16 00:01:27 +08:00
|
|
|
|
: FFI.ffiModel.isPeerAndroid
|
|
|
|
|
? [
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.build),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (mobileActionsOverlayEntry == null) {
|
|
|
|
|
showMobileActionsOverlay();
|
|
|
|
|
} else {
|
|
|
|
|
hideMobileActionsOverlay();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
: [
|
|
|
|
|
IconButton(
|
2022-04-28 22:44:54 +08:00
|
|
|
|
color: Colors.white,
|
2022-05-16 00:01:27 +08:00
|
|
|
|
icon: Icon(Icons.keyboard),
|
|
|
|
|
onPressed: openKeyboard),
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(FFI.ffiModel.touchMode
|
|
|
|
|
? Icons.touch_app
|
|
|
|
|
: Icons.mouse),
|
|
|
|
|
onPressed: changeTouchMode,
|
|
|
|
|
),
|
|
|
|
|
]) +
|
2022-03-28 00:36:53 +08:00
|
|
|
|
(isWeb
|
|
|
|
|
? []
|
|
|
|
|
: <Widget>[
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.message),
|
2022-04-12 22:38:39 +08:00
|
|
|
|
onPressed: () {
|
|
|
|
|
FFI.chatModel
|
|
|
|
|
.changeCurrentID(ChatModel.clientModeID);
|
|
|
|
|
toggleChatOverlay();
|
|
|
|
|
},
|
2022-03-28 00:36:53 +08:00
|
|
|
|
)
|
|
|
|
|
]) +
|
|
|
|
|
[
|
2022-02-02 01:20:14 +08:00
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.more_vert),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() => _showEdit = false);
|
2022-03-13 00:32:44 +08:00
|
|
|
|
showActions();
|
2022-02-02 01:20:14 +08:00
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
IconButton(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
icon: Icon(Icons.expand_more),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
setState(() => _showBar = !_showBar);
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-17 18:00:44 +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-02-16 23:08:23 +08:00
|
|
|
|
Widget getBodyForMobileWithGesture() {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
final touchMode = FFI.ffiModel.touchMode;
|
2022-02-16 23:08:23 +08:00
|
|
|
|
return getMixinGestureDetector(
|
|
|
|
|
child: getBodyForMobile(),
|
|
|
|
|
onTapUp: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.cursorModel.touch(
|
|
|
|
|
d.localPosition.dx, d.localPosition.dy, MouseButtons.left);
|
2022-02-16 23:08:23 +08:00
|
|
|
|
} else {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.tap(MouseButtons.left);
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-02-23 21:32:33 +08:00
|
|
|
|
onDoubleTapDown: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.cursorModel.move(d.localPosition.dx, d.localPosition.dy);
|
2022-02-16 23:08:23 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onDoubleTap: () {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.tap(MouseButtons.left);
|
|
|
|
|
FFI.tap(MouseButtons.left);
|
|
|
|
|
},
|
2022-02-23 21:32:33 +08:00
|
|
|
|
onLongPressDown: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.cursorModel.move(d.localPosition.dx, d.localPosition.dy);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLongPress: () {
|
2022-04-25 18:25:25 +08:00
|
|
|
|
FFI.tap(MouseButtons.right);
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
|
|
|
|
onDoubleFinerTap: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (!touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.tap(MouseButtons.right);
|
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
|
|
|
|
onHoldDragStart: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (!touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.sendMouse('down', MouseButtons.left);
|
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
|
|
|
|
onHoldDragUpdate: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (!touchMode) {
|
|
|
|
|
FFI.cursorModel.updatePan(d.delta.dx, d.delta.dy, touchMode);
|
2022-02-17 18:00:44 +08:00
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
2022-04-26 21:21:08 +08:00
|
|
|
|
onHoldDragEnd: (_) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (!touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.sendMouse('up', MouseButtons.left);
|
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
|
|
|
|
onOneFingerPanStart: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.cursorModel.move(d.localPosition.dx, d.localPosition.dy);
|
|
|
|
|
FFI.sendMouse('down', MouseButtons.left);
|
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
|
|
|
|
onOneFingerPanUpdate: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
FFI.cursorModel.updatePan(d.delta.dx, d.delta.dy, touchMode);
|
2022-02-17 18:00:44 +08:00
|
|
|
|
},
|
|
|
|
|
onOneFingerPanEnd: (d) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
if (touchMode) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.sendMouse('up', MouseButtons.left);
|
|
|
|
|
}
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
2022-05-10 11:27:16 +08:00
|
|
|
|
// scale + pan event
|
2022-02-16 23:08:23 +08:00
|
|
|
|
onTwoFingerScaleUpdate: (d) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.canvasModel.updateScale(d.scale / _scale);
|
2022-02-17 15:22:14 +08:00
|
|
|
|
_scale = d.scale;
|
2022-02-17 18:00:44 +08:00
|
|
|
|
FFI.canvasModel.panX(d.focalPointDelta.dx);
|
|
|
|
|
FFI.canvasModel.panY(d.focalPointDelta.dy);
|
2022-02-16 23:08:23 +08:00
|
|
|
|
},
|
2022-05-10 14:44:47 +08:00
|
|
|
|
onTwoFingerScaleEnd: (d) {
|
|
|
|
|
_scale = 1;
|
|
|
|
|
FFI.setByName('peer_option', '{"name": "view-style", "value": ""}');
|
|
|
|
|
},
|
2022-05-12 17:30:39 +08:00
|
|
|
|
onThreeFingerVerticalDragUpdate: FFI.ffiModel.isPeerAndroid
|
2022-05-10 14:44:47 +08:00
|
|
|
|
? null
|
|
|
|
|
: (d) {
|
2022-05-12 20:05:59 +08:00
|
|
|
|
_mouseScrollIntegral += d.delta.dy / 4;
|
|
|
|
|
if (_mouseScrollIntegral > 1) {
|
|
|
|
|
FFI.scroll(1);
|
|
|
|
|
_mouseScrollIntegral = 0;
|
|
|
|
|
} else if (_mouseScrollIntegral < -1) {
|
|
|
|
|
FFI.scroll(-1);
|
|
|
|
|
_mouseScrollIntegral = 0;
|
|
|
|
|
}
|
2022-05-10 14:44:47 +08:00
|
|
|
|
});
|
2022-02-02 01:20:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-03 00:53:59 +08:00
|
|
|
|
Widget getBodyForMobile() {
|
|
|
|
|
return Container(
|
|
|
|
|
color: MyTheme.canvasColor,
|
|
|
|
|
child: Stack(children: [
|
|
|
|
|
ImagePaint(),
|
|
|
|
|
CursorPaint(),
|
|
|
|
|
getHelpTools(),
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 0,
|
|
|
|
|
height: 0,
|
|
|
|
|
child: !_showEdit
|
|
|
|
|
? Container()
|
|
|
|
|
: TextFormField(
|
|
|
|
|
textInputAction: TextInputAction.newline,
|
|
|
|
|
autocorrect: false,
|
|
|
|
|
enableSuggestions: false,
|
2022-04-26 21:21:08 +08:00
|
|
|
|
autofocus: true,
|
2022-04-25 18:25:25 +08:00
|
|
|
|
focusNode: _mobileFocusNode,
|
2022-02-03 00:53:59 +08:00
|
|
|
|
maxLines: null,
|
2022-02-16 23:08:23 +08:00
|
|
|
|
initialValue: _value,
|
|
|
|
|
// trick way to make backspace work always
|
2022-02-03 00:53:59 +08:00
|
|
|
|
keyboardType: TextInputType.multiline,
|
|
|
|
|
onChanged: handleInput,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]));
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-25 18:25:25 +08:00
|
|
|
|
Widget getBodyForDesktopWithListener(bool keyboard) {
|
2022-02-06 16:29:56 +08:00
|
|
|
|
var paints = <Widget>[ImagePaint()];
|
|
|
|
|
if (keyboard ||
|
2022-03-22 16:40:23 +08:00
|
|
|
|
FFI.getByName('toggle_option', 'show-remote-cursor') == 'true') {
|
2022-02-06 16:29:56 +08:00
|
|
|
|
paints.add(CursorPaint());
|
|
|
|
|
}
|
2022-04-25 18:25:25 +08:00
|
|
|
|
return Container(
|
|
|
|
|
color: MyTheme.canvasColor, child: Stack(children: paints));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
if (FFI.alt) out['alt'] = 'true';
|
|
|
|
|
if (FFI.shift) out['shift'] = 'true';
|
|
|
|
|
if (FFI.ctrl) out['ctrl'] = 'true';
|
|
|
|
|
if (FFI.command) out['command'] = 'true';
|
|
|
|
|
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-02-02 01:20:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-13 00:32:44 +08:00
|
|
|
|
void showActions() {
|
2021-08-21 17:18:14 +08:00
|
|
|
|
final size = MediaQuery.of(context).size;
|
|
|
|
|
final x = 120.0;
|
|
|
|
|
final y = size.height;
|
|
|
|
|
final more = <PopupMenuItem<String>>[];
|
2022-02-02 00:46:21 +08:00
|
|
|
|
final pi = FFI.ffiModel.pi;
|
|
|
|
|
final perms = FFI.ffiModel.permissions;
|
|
|
|
|
if (pi.version.isNotEmpty) {
|
2021-08-21 17:18:14 +08:00
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate('Refresh')), value: 'refresh'));
|
|
|
|
|
}
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Row(
|
|
|
|
|
children: ([
|
|
|
|
|
Container(width: 100.0, child: Text(translate('OS Password'))),
|
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.pop(context);
|
2022-03-13 00:32:44 +08:00
|
|
|
|
showSetOSPassword(false);
|
2021-08-21 17:18:14 +08:00
|
|
|
|
},
|
|
|
|
|
child: Icon(Icons.edit, color: MyTheme.accent),
|
|
|
|
|
)
|
|
|
|
|
])),
|
|
|
|
|
value: 'enter_os_password'));
|
2022-05-23 16:02:37 +08:00
|
|
|
|
if (!isWebDesktop) {
|
2022-02-02 00:46:21 +08:00
|
|
|
|
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' &&
|
|
|
|
|
FFI.getByName('toggle_option', 'privacy-mode') != 'true') {
|
|
|
|
|
more.add(PopupMenuItem<String>(
|
|
|
|
|
child: Text(translate(
|
|
|
|
|
(FFI.ffiModel.inputBlocked ? 'Unb' : 'B') + 'lock user input')),
|
|
|
|
|
value: 'block-input'));
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-21 17:18:14 +08:00
|
|
|
|
() async {
|
|
|
|
|
var value = await showMenu(
|
|
|
|
|
context: context,
|
|
|
|
|
position: RelativeRect.fromLTRB(x, y, x, y),
|
2022-02-02 00:46:21 +08:00
|
|
|
|
items: more,
|
2021-08-21 17:18:14 +08:00
|
|
|
|
elevation: 8,
|
|
|
|
|
);
|
|
|
|
|
if (value == 'cad') {
|
|
|
|
|
FFI.setByName('ctrl_alt_del');
|
|
|
|
|
} else if (value == 'lock') {
|
|
|
|
|
FFI.setByName('lock_screen');
|
2022-02-02 00:46:21 +08:00
|
|
|
|
} else if (value == 'block-input') {
|
|
|
|
|
FFI.setByName('toggle_option',
|
2022-02-28 16:11:21 +08:00
|
|
|
|
(FFI.ffiModel.inputBlocked ? 'un' : '') + 'block-input');
|
2022-02-02 00:46:21 +08:00
|
|
|
|
FFI.ffiModel.inputBlocked = !FFI.ffiModel.inputBlocked;
|
2021-08-21 17:18:14 +08:00
|
|
|
|
} else if (value == 'refresh') {
|
|
|
|
|
FFI.setByName('refresh');
|
|
|
|
|
} else if (value == 'paste') {
|
|
|
|
|
() async {
|
2022-02-17 15:22:14 +08:00
|
|
|
|
ClipboardData? data = await Clipboard.getData(Clipboard.kTextPlain);
|
|
|
|
|
if (data != null && data.text != null) {
|
2021-08-21 17:18:14 +08:00
|
|
|
|
FFI.setByName('input_string', '${data.text}');
|
|
|
|
|
}
|
|
|
|
|
}();
|
|
|
|
|
} else if (value == 'enter_os_password') {
|
|
|
|
|
var password = FFI.getByName('peer_option', "os-password");
|
|
|
|
|
if (password != "") {
|
|
|
|
|
FFI.setByName('input_os_password', password);
|
|
|
|
|
} else {
|
2022-03-13 00:32:44 +08:00
|
|
|
|
showSetOSPassword(true);
|
2021-08-21 17:18:14 +08:00
|
|
|
|
}
|
|
|
|
|
} else if (value == 'reset_canvas') {
|
|
|
|
|
FFI.cursorModel.reset();
|
|
|
|
|
}
|
|
|
|
|
}();
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-24 15:59:03 +08:00
|
|
|
|
void changeTouchMode() {
|
|
|
|
|
setState(() => _showEdit = false);
|
|
|
|
|
showModalBottomSheet(
|
|
|
|
|
backgroundColor: MyTheme.grayBg,
|
|
|
|
|
isScrollControlled: true,
|
|
|
|
|
context: context,
|
|
|
|
|
shape: const RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.vertical(top: Radius.circular(5))),
|
|
|
|
|
builder: (context) => DraggableScrollableSheet(
|
|
|
|
|
expand: false,
|
|
|
|
|
builder: (context, scrollController) {
|
|
|
|
|
return SingleChildScrollView(
|
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 10),
|
|
|
|
|
child: GestureHelp(
|
2022-04-28 22:44:54 +08:00
|
|
|
|
touchMode: FFI.ffiModel.touchMode,
|
2022-02-24 15:59:03 +08:00
|
|
|
|
onTouchModeChange: (t) {
|
2022-04-28 22:44:54 +08:00
|
|
|
|
FFI.ffiModel.toggleTouchMode();
|
|
|
|
|
final v = FFI.ffiModel.touchMode ? 'Y' : '';
|
2022-02-24 15:59:03 +08:00
|
|
|
|
FFI.setByName('peer_option',
|
|
|
|
|
'{"name": "touch-mode", "value": "$v"}');
|
|
|
|
|
}));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-25 13:03:48 +08:00
|
|
|
|
Widget getHelpTools() {
|
2021-09-01 01:35:01 +08:00
|
|
|
|
final keyboard = isKeyboardShown();
|
2022-02-24 15:59:03 +08:00
|
|
|
|
if (!keyboard) {
|
2020-11-25 13:03:48 +08:00
|
|
|
|
return SizedBox();
|
|
|
|
|
}
|
2021-08-17 15:07:01 +08:00
|
|
|
|
final size = MediaQuery.of(context).size;
|
2022-02-17 15:22:14 +08:00
|
|
|
|
var wrap = (String text, void Function() onPressed,
|
|
|
|
|
[bool? active, IconData? icon]) {
|
2021-08-02 22:21:23 +08:00
|
|
|
|
return TextButton(
|
|
|
|
|
style: TextButton.styleFrom(
|
|
|
|
|
minimumSize: Size(0, 0),
|
2022-02-16 23:08:23 +08:00
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 9.75),
|
|
|
|
|
//adds padding inside the button
|
|
|
|
|
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
|
|
|
//limits the touch area to the button area
|
2021-08-02 22:21:23 +08:00
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(5.0),
|
|
|
|
|
),
|
|
|
|
|
backgroundColor: active == true ? MyTheme.accent80 : null,
|
|
|
|
|
),
|
|
|
|
|
child: icon != null
|
|
|
|
|
? Icon(icon, size: 17, color: Colors.white)
|
|
|
|
|
: Text(translate(text),
|
|
|
|
|
style: TextStyle(color: Colors.white, fontSize: 11)),
|
|
|
|
|
onPressed: onPressed);
|
2020-11-25 13:03:48 +08:00
|
|
|
|
};
|
2021-08-11 00:22:47 +08:00
|
|
|
|
final pi = FFI.ffiModel.pi;
|
|
|
|
|
final isMac = pi.platform == "Mac OS";
|
2020-11-25 16:28:46 +08:00
|
|
|
|
final modifiers = <Widget>[
|
2021-08-17 15:07:01 +08:00
|
|
|
|
wrap('Ctrl ', () {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
setState(() => FFI.ctrl = !FFI.ctrl);
|
|
|
|
|
}, FFI.ctrl),
|
2021-08-17 15:07:01 +08:00
|
|
|
|
wrap(' Alt ', () {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
setState(() => FFI.alt = !FFI.alt);
|
|
|
|
|
}, FFI.alt),
|
|
|
|
|
wrap('Shift', () {
|
|
|
|
|
setState(() => FFI.shift = !FFI.shift);
|
|
|
|
|
}, FFI.shift),
|
2021-08-17 15:07:01 +08:00
|
|
|
|
wrap(isMac ? ' Cmd ' : ' Win ', () {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
setState(() => FFI.command = !FFI.command);
|
|
|
|
|
}, FFI.command),
|
|
|
|
|
];
|
|
|
|
|
final keys = <Widget>[
|
|
|
|
|
wrap(
|
2021-08-17 15:07:01 +08:00
|
|
|
|
' Fn ',
|
2020-11-25 16:28:46 +08:00
|
|
|
|
() => setState(
|
|
|
|
|
() {
|
|
|
|
|
_fn = !_fn;
|
|
|
|
|
if (_fn) {
|
|
|
|
|
_more = false;
|
2020-11-25 13:03:48 +08:00
|
|
|
|
}
|
2020-11-25 16:28:46 +08:00
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
_fn),
|
|
|
|
|
wrap(
|
2021-08-17 15:07:01 +08:00
|
|
|
|
' ... ',
|
2020-11-25 16:28:46 +08:00
|
|
|
|
() => setState(
|
|
|
|
|
() {
|
|
|
|
|
_more = !_more;
|
|
|
|
|
if (_more) {
|
|
|
|
|
_fn = false;
|
2020-11-25 13:03:48 +08:00
|
|
|
|
}
|
2020-11-25 16:28:46 +08:00
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
_more),
|
|
|
|
|
];
|
|
|
|
|
final fn = <Widget>[
|
|
|
|
|
SizedBox(width: 9999),
|
|
|
|
|
];
|
|
|
|
|
for (var i = 1; i <= 12; ++i) {
|
|
|
|
|
final name = 'F' + i.toString();
|
|
|
|
|
fn.add(wrap(name, () {
|
|
|
|
|
FFI.inputKey('VK_' + name);
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
final more = <Widget>[
|
|
|
|
|
SizedBox(width: 9999),
|
|
|
|
|
wrap('Esc', () {
|
|
|
|
|
FFI.inputKey('VK_ESCAPE');
|
|
|
|
|
}),
|
|
|
|
|
wrap('Tab', () {
|
|
|
|
|
FFI.inputKey('VK_TAB');
|
|
|
|
|
}),
|
|
|
|
|
wrap('Home', () {
|
|
|
|
|
FFI.inputKey('VK_HOME');
|
|
|
|
|
}),
|
|
|
|
|
wrap('End', () {
|
|
|
|
|
FFI.inputKey('VK_END');
|
|
|
|
|
}),
|
|
|
|
|
wrap('Del', () {
|
|
|
|
|
FFI.inputKey('VK_DELETE');
|
|
|
|
|
}),
|
2020-11-27 02:14:27 +08:00
|
|
|
|
wrap('PgUp', () {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
FFI.inputKey('VK_PRIOR');
|
|
|
|
|
}),
|
2021-08-17 15:07:01 +08:00
|
|
|
|
wrap('PgDn', () {
|
2020-11-25 16:28:46 +08:00
|
|
|
|
FFI.inputKey('VK_NEXT');
|
|
|
|
|
}),
|
2020-12-24 10:44:44 +08:00
|
|
|
|
SizedBox(width: 9999),
|
|
|
|
|
wrap('', () {
|
|
|
|
|
FFI.inputKey('VK_LEFT');
|
|
|
|
|
}, false, Icons.keyboard_arrow_left),
|
|
|
|
|
wrap('', () {
|
|
|
|
|
FFI.inputKey('VK_UP');
|
|
|
|
|
}, false, Icons.keyboard_arrow_up),
|
|
|
|
|
wrap('', () {
|
|
|
|
|
FFI.inputKey('VK_DOWN');
|
|
|
|
|
}, false, Icons.keyboard_arrow_down),
|
|
|
|
|
wrap('', () {
|
|
|
|
|
FFI.inputKey('VK_RIGHT');
|
|
|
|
|
}, false, Icons.keyboard_arrow_right),
|
2021-08-11 00:22:47 +08:00
|
|
|
|
wrap(isMac ? 'Cmd+C' : 'Ctrl+C', () {
|
|
|
|
|
sendPrompt(isMac, 'VK_C');
|
2020-12-24 10:44:44 +08:00
|
|
|
|
}),
|
2021-08-11 00:22:47 +08:00
|
|
|
|
wrap(isMac ? 'Cmd+V' : 'Ctrl+V', () {
|
|
|
|
|
sendPrompt(isMac, 'VK_V');
|
2021-08-06 22:45:45 +08:00
|
|
|
|
}),
|
2021-08-11 00:22:47 +08:00
|
|
|
|
wrap(isMac ? 'Cmd+S' : 'Ctrl+S', () {
|
|
|
|
|
sendPrompt(isMac, 'VK_S');
|
2020-12-24 10:44:44 +08:00
|
|
|
|
}),
|
2020-11-25 16:28:46 +08:00
|
|
|
|
];
|
2021-08-17 15:07:01 +08:00
|
|
|
|
final space = size.width > 320 ? 4.0 : 2.0;
|
2020-11-25 16:28:46 +08:00
|
|
|
|
return Container(
|
2020-11-27 02:14:27 +08:00
|
|
|
|
color: Color(0xAA000000),
|
2020-11-25 16:28:46 +08:00
|
|
|
|
padding: EdgeInsets.only(
|
2021-08-17 15:07:01 +08:00
|
|
|
|
top: keyboard ? 24 : 4, left: 0, right: 0, bottom: 8),
|
2020-11-25 16:28:46 +08:00
|
|
|
|
child: Wrap(
|
2021-08-17 15:07:01 +08:00
|
|
|
|
spacing: space,
|
|
|
|
|
runSpacing: space,
|
2020-11-25 16:28:46 +08:00
|
|
|
|
children: <Widget>[SizedBox(width: 9999)] +
|
|
|
|
|
(keyboard
|
2020-12-24 10:44:44 +08:00
|
|
|
|
? modifiers + keys + (_fn ? fn : []) + (_more ? more : [])
|
2022-02-17 18:00:44 +08:00
|
|
|
|
: modifiers),
|
2020-11-25 16:28:46 +08:00
|
|
|
|
));
|
2020-11-25 13:03:48 +08:00
|
|
|
|
}
|
2020-11-17 11:12:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-18 23:15:59 +08:00
|
|
|
|
class ImagePaint extends StatelessWidget {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
final m = Provider.of<ImageModel>(context);
|
2020-11-23 23:18:42 +08:00
|
|
|
|
final c = Provider.of<CanvasModel>(context);
|
2020-11-25 11:20:40 +08:00
|
|
|
|
final adjust = FFI.cursorModel.adjustForKeyboard();
|
2020-11-23 23:18:42 +08:00
|
|
|
|
var s = c.scale;
|
2020-11-18 23:15:59 +08:00
|
|
|
|
return CustomPaint(
|
2020-11-25 11:20:40 +08:00
|
|
|
|
painter: new ImagePainter(
|
|
|
|
|
image: m.image, x: c.x / s, y: (c.y - adjust) / s, scale: s),
|
2020-11-19 18:22:06 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class CursorPaint extends StatelessWidget {
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
final m = Provider.of<CursorModel>(context);
|
2020-11-23 23:18:42 +08:00
|
|
|
|
final c = Provider.of<CanvasModel>(context);
|
2020-11-25 11:20:40 +08:00
|
|
|
|
final adjust = FFI.cursorModel.adjustForKeyboard();
|
2020-11-23 23:18:42 +08:00
|
|
|
|
var s = c.scale;
|
2020-11-19 18:22:06 +08:00
|
|
|
|
return CustomPaint(
|
2020-11-23 23:18:42 +08:00
|
|
|
|
painter: new ImagePainter(
|
|
|
|
|
image: m.image,
|
|
|
|
|
x: m.x * s - m.hotx + c.x,
|
2020-11-25 11:20:40 +08:00
|
|
|
|
y: m.y * s - m.hoty + c.y - adjust,
|
2020-11-23 23:18:42 +08:00
|
|
|
|
scale: 1),
|
2020-11-18 23:15:59 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ImagePainter extends CustomPainter {
|
|
|
|
|
ImagePainter({
|
2022-02-17 15:22:14 +08:00
|
|
|
|
required this.image,
|
|
|
|
|
required this.x,
|
|
|
|
|
required this.y,
|
|
|
|
|
required this.scale,
|
2020-11-17 11:12:55 +08:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-17 15:22:14 +08:00
|
|
|
|
ui.Image? image;
|
2020-11-19 18:22:06 +08:00
|
|
|
|
double x;
|
|
|
|
|
double y;
|
2020-11-23 23:18:42 +08:00
|
|
|
|
double scale;
|
2020-11-17 11:12:55 +08:00
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void paint(Canvas canvas, Size size) {
|
2020-11-17 12:08:31 +08:00
|
|
|
|
if (image == null) return;
|
2020-11-23 23:18:42 +08:00
|
|
|
|
canvas.scale(scale, scale);
|
2022-02-17 15:22:14 +08:00
|
|
|
|
canvas.drawImage(image!, new Offset(x, y), new Paint());
|
2020-11-17 11:12:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
bool shouldRepaint(CustomPainter oldDelegate) {
|
2020-11-17 12:08:31 +08:00
|
|
|
|
return oldDelegate != this;
|
2020-11-17 01:22:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-19 21:59:49 +08:00
|
|
|
|
|
2022-02-02 00:46:21 +08:00
|
|
|
|
CheckboxListTile getToggle(
|
|
|
|
|
void Function(void Function()) setState, option, name) {
|
|
|
|
|
return CheckboxListTile(
|
|
|
|
|
value: FFI.getByName('toggle_option', option) == 'true',
|
|
|
|
|
onChanged: (v) {
|
|
|
|
|
setState(() {
|
|
|
|
|
FFI.setByName('toggle_option', option);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
dense: true,
|
|
|
|
|
title: Text(translate(name)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RadioListTile<String> getRadio(String name, String toValue, String curValue,
|
2022-02-17 15:22:14 +08:00
|
|
|
|
void Function(String?) onChange) {
|
2022-02-02 00:46:21 +08:00
|
|
|
|
return RadioListTile<String>(
|
|
|
|
|
controlAffinity: ListTileControlAffinity.trailing,
|
|
|
|
|
title: Text(translate(name)),
|
|
|
|
|
value: toValue,
|
|
|
|
|
groupValue: curValue,
|
|
|
|
|
onChanged: onChange,
|
|
|
|
|
dense: true,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-13 00:32:44 +08:00
|
|
|
|
void showOptions() {
|
2020-11-20 13:06:52 +08:00
|
|
|
|
String quality = FFI.getByName('image_quality');
|
|
|
|
|
if (quality == '') quality = 'balanced';
|
2022-02-02 00:46:21 +08:00
|
|
|
|
String viewStyle = FFI.getByName('peer_option', 'view-style');
|
2020-11-25 23:52:58 +08:00
|
|
|
|
var displays = <Widget>[];
|
|
|
|
|
final pi = FFI.ffiModel.pi;
|
2020-11-29 00:13:55 +08:00
|
|
|
|
final image = FFI.ffiModel.getConnectionImage();
|
|
|
|
|
if (image != null)
|
|
|
|
|
displays.add(Padding(padding: const EdgeInsets.only(top: 8), child: image));
|
2020-11-25 23:52:58 +08:00
|
|
|
|
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;
|
|
|
|
|
FFI.setByName('switch_display', i.toString());
|
2022-04-19 13:07:45 +08:00
|
|
|
|
SmartDialog.dismiss();
|
2020-11-25 23:52:58 +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,
|
|
|
|
|
)));
|
2020-11-29 00:13:55 +08:00
|
|
|
|
}
|
|
|
|
|
if (displays.isNotEmpty) {
|
2020-11-25 23:52:58 +08:00
|
|
|
|
displays.add(Divider(color: MyTheme.border));
|
|
|
|
|
}
|
2022-02-02 00:46:21 +08:00
|
|
|
|
final perms = FFI.ffiModel.permissions;
|
2022-03-13 00:32:44 +08:00
|
|
|
|
|
2022-03-13 23:07:52 +08:00
|
|
|
|
DialogManager.show((setState, close) {
|
2020-11-28 15:24:44 +08:00
|
|
|
|
final more = <Widget>[];
|
2022-02-02 00:46:21 +08:00
|
|
|
|
if (perms['audio'] != false) {
|
|
|
|
|
more.add(getToggle(setState, 'disable-audio', 'Mute'));
|
2020-11-28 13:34:59 +08:00
|
|
|
|
}
|
2022-02-02 00:46:21 +08:00
|
|
|
|
if (perms['keyboard'] != false) {
|
|
|
|
|
if (perms['clipboard'] != false)
|
|
|
|
|
more.add(getToggle(setState, 'disable-clipboard', 'Disable clipboard'));
|
|
|
|
|
more.add(getToggle(
|
|
|
|
|
setState, 'lock-after-session-end', 'Lock after session end'));
|
|
|
|
|
if (pi.platform == 'Windows') {
|
|
|
|
|
more.add(getToggle(setState, 'privacy-mode', 'Privacy mode'));
|
|
|
|
|
}
|
2020-11-30 16:05:23 +08:00
|
|
|
|
}
|
2022-02-17 15:22:14 +08:00
|
|
|
|
var setQuality = (String? value) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
if (value == null) return;
|
2022-02-02 00:46:21 +08:00
|
|
|
|
setState(() {
|
|
|
|
|
quality = value;
|
|
|
|
|
FFI.setByName('image_quality', value);
|
|
|
|
|
});
|
|
|
|
|
};
|
2022-02-17 15:22:14 +08:00
|
|
|
|
var setViewStyle = (String? value) {
|
2022-02-17 18:00:44 +08:00
|
|
|
|
if (value == null) return;
|
2022-02-02 00:46:21 +08:00
|
|
|
|
setState(() {
|
|
|
|
|
viewStyle = value;
|
|
|
|
|
FFI.setByName(
|
|
|
|
|
'peer_option', '{"name": "view-style", "value": "$value"}');
|
2022-02-03 00:53:59 +08:00
|
|
|
|
FFI.canvasModel.updateViewStyle();
|
2022-02-02 00:46:21 +08:00
|
|
|
|
});
|
|
|
|
|
};
|
2022-03-13 00:32:44 +08:00
|
|
|
|
return CustomAlertDialog(
|
2022-03-13 23:07:52 +08:00
|
|
|
|
title: SizedBox.shrink(),
|
|
|
|
|
content: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: displays +
|
|
|
|
|
<Widget>[
|
2022-04-25 18:25:25 +08:00
|
|
|
|
getRadio('Original', 'original', viewStyle, setViewStyle),
|
|
|
|
|
getRadio('Shrink', 'shrink', viewStyle, setViewStyle),
|
|
|
|
|
getRadio('Stretch', 'stretch', viewStyle, setViewStyle),
|
|
|
|
|
Divider(color: MyTheme.border),
|
2022-03-13 23:07:52 +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),
|
|
|
|
|
getToggle(setState, 'show-remote-cursor', 'Show remote cursor'),
|
|
|
|
|
] +
|
|
|
|
|
more),
|
|
|
|
|
actions: [],
|
|
|
|
|
contentPadding: 0,
|
2022-03-13 00:32:44 +08:00
|
|
|
|
);
|
2022-04-21 10:02:47 +08:00
|
|
|
|
}, clickMaskDismiss: true, backDismiss: true);
|
2020-11-20 16:37:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-13 00:32:44 +08:00
|
|
|
|
void showSetOSPassword(bool login) {
|
2020-12-21 19:05:31 +08:00
|
|
|
|
final controller = TextEditingController();
|
2021-08-06 22:29:11 +08:00
|
|
|
|
var password = FFI.getByName('peer_option', "os-password");
|
|
|
|
|
var autoLogin = FFI.getByName('peer_option', "auto-login") != "";
|
2020-12-21 19:05:31 +08:00
|
|
|
|
controller.text = password;
|
2022-03-13 23:07:52 +08:00
|
|
|
|
DialogManager.show((setState, close) {
|
2022-03-13 00:32:44 +08:00
|
|
|
|
return CustomAlertDialog(
|
|
|
|
|
title: Text(translate('OS Password')),
|
|
|
|
|
content: Column(mainAxisSize: MainAxisSize.min, children: [
|
2022-02-28 16:11:21 +08:00
|
|
|
|
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);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
]),
|
2022-03-13 00:32:44 +08:00
|
|
|
|
actions: [
|
2022-02-28 16:11:21 +08:00
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
2022-03-13 23:07:52 +08:00
|
|
|
|
close();
|
2022-02-28 16:11:21 +08:00
|
|
|
|
},
|
|
|
|
|
child: Text(translate('Cancel')),
|
|
|
|
|
),
|
|
|
|
|
TextButton(
|
|
|
|
|
style: flatButtonStyle,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
var text = controller.text.trim();
|
|
|
|
|
FFI.setByName(
|
|
|
|
|
'peer_option', '{"name": "os-password", "value": "$text"}');
|
|
|
|
|
FFI.setByName('peer_option',
|
|
|
|
|
'{"name": "auto-login", "value": "${autoLogin ? 'Y' : ''}"}');
|
|
|
|
|
if (text != "" && login) {
|
|
|
|
|
FFI.setByName('input_os_password', text);
|
|
|
|
|
}
|
2022-03-13 23:07:52 +08:00
|
|
|
|
close();
|
2022-02-28 16:11:21 +08:00
|
|
|
|
},
|
|
|
|
|
child: Text(translate('OK')),
|
|
|
|
|
),
|
2022-03-13 00:32:44 +08:00
|
|
|
|
]);
|
|
|
|
|
});
|
2020-12-21 19:05:31 +08:00
|
|
|
|
}
|
2021-08-11 00:22:47 +08:00
|
|
|
|
|
|
|
|
|
void sendPrompt(bool isMac, String key) {
|
|
|
|
|
final old = isMac ? FFI.command : FFI.ctrl;
|
|
|
|
|
if (isMac) {
|
|
|
|
|
FFI.command = true;
|
|
|
|
|
} else {
|
|
|
|
|
FFI.ctrl = true;
|
|
|
|
|
}
|
|
|
|
|
FFI.inputKey(key);
|
|
|
|
|
if (isMac) {
|
|
|
|
|
FFI.command = old;
|
|
|
|
|
} else {
|
|
|
|
|
FFI.ctrl = old;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-25 18:25:25 +08:00
|
|
|
|
|
|
|
|
|
/// flutter/packages/flutter/lib/src/services/keyboard_key.dart -> _keyLabels
|
|
|
|
|
/// see [LogicalKeyboardKey.keyLabel]
|
2022-05-07 18:04:00 +08:00
|
|
|
|
const Map<int, String> _logicalKeyMap = <int, String>{
|
2022-04-25 18:25:25 +08:00
|
|
|
|
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',
|
2022-05-07 18:04:00 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// 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',
|
2022-04-25 18:25:25 +08:00
|
|
|
|
};
|