webui
webui copied to clipboard
Use any web browser or WebView as GUI, with your preferred language in the backend and HTML5 in the frontend, all in a lightweight portable lib.
```py webui.set_timeout(0) window = webui.Window() window.show(" Window 1 - You have 5 seconds to manually close me... ") sleep(5) window.close() # Tell WebUI `webui.wait()` to wait 3 seconds after close...
I have the html: ``` const char html[] = R"( My First HTML Page My First Heading This is my first paragraph. )"; ``` When I do: ``` size_t my_window...
I was using set_icon in 2 ways (png and svg) but the icon isn't change. It is still the default.  How to change it? ` const char* myIcon =...
Reopen window by webui_close and webui_show, works on v2.4.2 but nothing happens on latest code (and v2.5). Attachments are log info. The text without [xxx] tag is the communication message...
So, this adds the talked about package support for conan and in theory this should work. However, when I tried using the package it spit out linker errors (tried with...
We know that browsers kill the WebSocket connection if no activity after 2 minutes, so, WebUI get around that by sending a ping every 30 seconds. However, now, seems like...
Hi! I was wondering if there's any plan to support disabling DevTools (e.g., F12, Ctrl+Shift+I, etc.) when running in webview mode in the future? I know there are some workarounds...
When the window is set to be transparent using webui_set_transparent, and the window is maximized, some events (such as click events) occasionally "fall through" the WebUI window and are captured...
Could a Java/Kotlin wrapper over this library be implemented?