Renaming webui_wv_set_headless to webui_wv_set_frameless

This commit is contained in:
Hassan DRAGA 2025-03-15 15:56:59 -04:00
parent 5415b19b5f
commit 16aec7e181
2 changed files with 13 additions and 12 deletions

View File

@ -875,14 +875,14 @@ WEBUI_EXPORT void webui_set_config(webui_config option, bool status);
WEBUI_EXPORT void webui_set_event_blocking(size_t window, bool status);
/**
* @brief Make a WebView window headless.
* @brief Make a WebView window frameless.
*
* @param window The window number
* @param status The headless status `true` or `false`
* @param status The frameless status `true` or `false`
*
* @example webui_wv_set_headless(myWindow, true);
* @example webui_wv_set_frameless(myWindow, true);
*/
WEBUI_EXPORT void webui_wv_set_headless(size_t window, bool status);
WEBUI_EXPORT void webui_wv_set_frameless(size_t window, bool status);
/**
* @brief Get the HTTP mime type of a file.

View File

@ -361,7 +361,7 @@ typedef struct _webui_window_t {
bool allow_webview;
bool allow_browser;
bool update_webview;
bool headless_webview;
bool webview_frameless;
webui_mutex_t mutex_webview_update;
webui_condition_t condition_webview_update;
#ifdef _WIN32
@ -2502,10 +2502,10 @@ void webui_set_config(webui_config option, bool status) {
}
}
void webui_wv_set_headless(size_t window, bool status) {
void webui_wv_set_frameless(size_t window, bool status) {
#ifdef WEBUI_LOG
printf("[User] webui_wv_set_headless([%zu], [%d])\n", window, status);
printf("[User] webui_wv_set_frameless([%zu], [%d])\n", window, status);
#endif
// Initialization
@ -2516,7 +2516,7 @@ void webui_wv_set_headless(size_t window, bool status) {
return;
_webui_window_t* win = _webui.wins[window];
win->headless_webview = status;
win->webview_frameless = status;
}
void webui_set_event_blocking(size_t window, bool status) {
@ -11302,11 +11302,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
WEBUI_THREAD_RETURN
}
// Set window style based on headless flag
// Set window style based on frameless flag
DWORD style = WS_OVERLAPPEDWINDOW;
if (win->headless_webview) {
// Headless mode
style = WS_POPUP | WS_VISIBLE;
if (win->webview_frameless) {
// Frameless mode
style = WS_POPUP | WS_VISIBLE;
// TODO: Make Win32 WebView with CSS drag feature.
}
win->webView->hwnd = CreateWindowExA(