mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:38:32 +00:00
7bae440d3a
* `NativeMacOS` Helper Class * Corrections * Make CFString IDisposable * Fix `openURL:` * `dealloc` metal layer * Remove releases * Use NSString * Update Ryujinx.Ui.Common/Helper/NativeMacOS.cs Co-authored-by: merry <git@mary.rs> * Programatically select updates in Finder * Address feedback * Feedback * Ptr * Fix whoopsie * Ack suggestions * Update Ryujinx.Ava/UI/Renderer/EmbeddedWindow.cs Co-authored-by: gdkchan <gab.dark.100@gmail.com> * GDK Suggestions --------- Co-authored-by: merry <git@mary.rs> Co-authored-by: gdkchan <gab.dark.100@gmail.com>
112 lines
4.3 KiB
C#
112 lines
4.3 KiB
C#
using Ryujinx.Common.Logging;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Ui.Common.Helper
|
|
{
|
|
public static partial class OpenHelper
|
|
{
|
|
[LibraryImport("shell32.dll", SetLastError = true)]
|
|
public static partial int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, IntPtr apidl, uint dwFlags);
|
|
|
|
[LibraryImport("shell32.dll", SetLastError = true)]
|
|
public static partial void ILFree(IntPtr pidlList);
|
|
|
|
[LibraryImport("shell32.dll", SetLastError = true)]
|
|
public static partial IntPtr ILCreateFromPathW([MarshalAs(UnmanagedType.LPWStr)] string pszPath);
|
|
|
|
public static void OpenFolder(string path)
|
|
{
|
|
if (Directory.Exists(path))
|
|
{
|
|
Process.Start(new ProcessStartInfo
|
|
{
|
|
FileName = path,
|
|
UseShellExecute = true,
|
|
Verb = "open"
|
|
});
|
|
}
|
|
else
|
|
{
|
|
Logger.Notice.Print(LogClass.Application, $"Directory \"{path}\" doesn't exist!");
|
|
}
|
|
}
|
|
|
|
public static void LocateFile(string path)
|
|
{
|
|
if (File.Exists(path))
|
|
{
|
|
if (OperatingSystem.IsWindows())
|
|
{
|
|
IntPtr pidlList = ILCreateFromPathW(path);
|
|
if (pidlList != IntPtr.Zero)
|
|
{
|
|
try
|
|
{
|
|
Marshal.ThrowExceptionForHR(SHOpenFolderAndSelectItems(pidlList, 0, IntPtr.Zero, 0));
|
|
}
|
|
finally
|
|
{
|
|
ILFree(pidlList);
|
|
}
|
|
}
|
|
}
|
|
else if (OperatingSystem.IsMacOS())
|
|
{
|
|
ObjectiveC.NSString nsStringPath = new(path);
|
|
IntPtr nsUrl = ObjectiveC.objc_getClass("NSURL");
|
|
var urlPtr = ObjectiveC.IntPtr_objc_msgSend(nsUrl, "fileURLWithPath:", nsStringPath);
|
|
|
|
IntPtr nsArray = ObjectiveC.objc_getClass("NSArray");
|
|
IntPtr urlArray = ObjectiveC.IntPtr_objc_msgSend(nsArray, "arrayWithObject:", urlPtr);
|
|
|
|
IntPtr nsWorkspace = ObjectiveC.objc_getClass("NSWorkspace");
|
|
IntPtr sharedWorkspace = ObjectiveC.IntPtr_objc_msgSend(nsWorkspace, "sharedWorkspace");
|
|
|
|
ObjectiveC.objc_msgSend(sharedWorkspace, "activateFileViewerSelectingURLs:", urlArray);
|
|
}
|
|
else if (OperatingSystem.IsLinux())
|
|
{
|
|
Process.Start("dbus-send", $"--session --print-reply --dest=org.freedesktop.FileManager1 --type=method_call /org/freedesktop/FileManager1 org.freedesktop.FileManager1.ShowItems array:string:\"file://{path}\" string:\"\"");
|
|
}
|
|
else
|
|
{
|
|
OpenFolder(Path.GetDirectoryName(path));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Logger.Notice.Print(LogClass.Application, $"File \"{path}\" doesn't exist!");
|
|
}
|
|
}
|
|
|
|
public static void OpenUrl(string url)
|
|
{
|
|
if (OperatingSystem.IsWindows())
|
|
{
|
|
Process.Start(new ProcessStartInfo("cmd", $"/c start {url.Replace("&", "^&")}"));
|
|
}
|
|
else if (OperatingSystem.IsLinux())
|
|
{
|
|
Process.Start("xdg-open", url);
|
|
}
|
|
else if (OperatingSystem.IsMacOS())
|
|
{
|
|
ObjectiveC.NSString nsStringPath = new(url);
|
|
IntPtr nsUrl = ObjectiveC.objc_getClass("NSURL");
|
|
var urlPtr = ObjectiveC.IntPtr_objc_msgSend(nsUrl, "URLWithString:", nsStringPath);
|
|
|
|
IntPtr nsWorkspace = ObjectiveC.objc_getClass("NSWorkspace");
|
|
IntPtr sharedWorkspace = ObjectiveC.IntPtr_objc_msgSend(nsWorkspace, "sharedWorkspace");
|
|
|
|
ObjectiveC.bool_objc_msgSend(sharedWorkspace, "openURL:", urlPtr);
|
|
}
|
|
else
|
|
{
|
|
Logger.Notice.Print(LogClass.Application, $"Cannot open url \"{url}\" on this platform!");
|
|
}
|
|
}
|
|
}
|
|
} |