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>
|
impr: Refactor and restructure Event Manager (#2082)
### Problem description
This PR addresses issue #2013 that described a cluttered Event Manager.
This is a DX issue and should not impact the users whatsoever.
### Implementation description
The changes revolve around three main points:
1. the Event Manager (`event_manager.hpp`) was split into four
categories: GUI, Interaction, Lifecycle, and Provider, and two types:
Events, and Requests. This results in the following files:
- `events_gui.hpp`
- `events_interaction.hpp`
- `events_lifecycle.hpp`
- `events_provider.hpp`
- `requests_gui.hpp`
- `requests_interaction.hpp`
- `requests_lifecycle.hpp`
- `requests_provider.hpp`
2. Every event and request now has its own piece of documentation, with
a `@brief`, accompanied by a longer comment if needed, and gets its
`@param`s described.
3. The old `event_manager.hpp` import was removed and replaced by the
correct imports wherever needed, as to reduce spread of those files only
to where they are truly useful.
### Additional things
The commits have been split into (chrono-)logical steps:
- `feat`: split the Event Manager, and replace the imports
- `refactor`, `chore`: make various small changes to match the required
structure
- `docs`: add documentation for events and requests
Hopefully, this will help to review the PR.
*Note: Beware of very long rebuild times in between the commits, use
them sparingly! The Actions will ensure this PR builds anyways*
Closes #2013
---------
Signed-off-by: BioTheWolff <47079795+BioTheWolff@users.noreply.github.com>
Co-authored-by: Nik <werwolv98@gmail.com>
2025-01-25 16:32:07 +01:00
|
|
|
#include <hex/api/events/events_gui.hpp>
|
|
|
|
#include <hex/api/events/requests_gui.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
|
|
|
|
|
|
|
#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);
|
2024-12-28 20:42:05 +01:00
|
|
|
glfwWindowHint(GLFW_COCOA_RETINA_FRAMEBUFFER, GLFW_TRUE);
|
2024-05-03 21:39:31 +02:00
|
|
|
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-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
|