2021-08-18 22:36:46 +02:00
|
|
|
#include "window.hpp"
|
|
|
|
|
|
|
|
#if defined(OS_MACOS)
|
|
|
|
|
2024-06-22 10:44:55 +02:00
|
|
|
#include <hex/api/project_file_manager.hpp>
|
2022-07-02 17:53:13 +02:00
|
|
|
#include <hex/api/imhex_api.hpp>
|
2023-11-18 14:50:43 +01:00
|
|
|
#include <hex/api/event_manager.hpp>
|
2024-07-05 20:59:20 +02:00
|
|
|
#include <hex/api/task_manager.hpp>
|
2022-02-01 18:09:40 +01:00
|
|
|
|
2022-06-30 15:09:57 +02:00
|
|
|
#include <hex/helpers/utils_macos.hpp>
|
2022-01-17 20:06:00 +01:00
|
|
|
#include <hex/helpers/logger.hpp>
|
2024-06-22 10:44:55 +02:00
|
|
|
#include <hex/helpers/default_paths.hpp>
|
2022-01-17 20:06:00 +01:00
|
|
|
|
2023-03-18 11:35:01 +01:00
|
|
|
#include <cstdio>
|
2022-01-17 20:06:00 +01:00
|
|
|
#include <unistd.h>
|
2021-09-16 22:23:51 +02:00
|
|
|
|
2022-08-04 09:51:07 +02:00
|
|
|
#include <imgui_impl_glfw.h>
|
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
namespace hex {
|
2021-08-18 22:36:46 +02:00
|
|
|
|
2023-05-27 17:45:41 +02:00
|
|
|
void nativeErrorMessage(const std::string &message) {
|
|
|
|
log::fatal(message);
|
|
|
|
errorMessageMacos(message.c_str());
|
|
|
|
}
|
|
|
|
|
2024-05-03 21:39:31 +02:00
|
|
|
void Window::configureGLFW() {
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
|
|
|
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
|
|
|
|
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
|
|
|
|
glfwWindowHint(GLFW_COCOA_RETINA_FRAMEBUFFER, GLFW_FALSE);
|
|
|
|
glfwWindowHint(GLFW_COCOA_GRAPHICS_SWITCHING, GLFW_TRUE);
|
|
|
|
glfwWindowHint(GLFW_TRANSPARENT_FRAMEBUFFER, GLFW_TRUE);
|
|
|
|
}
|
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
void Window::initNative() {
|
2024-02-01 12:09:43 +01:00
|
|
|
log::impl::enableColorPrinting();
|
|
|
|
|
2023-01-07 10:32:01 +01:00
|
|
|
// Add plugin library folders to dll search path
|
2024-06-22 10:44:55 +02:00
|
|
|
for (const auto &path : paths::Libraries.read()) {
|
2023-01-07 10:32:01 +01:00
|
|
|
if (std::fs::exists(path))
|
2023-01-07 10:56:03 +01:00
|
|
|
setenv("LD_LIBRARY_PATH", hex::format("{};{}", hex::getEnvironmentVariable("LD_LIBRARY_PATH").value_or(""), path.string().c_str()).c_str(), true);
|
2023-01-07 10:32:01 +01:00
|
|
|
}
|
|
|
|
|
2023-03-18 11:35:01 +01:00
|
|
|
// Various libraries sadly directly print to stderr with no way to disable it
|
|
|
|
// We redirect stderr to /dev/null to prevent this
|
|
|
|
freopen("/dev/null", "w", stderr);
|
|
|
|
setvbuf(stderr, nullptr, _IONBF, 0);
|
|
|
|
|
2023-02-17 12:03:53 +01:00
|
|
|
// Redirect stdout to log file if we're not running in a terminal
|
2022-01-24 20:53:17 +01:00
|
|
|
if (!isatty(STDOUT_FILENO)) {
|
2023-06-18 22:32:55 +02:00
|
|
|
log::impl::redirectToFile();
|
2021-08-22 20:24:42 +02:00
|
|
|
}
|
2024-02-24 22:46:52 +01:00
|
|
|
|
|
|
|
enumerateFontsMacos();
|
2022-01-24 20:53:17 +01:00
|
|
|
}
|
2021-08-22 20:24:42 +02:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
void Window::setupNativeWindow() {
|
2022-07-02 16:22:38 +02:00
|
|
|
bool themeFollowSystem = ImHexApi::System::usesSystemThemeDetection();
|
2023-12-08 10:29:44 +01:00
|
|
|
EventOSThemeChanged::subscribe(this, [themeFollowSystem] {
|
2022-01-24 20:53:17 +01:00
|
|
|
if (!themeFollowSystem) return;
|
2021-12-10 16:09:55 +01:00
|
|
|
|
2022-06-30 15:09:57 +02:00
|
|
|
if (!isMacosSystemDarkModeEnabled())
|
2023-12-08 10:29:44 +01:00
|
|
|
RequestChangeTheme::post("Light");
|
2022-06-30 15:09:57 +02:00
|
|
|
else
|
2023-12-08 10:29:44 +01:00
|
|
|
RequestChangeTheme::post("Dark");
|
2022-01-24 20:53:17 +01:00
|
|
|
});
|
2021-08-18 22:36:46 +02:00
|
|
|
|
2024-06-12 19:51:12 +02:00
|
|
|
EventProviderDirtied::subscribe([this](prv::Provider *) {
|
2024-07-05 21:03:24 +02:00
|
|
|
TaskManager::doLater([this] {
|
2024-07-05 20:59:20 +02:00
|
|
|
macosMarkContentEdited(m_window);
|
|
|
|
});
|
2024-06-12 19:51:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
ProjectFile::registerHandler({
|
|
|
|
.basePath = "",
|
|
|
|
.required = true,
|
|
|
|
.load = [](const std::fs::path &, Tar &) {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
.store = [this](const std::fs::path &, Tar &) {
|
2024-07-05 21:03:24 +02:00
|
|
|
TaskManager::doLater([this] {
|
2024-07-05 20:59:20 +02:00
|
|
|
macosMarkContentEdited(m_window, false);
|
|
|
|
});
|
|
|
|
|
2024-06-12 19:51:12 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
if (themeFollowSystem)
|
2023-12-08 10:29:44 +01:00
|
|
|
EventOSThemeChanged::post();
|
2023-12-30 23:52:25 +01:00
|
|
|
|
2024-01-20 21:03:46 +01:00
|
|
|
// Register file drop callback
|
|
|
|
glfwSetDropCallback(m_window, [](GLFWwindow *, int count, const char **paths) {
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
EventFileDropped::post(reinterpret_cast<const char8_t *>(paths[i]));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-02-11 14:12:14 +01:00
|
|
|
setupMacosWindowStyle(m_window, ImHexApi::System::isBorderlessWindowModeEnabled());
|
2024-06-28 21:27:35 +02:00
|
|
|
|
|
|
|
glfwSetWindowRefreshCallback(m_window, [](GLFWwindow *window) {
|
|
|
|
auto win = static_cast<Window *>(glfwGetWindowUserPointer(window));
|
|
|
|
win->fullFrame();
|
|
|
|
});
|
2022-01-24 20:53:17 +01:00
|
|
|
}
|
2021-08-18 22:36:46 +02:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
void Window::beginNativeWindowFrame() {
|
2023-12-30 23:52:25 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
}
|
2021-08-18 23:12:27 +02:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
void Window::endNativeWindowFrame() {
|
2023-12-30 23:52:25 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
}
|
2021-08-18 23:12:27 +02:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
}
|
|
|
|
|
2021-08-18 22:36:46 +02:00
|
|
|
#endif
|