2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-23 05:12:05 +00:00

feat: add modman title handler for windows

This commit is contained in:
Jan Laupetin
2025-10-31 21:15:17 +01:00
parent 87d65b99fb
commit b1bd9b9ffc
3 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
#include "AssetHandlerWindows.h"
#if defined(WEBVIEW_PLATFORM_WINDOWS) && defined(WEBVIEW_EDGE)
#include "PlatformUtilsWindows.h"
#include "Web/UiAssets.h"
#include <Windows.h>
#include <format>
#include <iostream>
#include <sstream>
#include <webview/detail/backends/win32_edge.hh>
#include <wrl/event.h>
using namespace PLATFORM_NAMESPACE_WINDOWS;
namespace
{
HRESULT HandleTitleChanged(ICoreWebView2* core, HWND window)
{
LPWSTR title;
if (!SUCCEEDED(core->get_DocumentTitle(&title)))
{
std::cerr << "Failed to get title\n";
return S_FALSE;
}
SetWindowTextW(window, title);
CoTaskMemFree(title);
return S_OK;
}
} // namespace
namespace PLATFORM_NAMESPACE_WINDOWS
{
void InstallTitleHandler(webview::webview& wv)
{
const auto controller = static_cast<ICoreWebView2Controller*>(wv.browser_controller().value());
auto window = static_cast<HWND>(wv.window().value());
Microsoft::WRL::ComPtr<ICoreWebView2> core;
if (!SUCCEEDED(controller->get_CoreWebView2(&core)))
{
std::cerr << "Failed to get webview\n";
return;
}
EventRegistrationToken token;
if (!SUCCEEDED(core->add_DocumentTitleChanged(Microsoft::WRL::Callback<ICoreWebView2DocumentTitleChangedEventHandler>(
[window](ICoreWebView2* sender, IUnknown* args) -> HRESULT
{
return HandleTitleChanged(sender, window);
})
.Get(),
&token)))
{
std::cerr << "Failed to add title handler\n";
}
}
} // namespace PLATFORM_NAMESPACE_WINDOWS
#endif