2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2022-05-25 21:43:11 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
2022-12-05 06:55:17 +00:00
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
|
|
|
|
2022-05-25 21:43:11 +00:00
|
|
|
struct WindowInfo;
|
|
|
|
|
|
|
|
/// Helper functions for things that need Objective-C
|
|
|
|
namespace CocoaTools
|
|
|
|
{
|
|
|
|
bool CreateMetalLayer(WindowInfo* wi);
|
|
|
|
void DestroyMetalLayer(WindowInfo* wi);
|
2024-05-23 13:35:34 +00:00
|
|
|
std::optional<float> GetViewRefreshRate(const WindowInfo& wi);
|
|
|
|
|
2022-05-25 22:32:10 +00:00
|
|
|
/// Add a handler to be run when macOS changes between dark and light themes
|
|
|
|
void AddThemeChangeHandler(void* ctx, void(handler)(void* ctx));
|
|
|
|
/// Remove a handler previously added using AddThemeChangeHandler with the given context
|
|
|
|
void RemoveThemeChangeHandler(void* ctx);
|
2024-05-14 21:55:58 +00:00
|
|
|
/// Returns the bundle path.
|
|
|
|
std::optional<std::string> GetBundlePath();
|
2022-12-05 06:55:17 +00:00
|
|
|
/// Get the bundle path to the actual application without any translocation fun
|
|
|
|
std::optional<std::string> GetNonTranslocatedBundlePath();
|
|
|
|
/// Move the given file to the trash, and return the path to its new location
|
|
|
|
std::optional<std::string> MoveToTrash(std::string_view file);
|
2023-06-21 07:51:58 +00:00
|
|
|
/// Launch the given application once this one quits
|
|
|
|
bool DelayedLaunch(std::string_view file);
|
2023-09-09 07:15:41 +00:00
|
|
|
/// Open a Finder window to the given URL
|
|
|
|
bool ShowInFinder(std::string_view file);
|
2022-05-25 21:43:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __APPLE__
|