mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 13:19:04 +08:00
7a2de5d280
Signed-off-by: fufesou <shuanglongchen@yeah.net>
76 lines
1.8 KiB
Dart
76 lines
1.8 KiB
Dart
// ignore_for_file: avoid_web_libraries_in_flutter
|
|
|
|
import 'dart:convert';
|
|
import 'dart:typed_data';
|
|
import 'dart:js';
|
|
|
|
import '../common.dart';
|
|
import 'dart:html';
|
|
import 'dart:async';
|
|
|
|
final List<StreamSubscription<MouseEvent>> mouseListeners = [];
|
|
final List<StreamSubscription<KeyboardEvent>> keyListeners = [];
|
|
|
|
class PlatformFFI {
|
|
static String getByName(String name, [String arg = '']) {
|
|
return context.callMethod('getByName', [name, arg]);
|
|
}
|
|
|
|
static void setByName(String name, [String value = '']) {
|
|
context.callMethod('setByName', [name, value]);
|
|
}
|
|
|
|
PlatformFFI._();
|
|
static final PlatformFFI instance = PlatformFFI._();
|
|
|
|
static get localeName => window.navigator.language;
|
|
|
|
static Future<Null> init(String _appType) async {
|
|
isWeb = true;
|
|
isWebDesktop = !context.callMethod('isMobile');
|
|
context.callMethod('init');
|
|
version = getByName('version');
|
|
}
|
|
|
|
static void setEventCallback(void Function(Map<String, dynamic>) fun) {
|
|
context["onGlobalEvent"] = (String message) {
|
|
try {
|
|
Map<String, dynamic> event = json.decode(message);
|
|
fun(event);
|
|
} catch (e) {
|
|
print('json.decode fail(): $e');
|
|
}
|
|
};
|
|
}
|
|
|
|
static void setRgbaCallback(void Function(Uint8List) fun) {
|
|
context["onRgba"] = (Uint8List? rgba) {
|
|
if (rgba != null) {
|
|
fun(rgba);
|
|
}
|
|
};
|
|
}
|
|
|
|
static void startDesktopWebListener() {
|
|
mouseListeners.add(
|
|
window.document.onContextMenu.listen((evt) => evt.preventDefault()));
|
|
}
|
|
|
|
static void stopDesktopWebListener() {
|
|
mouseListeners.forEach((l) {
|
|
l.cancel();
|
|
});
|
|
mouseListeners.clear();
|
|
keyListeners.forEach((l) {
|
|
l.cancel();
|
|
});
|
|
keyListeners.clear();
|
|
}
|
|
|
|
static void setMethodCallHandler(FMethod callback) {}
|
|
|
|
static Future<bool> invokeMethod(String method, [dynamic arguments]) async {
|
|
return true;
|
|
}
|
|
}
|