mirror of https://github.com/WerWolv/ImHex.git
Compare commits
2 Commits
d86be9d9b3
...
ab29303c2e
Author | SHA1 | Date |
---|---|---|
Thomas | ab29303c2e | |
Thomas | ed831c6fc9 |
|
@ -126,7 +126,7 @@ namespace hex {
|
|||
EVENT_DEF(RequestSelectionChange, Region);
|
||||
EVENT_DEF(RequestAddBookmark, Region, std::string, std::string, color_t);
|
||||
EVENT_DEF(RequestSetPatternLanguageCode, std::string);
|
||||
EVENT_DEF(RequestChangeWindowTitle, std::string);
|
||||
EVENT_DEF(RequestUpdateWindowTitle);
|
||||
EVENT_DEF(RequestCloseImHex, bool);
|
||||
EVENT_DEF(RequestRestartImHex);
|
||||
EVENT_DEF(RequestOpenFile, std::fs::path);
|
||||
|
|
|
@ -34,6 +34,8 @@ namespace hex {
|
|||
static bool store(std::optional<std::fs::path> filePath = std::nullopt);
|
||||
|
||||
static bool hasPath();
|
||||
static void clearPath();
|
||||
static std::fs::path getPath();
|
||||
|
||||
static void registerHandler(const Handler &handler) {
|
||||
getHandlers().push_back(handler);
|
||||
|
|
|
@ -73,7 +73,7 @@ namespace hex {
|
|||
}
|
||||
|
||||
ProjectFile::s_currProjectPath = filePath;
|
||||
|
||||
EventManager::post<RequestUpdateWindowTitle>();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -124,4 +124,12 @@ namespace hex {
|
|||
return !ProjectFile::s_currProjectPath.empty();
|
||||
}
|
||||
|
||||
void ProjectFile::clearPath() {
|
||||
ProjectFile::s_currProjectPath.clear();
|
||||
}
|
||||
|
||||
std::fs::path ProjectFile::getPath() {
|
||||
return ProjectFile::s_currProjectPath;
|
||||
}
|
||||
|
||||
}
|
|
@ -115,13 +115,19 @@ namespace hex {
|
|||
EventManager::post<EventWindowClosing>(this->m_window);
|
||||
});
|
||||
|
||||
EventManager::subscribe<RequestChangeWindowTitle>(this, [this](const std::string &windowTitle) {
|
||||
EventManager::subscribe<RequestUpdateWindowTitle>(this, [this]() {
|
||||
std::string title = "ImHex";
|
||||
|
||||
if (ImHexApi::Provider::isValid()) {
|
||||
if (ProjectFile::hasPath()) {
|
||||
title += " - Project " + hex::limitStringLength(ProjectFile::getPath().stem().string(), 32);
|
||||
|
||||
if (ImHexApi::Provider::isDirty())
|
||||
title += " (*)";
|
||||
|
||||
} else if (ImHexApi::Provider::isValid()) {
|
||||
auto provider = ImHexApi::Provider::get();
|
||||
if (!windowTitle.empty() && provider != nullptr) {
|
||||
title += " - " + hex::limitStringLength(windowTitle, 32);
|
||||
if (provider != nullptr) {
|
||||
title += " - " + hex::limitStringLength(provider->getName(), 32);
|
||||
|
||||
if (provider->isDirty())
|
||||
title += " (*)";
|
||||
|
@ -177,7 +183,7 @@ namespace hex {
|
|||
Window::~Window() {
|
||||
EventManager::unsubscribe<EventProviderDeleted>(this);
|
||||
EventManager::unsubscribe<RequestCloseImHex>(this);
|
||||
EventManager::unsubscribe<RequestChangeWindowTitle>(this);
|
||||
EventManager::unsubscribe<RequestUpdateWindowTitle>(this);
|
||||
EventManager::unsubscribe<EventAbnormalTermination>(this);
|
||||
EventManager::unsubscribe<RequestOpenPopup>(this);
|
||||
|
||||
|
|
|
@ -44,17 +44,14 @@ namespace hex::plugin::builtin {
|
|||
|
||||
EventManager::subscribe<EventProviderChanged>([](hex::prv::Provider *oldProvider, hex::prv::Provider *newProvider) {
|
||||
hex::unused(oldProvider);
|
||||
hex::unused(newProvider);
|
||||
|
||||
if (newProvider != nullptr && newProvider->isAvailable()) {
|
||||
EventManager::post<RequestChangeWindowTitle>(newProvider->getName());
|
||||
} else {
|
||||
EventManager::post<RequestChangeWindowTitle>("");
|
||||
}
|
||||
EventManager::post<RequestUpdateWindowTitle>();
|
||||
});
|
||||
|
||||
EventManager::subscribe<EventProviderOpened>([](hex::prv::Provider *provider) {
|
||||
if (provider != nullptr && ImHexApi::Provider::get() == provider)
|
||||
EventManager::post<RequestChangeWindowTitle>(provider->getName());
|
||||
EventManager::post<RequestUpdateWindowTitle>();
|
||||
});
|
||||
|
||||
EventManager::subscribe<RequestOpenFile>(openFile);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
#include <hex/ui/view.hpp>
|
||||
#include <hex/api/project_file_manager.hpp>
|
||||
#include <hex/helpers/logger.hpp>
|
||||
|
||||
|
||||
namespace hex::plugin::builtin {
|
||||
|
@ -15,8 +16,12 @@ namespace hex::plugin::builtin {
|
|||
}
|
||||
|
||||
void saveProject() {
|
||||
if (!ProjectFile::store()) {
|
||||
View::showErrorPopup("hex.builtin.popup.error.project.save"_lang);
|
||||
if (ImHexApi::Provider::isValid() && ProjectFile::hasPath()) {
|
||||
if (!ProjectFile::store()) {
|
||||
View::showErrorPopup("hex.builtin.popup.error.project.save"_lang);
|
||||
} else {
|
||||
log::debug("Project saved");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ namespace hex::plugin::builtin {
|
|||
openProject();
|
||||
}
|
||||
|
||||
if (ImGui::MenuItem("hex.builtin.menu.file.save_project"_lang, "ALT + S", false, providerValid && provider->isWritable() && ProjectFile::hasPath())) {
|
||||
if (ImGui::MenuItem("hex.builtin.menu.file.save_project"_lang, "ALT + S", false, providerValid && ProjectFile::hasPath())) {
|
||||
saveProject();
|
||||
}
|
||||
|
||||
|
|
|
@ -500,6 +500,15 @@ namespace hex::plugin::builtin {
|
|||
}
|
||||
});
|
||||
|
||||
// clear project context if we go back to the welcome screen
|
||||
EventManager::subscribe<EventProviderChanged>([](hex::prv::Provider *oldProvider, hex::prv::Provider *newProvider) {
|
||||
hex::unused(oldProvider);
|
||||
if (newProvider == nullptr) {
|
||||
ProjectFile::clearPath();
|
||||
EventManager::post<RequestUpdateWindowTitle>();
|
||||
}
|
||||
});
|
||||
|
||||
ContentRegistry::Interface::addMenuItem("hex.builtin.menu.file", 1075, [&] {
|
||||
if (ImGui::BeginMenu("hex.builtin.menu.file.open_recent"_lang, !s_recentProvidersUpdating && !s_recentProviders.empty())) {
|
||||
// Copy to avoid changing list while iteration
|
||||
|
|
Loading…
Reference in New Issue