2021-02-20 00:34:41 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2021-11-28 20:24:17 +00:00
|
|
|
|
using System.Runtime.Versioning;
|
2021-02-20 00:34:41 +00:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common.System
|
|
|
|
|
{
|
|
|
|
|
public static class ForceDpiAware
|
|
|
|
|
{
|
|
|
|
|
[DllImport("user32.dll")]
|
|
|
|
|
private static extern bool SetProcessDPIAware();
|
|
|
|
|
|
|
|
|
|
private static readonly double _standardDpiScale = 96.0;
|
|
|
|
|
private static readonly double _maxScaleFactor = 1.25;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marks the application as DPI-Aware when running on the Windows operating system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static void Windows()
|
|
|
|
|
{
|
|
|
|
|
// Make process DPI aware for proper window sizing on high-res screens.
|
2021-11-28 20:24:17 +00:00
|
|
|
|
if (OperatingSystem.IsWindowsVersionAtLeast(6))
|
2021-02-20 00:34:41 +00:00
|
|
|
|
{
|
|
|
|
|
SetProcessDPIAware();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double GetWindowScaleFactor()
|
|
|
|
|
{
|
2021-11-28 20:24:17 +00:00
|
|
|
|
double userDpiScale = 96.0;
|
2021-02-20 00:34:41 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2021-11-28 20:24:17 +00:00
|
|
|
|
if (OperatingSystem.IsWindows())
|
|
|
|
|
{
|
|
|
|
|
userDpiScale = Graphics.FromHwnd(IntPtr.Zero).DpiX;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// TODO: Linux support
|
|
|
|
|
}
|
2021-02-20 00:34:41 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: {e.Message}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Math.Min(userDpiScale / _standardDpiScale, _maxScaleFactor);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|