mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Updating example - public_network_access
* Allowing public URL to be updated on refresh
This commit is contained in:
parent
5f33f70d64
commit
efe64ba0af
@ -21,6 +21,16 @@ void public_window_events(webui_event_t* e) {
|
||||
}
|
||||
}
|
||||
|
||||
void private_window_events(webui_event_t* e) {
|
||||
if (e->event_type == WEBUI_EVENT_CONNECTED) {
|
||||
// Get URL of public window
|
||||
const char* public_win_url = webui_get_url(public_window);
|
||||
char javascript[1024];
|
||||
sprintf(javascript, "document.getElementById('urlSpan').innerHTML = '%s';", public_win_url);
|
||||
webui_run(private_window, javascript);
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
// Main Private Window HTML
|
||||
@ -96,17 +106,12 @@ int main() {
|
||||
webui_set_public(public_window, true); // Make URL accessible from public networks
|
||||
webui_bind(public_window, "", public_window_events); // Bind all events
|
||||
webui_show_browser(public_window, public_html, NoBrowser); // Set public window HTML
|
||||
const char* public_win_url = webui_get_url(public_window); // Get URL of public window
|
||||
|
||||
// Main Private Window
|
||||
// Private Window
|
||||
webui_bind(private_window, "", private_window_events); // Run JS
|
||||
webui_bind(private_window, "Exit", app_exit); // Bind exit button
|
||||
webui_show(private_window, private_html); // Show the window
|
||||
|
||||
// Set URL in the UI
|
||||
char javascript[1024];
|
||||
sprintf(javascript, "document.getElementById('urlSpan').innerHTML = '%s';", public_win_url);
|
||||
webui_run(private_window, javascript);
|
||||
|
||||
// Wait until all windows get closed
|
||||
webui_wait();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user