mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-18 16:11:28 +03:00
mobile virtual display, resolution menu, proxy setting (#8717)
1. Merge code of mobile and desktop virtual display menu. 2. Mobile add seperate resolution menu, only support changing resolutions. 3. Android add proxy setting Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
@@ -1158,14 +1158,110 @@ void showOptions(
|
||||
);
|
||||
}
|
||||
|
||||
var popupDialogMenus = List<Widget>.empty(growable: true);
|
||||
final resolution = getResolutionMenu(gFFI, id);
|
||||
if (resolution != null) {
|
||||
popupDialogMenus.add(ListTile(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
visualDensity: VisualDensity.compact,
|
||||
title: resolution.child,
|
||||
onTap: () {
|
||||
close();
|
||||
resolution.onPressed();
|
||||
},
|
||||
));
|
||||
}
|
||||
final virtualDisplayMenu = getVirtualDisplayMenu(gFFI, id);
|
||||
if (virtualDisplayMenu != null) {
|
||||
popupDialogMenus.add(ListTile(
|
||||
contentPadding: EdgeInsets.zero,
|
||||
visualDensity: VisualDensity.compact,
|
||||
title: virtualDisplayMenu.child,
|
||||
onTap: () {
|
||||
close();
|
||||
virtualDisplayMenu.onPressed();
|
||||
},
|
||||
));
|
||||
}
|
||||
if (popupDialogMenus.isNotEmpty) {
|
||||
popupDialogMenus.add(const Divider(color: MyTheme.border));
|
||||
}
|
||||
|
||||
return CustomAlertDialog(
|
||||
content: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: displays + radios + toggles + [privacyModeWidget]),
|
||||
children: displays +
|
||||
radios +
|
||||
popupDialogMenus +
|
||||
toggles +
|
||||
[privacyModeWidget]),
|
||||
);
|
||||
}, clickMaskDismiss: true, backDismiss: true);
|
||||
}
|
||||
|
||||
TTextMenu? getVirtualDisplayMenu(FFI ffi, String id) {
|
||||
if (!showVirtualDisplayMenu(ffi)) {
|
||||
return null;
|
||||
}
|
||||
return TTextMenu(
|
||||
child: Text(translate("Virtual display")),
|
||||
onPressed: () {
|
||||
ffi.dialogManager.show((setState, close, context) {
|
||||
final children = getVirtualDisplayMenuChildren(ffi, id, close);
|
||||
return CustomAlertDialog(
|
||||
title: Text(translate('Virtual display')),
|
||||
content: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: children,
|
||||
),
|
||||
);
|
||||
}, clickMaskDismiss: true, backDismiss: true);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
TTextMenu? getResolutionMenu(FFI ffi, String id) {
|
||||
final ffiModel = ffi.ffiModel;
|
||||
final pi = ffiModel.pi;
|
||||
final resolutions = pi.resolutions;
|
||||
final display = pi.tryGetDisplayIfNotAllDisplay(display: pi.currentDisplay);
|
||||
|
||||
final visible =
|
||||
ffiModel.keyboard && (resolutions.length > 1) && display != null;
|
||||
if (!visible) return null;
|
||||
|
||||
return TTextMenu(
|
||||
child: Text(translate("Resolution")),
|
||||
onPressed: () {
|
||||
ffi.dialogManager.show((setState, close, context) {
|
||||
final children = resolutions
|
||||
.map((e) => getRadio<String>(
|
||||
Text('${e.width}x${e.height}'),
|
||||
'${e.width}x${e.height}',
|
||||
'${display.width}x${display.height}',
|
||||
(value) {
|
||||
close();
|
||||
bind.sessionChangeResolution(
|
||||
sessionId: ffi.sessionId,
|
||||
display: pi.currentDisplay,
|
||||
width: e.width,
|
||||
height: e.height,
|
||||
);
|
||||
},
|
||||
))
|
||||
.toList();
|
||||
return CustomAlertDialog(
|
||||
title: Text(translate('Resolution')),
|
||||
content: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: children,
|
||||
),
|
||||
);
|
||||
}, clickMaskDismiss: true, backDismiss: true);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
void sendPrompt(bool isMac, String key) {
|
||||
final old = isMac ? gFFI.inputModel.command : gFFI.inputModel.ctrl;
|
||||
if (isMac) {
|
||||
|
||||
Reference in New Issue
Block a user