mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Renaming webui_wv_set_headless to webui_wv_set_frameless
This commit is contained in:
parent
5415b19b5f
commit
16aec7e181
@ -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.
|
||||
|
15
src/webui.c
15
src/webui.c
@ -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
|
||||
if (win->webview_frameless) {
|
||||
// Frameless mode
|
||||
style = WS_POPUP | WS_VISIBLE;
|
||||
// TODO: Make Win32 WebView with CSS drag feature.
|
||||
}
|
||||
|
||||
win->webView->hwnd = CreateWindowExA(
|
||||
|
Loading…
x
Reference in New Issue
Block a user