| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | import 'dart:convert'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import 'package:desktop_multi_window/desktop_multi_window.dart'; | 
					
						
							| 
									
										
										
										
											2022-08-09 13:39:30 +08:00
										 |  |  | import 'package:flutter/material.dart'; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | import 'package:flutter/services.dart'; | 
					
						
							| 
									
										
										
										
											2022-10-14 19:48:41 +09:00
										 |  |  | import 'package:flutter_hbb/common.dart'; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /// must keep the order
 | 
					
						
							|  |  |  | enum WindowType { Main, RemoteDesktop, FileTransfer, PortForward, Unknown } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extension Index on int { | 
					
						
							|  |  |  |   WindowType get windowType { | 
					
						
							|  |  |  |     switch (this) { | 
					
						
							|  |  |  |       case 0: | 
					
						
							|  |  |  |         return WindowType.Main; | 
					
						
							|  |  |  |       case 1: | 
					
						
							|  |  |  |         return WindowType.RemoteDesktop; | 
					
						
							|  |  |  |       case 2: | 
					
						
							|  |  |  |         return WindowType.FileTransfer; | 
					
						
							|  |  |  |       case 3: | 
					
						
							|  |  |  |         return WindowType.PortForward; | 
					
						
							|  |  |  |       default: | 
					
						
							|  |  |  |         return WindowType.Unknown; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// Window Manager
 | 
					
						
							|  |  |  | /// mainly use it in `Main Window`
 | 
					
						
							|  |  |  | /// use it in sub window is not recommended
 | 
					
						
							|  |  |  | class RustDeskMultiWindowManager { | 
					
						
							|  |  |  |   RustDeskMultiWindowManager._(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   static final instance = RustDeskMultiWindowManager._(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  |   final List<int> _activeWindows = List.empty(growable: true); | 
					
						
							|  |  |  |   final List<VoidCallback> _windowActiveCallbacks = List.empty(growable: true); | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |   int? _remoteDesktopWindowId; | 
					
						
							| 
									
										
										
										
											2022-06-17 22:57:41 +08:00
										 |  |  |   int? _fileTransferWindowId; | 
					
						
							| 
									
										
										
										
											2022-08-26 11:35:28 +08:00
										 |  |  |   int? _portForwardWindowId; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-01 06:18:29 -07:00
										 |  |  |   Future<dynamic> newRemoteDesktop(String remoteId) async { | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |     final msg = | 
					
						
							| 
									
										
										
										
											2022-09-01 06:18:29 -07:00
										 |  |  |         jsonEncode({"type": WindowType.RemoteDesktop.index, "id": remoteId}); | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     try { | 
					
						
							|  |  |  |       final ids = await DesktopMultiWindow.getAllSubWindowIds(); | 
					
						
							|  |  |  |       if (!ids.contains(_remoteDesktopWindowId)) { | 
					
						
							|  |  |  |         _remoteDesktopWindowId = null; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } on Error { | 
					
						
							|  |  |  |       _remoteDesktopWindowId = null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (_remoteDesktopWindowId == null) { | 
					
						
							|  |  |  |       final remoteDesktopController = | 
					
						
							|  |  |  |           await DesktopMultiWindow.createWindow(msg); | 
					
						
							|  |  |  |       remoteDesktopController | 
					
						
							|  |  |  |         ..setFrame(const Offset(0, 0) & const Size(1280, 720)) | 
					
						
							|  |  |  |         ..center() | 
					
						
							|  |  |  |         ..setTitle("rustdesk - remote desktop") | 
					
						
							|  |  |  |         ..show(); | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  |       registerActiveWindow(remoteDesktopController.windowId); | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |       _remoteDesktopWindowId = remoteDesktopController.windowId; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       return call(WindowType.RemoteDesktop, "new_remote_desktop", msg); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-01 06:18:29 -07:00
										 |  |  |   Future<dynamic> newFileTransfer(String remoteId) async { | 
					
						
							| 
									
										
										
										
											2022-06-17 22:57:41 +08:00
										 |  |  |     final msg = | 
					
						
							| 
									
										
										
										
											2022-09-01 06:18:29 -07:00
										 |  |  |         jsonEncode({"type": WindowType.FileTransfer.index, "id": remoteId}); | 
					
						
							| 
									
										
										
										
											2022-06-17 22:57:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     try { | 
					
						
							|  |  |  |       final ids = await DesktopMultiWindow.getAllSubWindowIds(); | 
					
						
							|  |  |  |       if (!ids.contains(_fileTransferWindowId)) { | 
					
						
							|  |  |  |         _fileTransferWindowId = null; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } on Error { | 
					
						
							|  |  |  |       _fileTransferWindowId = null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (_fileTransferWindowId == null) { | 
					
						
							|  |  |  |       final fileTransferController = await DesktopMultiWindow.createWindow(msg); | 
					
						
							|  |  |  |       fileTransferController | 
					
						
							|  |  |  |         ..setFrame(const Offset(0, 0) & const Size(1280, 720)) | 
					
						
							|  |  |  |         ..center() | 
					
						
							|  |  |  |         ..setTitle("rustdesk - file transfer") | 
					
						
							|  |  |  |         ..show(); | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  |       registerActiveWindow(fileTransferController.windowId); | 
					
						
							| 
									
										
										
										
											2022-06-17 22:57:41 +08:00
										 |  |  |       _fileTransferWindowId = fileTransferController.windowId; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       return call(WindowType.FileTransfer, "new_file_transfer", msg); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-01 06:18:29 -07:00
										 |  |  |   Future<dynamic> newPortForward(String remoteId, bool isRDP) async { | 
					
						
							|  |  |  |     final msg = jsonEncode( | 
					
						
							|  |  |  |         {"type": WindowType.PortForward.index, "id": remoteId, "isRDP": isRDP}); | 
					
						
							| 
									
										
										
										
											2022-08-26 11:35:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     try { | 
					
						
							|  |  |  |       final ids = await DesktopMultiWindow.getAllSubWindowIds(); | 
					
						
							|  |  |  |       if (!ids.contains(_portForwardWindowId)) { | 
					
						
							|  |  |  |         _portForwardWindowId = null; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } on Error { | 
					
						
							|  |  |  |       _portForwardWindowId = null; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (_portForwardWindowId == null) { | 
					
						
							|  |  |  |       final portForwardController = await DesktopMultiWindow.createWindow(msg); | 
					
						
							|  |  |  |       portForwardController | 
					
						
							|  |  |  |         ..setFrame(const Offset(0, 0) & const Size(1280, 720)) | 
					
						
							|  |  |  |         ..center() | 
					
						
							|  |  |  |         ..setTitle("rustdesk - port forward") | 
					
						
							|  |  |  |         ..show(); | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  |       registerActiveWindow(portForwardController.windowId); | 
					
						
							| 
									
										
										
										
											2022-08-26 11:35:28 +08:00
										 |  |  |       _portForwardWindowId = portForwardController.windowId; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       return call(WindowType.PortForward, "new_port_forward", msg); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |   Future<dynamic> call(WindowType type, String methodName, dynamic args) async { | 
					
						
							|  |  |  |     int? windowId = findWindowByType(type); | 
					
						
							|  |  |  |     if (windowId == null) { | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return await DesktopMultiWindow.invokeMethod(windowId, methodName, args); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   int? findWindowByType(WindowType type) { | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							|  |  |  |       case WindowType.Main: | 
					
						
							| 
									
										
										
										
											2022-08-09 09:01:06 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |       case WindowType.RemoteDesktop: | 
					
						
							|  |  |  |         return _remoteDesktopWindowId; | 
					
						
							|  |  |  |       case WindowType.FileTransfer: | 
					
						
							| 
									
										
										
										
											2022-06-27 16:44:34 +08:00
										 |  |  |         return _fileTransferWindowId; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |       case WindowType.PortForward: | 
					
						
							| 
									
										
										
										
											2022-08-26 11:35:28 +08:00
										 |  |  |         return _portForwardWindowId; | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  |       case WindowType.Unknown: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return null; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void setMethodHandler( | 
					
						
							|  |  |  |       Future<dynamic> Function(MethodCall call, int fromWindowId)? handler) { | 
					
						
							|  |  |  |     DesktopMultiWindow.setMethodHandler(handler); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-08-09 13:39:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Future<void> closeAllSubWindows() async { | 
					
						
							|  |  |  |     await Future.wait(WindowType.values.map((e) => closeWindows(e))); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-26 11:35:28 +08:00
										 |  |  |   Future<void> closeWindows(WindowType type) async { | 
					
						
							| 
									
										
										
										
											2022-08-09 13:39:30 +08:00
										 |  |  |     if (type == WindowType.Main) { | 
					
						
							|  |  |  |       // skip main window, use window manager instead
 | 
					
						
							|  |  |  |       return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     int? wId = findWindowByType(type); | 
					
						
							|  |  |  |     if (wId != null) { | 
					
						
							|  |  |  |       debugPrint("closing multi window: ${type.toString()}"); | 
					
						
							| 
									
										
										
										
											2022-10-27 18:40:45 +08:00
										 |  |  |       await saveWindowPosition(type, windowId: wId); | 
					
						
							| 
									
										
										
										
											2022-08-09 13:39:30 +08:00
										 |  |  |       try { | 
					
						
							|  |  |  |         final ids = await DesktopMultiWindow.getAllSubWindowIds(); | 
					
						
							|  |  |  |         if (!ids.contains(wId)) { | 
					
						
							|  |  |  |           // no such window already
 | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-11-06 17:39:19 +08:00
										 |  |  |         await WindowController.fromWindowId(wId).setPreventClose(false); | 
					
						
							| 
									
										
										
										
											2022-08-30 20:48:03 +08:00
										 |  |  |         await WindowController.fromWindowId(wId).close(); | 
					
						
							| 
									
										
										
										
											2022-08-09 13:39:30 +08:00
										 |  |  |       } on Error { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Future<List<int>> getAllSubWindowIds() async { | 
					
						
							|  |  |  |     try { | 
					
						
							|  |  |  |       final windows = await DesktopMultiWindow.getAllSubWindowIds(); | 
					
						
							|  |  |  |       return windows; | 
					
						
							|  |  |  |     } catch (err) { | 
					
						
							|  |  |  |       if (err is AssertionError) { | 
					
						
							|  |  |  |         return []; | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         rethrow; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   List<int> getActiveWindows() { | 
					
						
							|  |  |  |     return _activeWindows; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void _notifyActiveWindow() { | 
					
						
							|  |  |  |     for (final callback in _windowActiveCallbacks) { | 
					
						
							|  |  |  |       callback.call(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void registerActiveWindow(int windowId) { | 
					
						
							|  |  |  |     if (_activeWindows.contains(windowId)) { | 
					
						
							|  |  |  |       // ignore
 | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       _activeWindows.add(windowId); | 
					
						
							|  |  |  |       _notifyActiveWindow(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-06 17:39:19 +08:00
										 |  |  |   /// Remove active window which has [`windowId`]
 | 
					
						
							|  |  |  |   /// 
 | 
					
						
							|  |  |  |   /// [Avaliability]
 | 
					
						
							|  |  |  |   /// This function should only be called from main window.
 | 
					
						
							|  |  |  |   /// For other windows, please post a unregister(hide) event to main window handler:
 | 
					
						
							|  |  |  |   /// `rustDeskWinManager.call(WindowType.Main, kWindowEventHide, {"id": windowId!});`
 | 
					
						
							| 
									
										
										
										
											2022-11-05 23:41:22 +08:00
										 |  |  |   void unregisterActiveWindow(int windowId) { | 
					
						
							|  |  |  |     if (!_activeWindows.contains(windowId)) { | 
					
						
							|  |  |  |       // ignore
 | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |       _activeWindows.remove(windowId); | 
					
						
							|  |  |  |       _notifyActiveWindow(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void registerActiveWindowListener(VoidCallback callback) { | 
					
						
							|  |  |  |     _windowActiveCallbacks.add(callback); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void unregisterActiveWindowListener(VoidCallback callback) { | 
					
						
							|  |  |  |     _windowActiveCallbacks.remove(callback); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-05-29 17:19:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | final rustDeskWinManager = RustDeskMultiWindowManager.instance; |