rustdesk/flutter_hbb/lib/remote_page.dart

650 lines
20 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2020-11-18 23:15:59 +08:00
import 'package:provider/provider.dart';
import 'package:flutter/services.dart';
2020-11-17 11:12:55 +08:00
import 'dart:ui' as ui;
import 'package:flutter_easyloading/flutter_easyloading.dart';
import 'dart:async';
import 'package:tuple/tuple.dart';
2020-11-23 13:03:51 +08:00
import 'package:wakelock/wakelock.dart';
2020-11-19 00:32:46 +08:00
import 'common.dart';
import 'model.dart';
class RemotePage extends StatefulWidget {
RemotePage({Key key, this.id}) : super(key: key);
final String id;
@override
_RemotePageState createState() => _RemotePageState();
}
class _RemotePageState extends State<RemotePage> {
Timer _interval;
2020-11-20 00:29:59 +08:00
bool _showBar = true;
double _bottom = 0;
2020-11-25 16:28:46 +08:00
String _value = '';
2020-11-23 23:18:42 +08:00
double _xOffset = 0;
double _yOffset = 0;
double _scale = 1;
2020-11-25 01:13:08 +08:00
bool _mouseTools = false;
2020-11-25 13:03:48 +08:00
var _drag = false;
var _right = false;
var _scroll = false;
2020-11-25 16:28:46 +08:00
var _arrows = false;
var _more = false;
var _fn = false;
2020-11-20 17:51:49 +08:00
final FocusNode _focusNode = FocusNode();
2020-11-17 11:12:55 +08:00
@override
void initState() {
super.initState();
FFI.connect(widget.id);
WidgetsBinding.instance.addPostFrameCallback((_) {
2020-11-18 18:20:13 +08:00
SystemChrome.setEnabledSystemUIOverlays([]);
2020-11-18 00:28:55 +08:00
showLoading('Connecting...');
_interval =
Timer.periodic(Duration(milliseconds: 30), (timer) => interval());
});
2020-11-23 12:00:56 +08:00
Wakelock.enable();
}
@override
void dispose() {
2020-11-20 17:51:49 +08:00
_focusNode.dispose();
super.dispose();
FFI.close();
_interval.cancel();
dismissLoading();
2020-11-18 18:20:13 +08:00
SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values);
2020-11-23 12:00:56 +08:00
Wakelock.disable();
}
2020-11-25 16:28:46 +08:00
void resetTool() {
_scroll = _drag = _right = false;
FFI.resetModifiers();
}
void interval() {
var v = MediaQuery.of(context).viewInsets.bottom;
if (v != _bottom) {
2020-11-25 16:28:46 +08:00
resetTool();
_value = ' ' * 1000;
setState(() {
_bottom = v;
2020-11-25 16:28:46 +08:00
if (v < 100) {
SystemChrome.setEnabledSystemUIOverlays([]);
}
});
}
2020-11-19 21:59:49 +08:00
FFI.ffiModel.update(widget.id, context, handleMsgbox);
}
void handleMsgbox(Map<String, dynamic> evt, String id, BuildContext context) {
var type = evt['type'];
var title = evt['title'];
var text = evt['text'];
if (type == 're-input-password') {
wrongPasswordDialog(id, context);
} else if (type == 'input-password') {
enterPasswordDialog(id, context);
} else {
msgbox(type, title, text, context);
}
2020-11-17 11:12:55 +08:00
}
@override
Widget build(BuildContext context) {
2020-11-19 18:41:37 +08:00
EasyLoading.instance.loadingStyle = EasyLoadingStyle.light;
2020-11-22 18:29:04 +08:00
return WillPopScope(
onWillPop: () async {
close();
return false;
},
child: Scaffold(
2020-11-23 01:16:17 +08:00
floatingActionButton: _showBar
? null
: FloatingActionButton(
mini: true,
child: Icon(Icons.expand_less),
backgroundColor: MyTheme.accent50,
onPressed: () {
setState(() => _showBar = !_showBar);
}),
bottomNavigationBar: _showBar
? BottomAppBar(
elevation: 10,
color: MyTheme.accent,
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Row(children: [
IconButton(
color: Colors.white,
icon: Icon(Icons.clear),
onPressed: () {
close();
},
),
IconButton(
2020-11-22 18:29:04 +08:00
color: Colors.white,
2020-11-23 01:16:17 +08:00
icon: Icon(Icons.keyboard),
2020-11-22 18:29:04 +08:00
onPressed: () {
2020-11-23 01:16:17 +08:00
SystemChrome.setEnabledSystemUIOverlays(
SystemUiOverlay.values);
_focusNode.requestFocus();
SystemChannels.textInput
.invokeMethod('TextInput.show');
}),
2020-11-25 01:13:08 +08:00
IconButton(
color: Colors.white,
icon: Icon(Icons.tv),
onPressed: () {
showOptions(context);
},
),
Container(
color: _mouseTools ? Colors.blue[500] : null,
2020-11-23 01:16:17 +08:00
child: IconButton(
2020-11-22 18:29:04 +08:00
color: Colors.white,
2020-11-25 01:13:08 +08:00
icon: Icon(Icons.mouse),
2020-11-22 18:29:04 +08:00
onPressed: () {
2020-11-25 13:03:48 +08:00
setState(() {
_mouseTools = !_mouseTools;
2020-11-25 16:28:46 +08:00
resetTool();
2020-11-25 13:03:48 +08:00
});
2020-11-23 01:16:17 +08:00
},
)),
2020-11-22 18:29:04 +08:00
IconButton(
2020-11-23 01:16:17 +08:00
color: Colors.white,
2020-11-25 01:13:08 +08:00
icon: Icon(Icons.more_vert),
2020-11-23 01:16:17 +08:00
onPressed: () {
2020-11-25 01:13:08 +08:00
showActions(context);
2020-11-23 01:16:17 +08:00
},
),
]),
IconButton(
color: Colors.white,
icon: Icon(Icons.expand_more),
onPressed: () {
setState(() => _showBar = !_showBar);
}),
],
),
)
: null,
2020-11-23 23:18:42 +08:00
body: GestureDetector(
onTap: () {
2020-11-25 17:02:27 +08:00
if (_drag || _scroll) return;
FFI.tap(_right);
2020-11-23 23:18:42 +08:00
},
onScaleStart: (details) {
_scale = 1;
_xOffset = details.focalPoint.dx;
_yOffset = details.focalPoint.dy;
2020-11-25 17:02:27 +08:00
if (_drag) {
FFI.sendMouse('down', 'left');
}
2020-11-23 23:18:42 +08:00
},
onScaleUpdate: (details) {
var scale = details.scale;
if (scale == 1) {
var x = details.focalPoint.dx;
var y = details.focalPoint.dy;
var dx = x - _xOffset;
var dy = y - _yOffset;
2020-11-25 17:02:27 +08:00
if (_scroll) {
FFI.scroll(-dy);
} else {
FFI.cursorModel.updatePan(dx, dy);
}
2020-11-23 23:18:42 +08:00
_xOffset = x;
_yOffset = y;
2020-11-25 17:02:27 +08:00
} else if (!_drag && !_scroll) {
2020-11-23 23:18:42 +08:00
FFI.canvasModel.updateScale(scale / _scale);
_scale = scale;
}
},
2020-11-25 17:02:27 +08:00
onScaleEnd: (_) {
if (_drag) {
FFI.sendMouse('up', 'left');
}
},
2020-11-23 01:16:17 +08:00
child: FlutterEasyLoading(
child: Container(
color: MyTheme.canvasColor,
child: Stack(children: [
ImagePaint(),
CursorPaint(),
2020-11-25 13:03:48 +08:00
getHelpTools(),
2020-11-23 01:16:17 +08:00
SizedBox(
width: 0,
height: 0,
child: _bottom < 100
? Container()
: TextFormField(
2020-11-23 01:16:17 +08:00
textInputAction: TextInputAction.newline,
autocorrect: false,
enableSuggestions: false,
focusNode: _focusNode,
maxLines: null,
initialValue:
_value, // trick way to make backspace work always
2020-11-23 01:16:17 +08:00
keyboardType: TextInputType.multiline,
2020-11-25 16:28:46 +08:00
onChanged: (x) {
var char = x[x.length - 1];
if (x.length <= _value.length) {
2020-11-25 16:28:46 +08:00
char = 'VK_BACK';
} else if (char == '\n') {
char = 'VK_RETURN';
}
if (char != '' && char != null)
FFI.inputKey(char);
_value = x;
},
2020-11-23 01:16:17 +08:00
),
),
])),
)),
));
2020-11-20 16:37:48 +08:00
}
void close() {
msgbox('', 'Close', 'Are you sure to close the connection?', context);
2020-11-17 11:12:55 +08:00
}
2020-11-25 13:03:48 +08:00
Widget getHelpTools() {
2020-11-25 16:28:46 +08:00
final keyboard = _bottom >= 100;
if (!_mouseTools && !keyboard) {
2020-11-25 13:03:48 +08:00
return SizedBox();
}
2020-11-25 16:28:46 +08:00
var wrap =
(String text, void Function() onPressed, [bool active, IconData icon]) {
2020-11-25 13:03:48 +08:00
return ButtonTheme(
padding: EdgeInsets.symmetric(
vertical: 6, horizontal: 12), //adds padding inside the button
materialTapTargetSize: MaterialTapTargetSize
.shrinkWrap, //limits the touch area to the button area
minWidth: 0, //wraps child's width
height: 0,
child: FlatButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5.0),
),
color: active == true ? MyTheme.accent50 : null,
2020-11-25 16:28:46 +08:00
child: icon != null
? Icon(icon, color: Colors.white)
: Text(text,
style: TextStyle(color: Colors.white, fontSize: 11)),
2020-11-25 13:03:48 +08:00
onPressed: onPressed));
};
2020-11-25 16:28:46 +08:00
final mouse = <Widget>[
wrap('Drag', () {
setState(() {
_drag = !_drag;
if (_drag) {
_scroll = false;
_right = false;
}
});
}, _drag),
wrap('Scroll', () {
setState(() {
_scroll = !_scroll;
if (_drag) {
_drag = false;
_right = false;
}
});
}, _scroll),
wrap('Right', () {
setState(() {
_right = !_right;
if (_drag) {
_scroll = false;
_drag = false;
}
});
}, _right)
];
final modifiers = <Widget>[
wrap('Ctrl', () {
setState(() => FFI.ctrl = !FFI.ctrl);
}, FFI.ctrl),
wrap('Alt', () {
setState(() => FFI.alt = !FFI.alt);
}, FFI.alt),
wrap('Shift', () {
setState(() => FFI.shift = !FFI.shift);
}, FFI.shift),
wrap('Command', () {
setState(() => FFI.command = !FFI.command);
}, FFI.command),
];
final keys = <Widget>[
wrap(
'Arrows',
() => setState(() {
2020-11-25 13:03:48 +08:00
setState(() {
2020-11-25 16:28:46 +08:00
_arrows = !_arrows;
if (_arrows) {
_fn = false;
_more = false;
2020-11-25 13:03:48 +08:00
}
});
2020-11-25 16:28:46 +08:00
}),
_arrows),
wrap(
'Fn',
() => setState(
() {
_fn = !_fn;
if (_fn) {
_arrows = false;
_more = false;
2020-11-25 13:03:48 +08:00
}
2020-11-25 16:28:46 +08:00
},
),
_fn),
wrap(
'More',
() => setState(
() {
_more = !_more;
if (_more) {
_arrows = false;
_fn = false;
2020-11-25 13:03:48 +08:00
}
2020-11-25 16:28:46 +08:00
},
),
_more),
];
final arrows = <Widget>[
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),
];
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');
}),
wrap('PeUp', () {
FFI.inputKey('VK_PRIOR');
}),
wrap('PgDown', () {
FFI.inputKey('VK_NEXT');
}),
];
return Container(
color: Color(0x77000000),
padding: EdgeInsets.only(
top: keyboard ? 24 : 4, left: 8, right: 8, bottom: 8),
child: Wrap(
spacing: 4,
runSpacing: 4,
children: <Widget>[SizedBox(width: 9999)] +
(keyboard
? modifiers +
keys +
(_arrows ? arrows : []) +
(_fn ? fn : []) +
(_more ? more : [])
: mouse + modifiers),
));
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({
2020-11-17 11:12:55 +08:00
this.image,
2020-11-19 18:22:06 +08:00
this.x,
this.y,
2020-11-23 23:18:42 +08:00
this.scale,
2020-11-17 11:12:55 +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) {
if (image == null) return;
2020-11-23 23:18:42 +08:00
canvas.scale(scale, scale);
2020-11-19 18:22:06 +08:00
canvas.drawImage(image, new Offset(x, y), new Paint());
2020-11-17 11:12:55 +08:00
}
@override
bool shouldRepaint(CustomPainter oldDelegate) {
return oldDelegate != this;
}
}
2020-11-19 21:59:49 +08:00
void enterPasswordDialog(String id, BuildContext context) {
final controller = TextEditingController();
2020-11-20 02:12:48 +08:00
var remember = FFI.getByName('remember', id) == 'true';
2020-11-19 21:59:49 +08:00
showAlertDialog(
context,
(setState) => Tuple3(
2020-11-20 02:12:48 +08:00
Text('Please enter your password'),
Column(mainAxisSize: MainAxisSize.min, children: [
2020-11-21 14:40:28 +08:00
PasswordWidget(controller: controller),
2020-11-20 13:06:52 +08:00
CheckboxListTile(
controlAffinity: ListTileControlAffinity.leading,
2020-11-20 02:12:48 +08:00
title: Text(
'Remember the password',
2020-11-19 21:59:49 +08:00
),
2020-11-20 13:06:52 +08:00
value: remember,
onChanged: (v) {
setState(() => remember = v);
},
2020-11-20 02:12:48 +08:00
),
]),
[
FlatButton(
textColor: MyTheme.accent,
onPressed: () {
Navigator.pop(context);
Navigator.pop(context);
},
child: Text('Cancel'),
),
FlatButton(
textColor: MyTheme.accent,
onPressed: () {
var text = controller.text.trim();
if (text == '') return;
FFI.login(text, remember);
showLoading('Logging in...');
Navigator.pop(context);
},
child: Text('OK'),
),
],
));
2020-11-19 21:59:49 +08:00
}
void wrongPasswordDialog(String id, BuildContext context) {
showAlertDialog(
context,
(_) =>
Tuple3(Text('Wrong Password'), Text('Do you want to enter again?'), [
FlatButton(
textColor: MyTheme.accent,
onPressed: () {
Navigator.pop(context);
Navigator.pop(context);
},
child: Text('Cancel'),
),
FlatButton(
textColor: MyTheme.accent,
onPressed: () {
enterPasswordDialog(id, context);
},
child: Text('Retry'),
),
]));
}
2020-11-20 02:12:48 +08:00
2020-11-20 16:37:48 +08:00
void showOptions(BuildContext context) {
2020-11-20 02:12:48 +08:00
var showRemoteCursor =
FFI.getByName('toggle_option', 'show-remote-cursor') == 'true';
var lockAfterSessionEnd =
FFI.getByName('toggle_option', 'lock-after-session-end') == 'true';
2020-11-20 13:06:52 +08:00
String quality = FFI.getByName('image_quality');
if (quality == '') quality = 'balanced';
2020-11-20 02:12:48 +08:00
showAlertDialog(
context,
(setState) => Tuple3(
null,
Column(mainAxisSize: MainAxisSize.min, children: [
2020-11-20 13:06:52 +08:00
RadioListTile<String>(
controlAffinity: ListTileControlAffinity.trailing,
title: const Text('Good image quality'),
value: 'best',
groupValue: quality,
onChanged: (String value) {
setState(() {
quality = value;
FFI.setByName('image_quality', value);
});
},
),
RadioListTile<String>(
controlAffinity: ListTileControlAffinity.trailing,
title: const Text('Balanced'),
value: 'balanced',
groupValue: quality,
onChanged: (String value) {
setState(() {
quality = value;
FFI.setByName('image_quality', value);
});
},
),
RadioListTile<String>(
controlAffinity: ListTileControlAffinity.trailing,
title: const Text('Optimize reaction time'),
value: 'low',
groupValue: quality,
onChanged: (String value) {
setState(() {
quality = value;
FFI.setByName('image_quality', value);
});
},
),
2020-11-21 02:18:04 +08:00
Divider(color: Colors.black),
2020-11-20 02:12:48 +08:00
CheckboxListTile(
value: showRemoteCursor,
onChanged: (v) {
setState(() {
showRemoteCursor = v;
FFI.setByName('toggle_option', 'show-remote-cursor');
});
},
title: Text('Show remote cursor')),
CheckboxListTile(
value: lockAfterSessionEnd,
onChanged: (v) {
setState(() {
lockAfterSessionEnd = v;
FFI.setByName('toggle_option', 'lock-after-session-end');
});
},
title: Text('Lock after session end'))
]),
null),
() async => true,
true,
2020-11-20 16:37:48 +08:00
0);
}
void showActions(BuildContext context) {
2020-11-25 01:13:08 +08:00
final size = MediaQuery.of(context).size;
final x = 120.0;
2020-11-25 00:41:39 +08:00
final y = size.height;
() async {
var value = await showMenu(
context: context,
position: RelativeRect.fromLTRB(x, y, x, y),
items: [
PopupMenuItem<String>(
child: Text('Insert Ctrl + Alt + Del'), value: 'cad'),
PopupMenuItem<String>(child: Text('Insert Lock'), value: 'lock'),
],
2020-11-25 16:28:46 +08:00
elevation: 8,
2020-11-25 00:41:39 +08:00
);
if (value == 'cad') {
FFI.setByName('ctrl_alt_del');
}
if (value == 'lock') {
FFI.setByName('lock_screen');
}
}();
2020-11-20 02:12:48 +08:00
}