WebUI v2.0.7

* Switch from GPL to LGPL
* Deno example is ready
* Adding `void _webui_free_all_mem()` to release all dynamic mem at exit
* Break Change `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char* data)` to `void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char** data)`
* Updating readme
* Moving Zig build file into build folder

More code cleaning and more examples is needed before we release the version 2.0.7.
This commit is contained in:
Albert Shown 2023-03-21 18:47:19 -04:00
parent 58a1da7487
commit 1a1e4c7a00
69 changed files with 1164 additions and 1151 deletions

1086
LICENSE

File diff suppressed because it is too large Load Diff

View File

@ -24,6 +24,14 @@
- Multi-platform & Multi-Browser
- Using private profile for safety
## CppCon 2019 Presentation
[Borislav Stanimirov](https://ibob.bg/) discusses using HTML5 in the web browser as GUI at the [C++ conference 2019](https://cppcon.org/).
<div align="center">
<a href="https://www.youtube.com/watch?v=bbbcZd4cuxg"><img src="https://img.youtube.com/vi/bbbcZd4cuxg/0.jpg" alt="Embrace Modern Technology: Using HTML 5 for GUI in C++ - Borislav Stanimirov - CppCon 2019"></a>
</div>
## UI & The Web Technologies
Web application UI design is not just about how a product looks but how it works. Using web technologies in your UI makes your product modern and professional, And a well-designed web application will help you make a solid first impression on potential customers. Great web application design also assists you in nurturing leads and increasing conversions. In addition, it makes navigating and using your web app easier for your users.
@ -32,15 +40,19 @@ Web application UI design is not just about how a product looks but how it works
Today's web browsers have everything a modern UI needs. Web browsers are very sophisticated and optimized. Therefore, using it as a GUI will be an excellent choice. While old legacy GUI lib is complex and outdated, a WebView-based app is still an option. However, a WebView needs a huge SDK to build and many dependencies to run, and it can only provide some features like a real web browser. That is why WebUI uses real web browsers to give you full features of comprehensive web technologies while keeping your software lightweight and portable.
## Comparison
## How does it work?
![ScreenShot](webui_diagram.png)
Think of WebUI like a WebView controller, but instead of embedding the WebView controller in your program, which makes the final program big in size and non-portable as it needs the WebView runtimes. Instead, using WebUI, you use a tiny static/dynamic library to run any installed web browser and use it as GUI by communicating with it using a WebSocket, which makes your program small, fast, and portable. **All it needs is a web browser**.
## Runtime Dependencies
| | WebView | Qt | WebUI |
| ------ | ------ | ------ | ------ |
| Dependencies on Windows | *Windows APIs, WebView2* | *QtCore, QtGui, QtWidgets* | *No need* |
| Dependencies on Linux | *GTK3, WebKitGTK* | *QtCore, QtGui, QtWidgets* | *No need* |
| Dependencies on macOS | *Cocoa, WebKit* | *QtCore, QtGui, QtWidgets* | *No need* |
| Runtime Dependencies on Windows | *WebView2* | *QtCore, QtGui, QtWidgets* | *Any Web Browser* |
| Runtime Dependencies on Linux | *GTK3, WebKitGTK* | *QtCore, QtGui, QtWidgets* | *Any Web Browser* |
| Runtime Dependencies on macOS | *Cocoa, WebKit* | *QtCore, QtGui, QtWidgets* | *Any Web Browser* |
## Documentation
@ -61,7 +73,8 @@ Today's web browsers have everything a modern UI needs. Web browsers are very so
- [Rust](https://github.com/alifcommunity/webui/tree/main/examples/Rust/hello_world)
- [V - malisipi/vwebui](https://github.com/malisipi/vwebui/tree/main/examples)
- [Nim - neroist/webui](https://github.com/neroist/webui/tree/main/examples)
- [Zig](https://github.com/alifcommunity/webui/tree/main/examples/Zig)
## Supported Browser
| OS | Browser | Status |
@ -88,6 +101,7 @@ Today's web browsers have everything a modern UI needs. Web browsers are very so
| Rust | ✔️ | [examples/Rust](https://github.com/alifcommunity/webui/tree/main/examples/Rust) |
| V | ✔️ | [malisipi/vwebui](https://github.com/malisipi/vwebui) |
| Nim | ✔️ | [neroist/webui](https://github.com/neroist/webui) |
| Zig | ✔️ | [examples/Zig](https://github.com/alifcommunity/webui/tree/main/examples/Zig) |
### License

View File

@ -0,0 +1,25 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const lib = b.addStaticLibrary(.{
.name = "webui",
.target = target,
.optimize = optimize,
});
lib.addCSourceFiles(&.{
"src/webui.c",
"src/mongoose.c",
}, &.{""});
lib.linkLibC();
lib.addIncludePath("include");
lib.installHeadersDirectory("include", "");
lib.install();
if (target.isWindows()) {
lib.linkSystemLibrary("ws2_32");
}
}

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C++ Example
# Linux - Clang

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C++ Example
# Linux - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C++ Example
# Windows - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C++ Example
# Windows - Microsoft Visual C

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C++ Visual Studio Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
extern "C" {

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C++ Visual Studio Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
extern "C" {

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C++ Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
extern "C"{

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - Clang

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Microsoft Visual C

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Tiny C Compiler

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C99 Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// Note:

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - Clang

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Microsoft Visual C

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Tiny C Compiler

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C99 Visual Studio Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C99 Visual Studio Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C99 Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - Clang

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Microsoft Visual C

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Tiny C Compiler

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
C99 Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - Clang

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Linux - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - GCC

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Microsoft Visual C

View File

@ -1,4 +1,4 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# C99 Example
# Windows - Tiny C Compiler

View File

@ -1,6 +1,6 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
Serve a Folder Example
@ -8,7 +8,7 @@
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// Note:

View File

@ -112,5 +112,5 @@ func main() {
// Loop
webui.Wait()
fmt.Println("Bye.")
fmt.Println("Thank you.")
}

View File

@ -1,12 +1,12 @@
package webui
// WebUI Library 2.0.6
// WebUI Library 2.0.7
//
// http://webui.me
// https://github.com/alifcommunity/webui
//
// Licensed under GNU General Public License v3.0.
// Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
// Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
/*
// [?] Change the library path as you need

View File

@ -1,12 +1,12 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# Python Example
#
# http://webui.me
# https://github.com/alifcommunity/webui
#
# Licensed under GNU General Public License v3.0.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
# This script is for debugging & development of the WebUI Python wrapper
# The source code is located at 'webui/packages/PyPI/src/webui/webui.py'

View File

@ -1,12 +1,12 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# Python Example
#
# http://webui.me
# https://github.com/alifcommunity/webui
#
# Licensed under GNU General Public License v3.0.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
# Install WebUI
# pip install --upgrade webui2
@ -106,7 +106,7 @@ def main():
# Wait until all windows are closed
webui.wait()
print('Bye.')
print('Thank you.')
if __name__ == "__main__":
main()

View File

@ -1,12 +1,12 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# Python Example
#
# http://webui.me
# https://github.com/alifcommunity/webui
#
# Licensed under GNU General Public License v3.0.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
# Install WebUI
# pip install --upgrade webui2
@ -16,4 +16,4 @@ from webui import webui
MyWindow = webui.window()
MyWindow.show('<html>Hello World</html>')
webui.wait()
print('Bye.')
print('Thank you.')

View File

@ -1,12 +1,12 @@
# WebUI Library 2.x
# WebUI Library 2.0.7
# Python Example
#
# http://webui.me
# https://github.com/alifcommunity/webui
#
# Licensed under GNU General Public License v3.0.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
# Install WebUI
# pip install --upgrade webui2
@ -48,7 +48,7 @@ def main():
# <script src="webui.js"></script>
# ---------------------------
print('Bye.')
print('Thank you.')
if __name__ == "__main__":
main()

View File

@ -1,11 +1,11 @@
/*
WebUI Library 2.0.6
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
fn main() {

View File

@ -1,11 +1,11 @@
/*
WebUI Library 2.0.6
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// Flags
@ -287,6 +287,7 @@ extern "C" {
window_id: ::std::os::raw::c_uint,
element_name: *mut ::std::os::raw::c_char,
window: *mut webui_window_t,
// TODO: Add char*, char**
),
>,
) -> ::std::os::raw::c_uint;
@ -298,7 +299,7 @@ extern "C" {
timeout: ::std::os::raw::c_uint,
error: *mut bool,
length: *mut ::std::os::raw::c_uint,
data: *mut ::std::os::raw::c_char,
data: *mut ::std::os::raw::c_char, // TODO: Change this from char* to char**
);
}
extern "C" {

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
Rust Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
mod Webui;
@ -81,5 +81,5 @@ fn main() {
// Wait until all windows get closed
Webui::Wait();
println!("Bye.");
println!("Thank you.");
}

View File

@ -1,18 +1,16 @@
### Deno Server
This example shows how to create a web server using Deno and run a simple system command to run a basic WebUI application to open a window.
This example shows how to show a simple WebUI window using a Deno-Web-Server.
1. Download and [Install Deno](https://github.com/denoland/deno/releases) (*Or just copy deno binary file into this folder*)
2. Build WebUI Library (*[instructions](https://github.com/alifcommunity/webui/tree/main/build)*)
3. Build `window.c` using any C compiler (*[instructions](https://github.com/alifcommunity/webui/tree/main/examples/C)*)
3. Run `deno run --allow-all server.ts`
2. Download WebUI pre-built Library (*[webui.me](https://webui.me/)*)
3. Run `deno run --allow-all --unstable deno_server.ts`
Folder structure example (*Windows*)
[My Folder]
* deno.exe (if not installed)
* window.exe
* server.ts
* deno_server.ts --> Import webui.ts -> Load `webui-2-x64` library
* file1.js
* file2.ts
* ...

View File

@ -0,0 +1,48 @@
/*
WebUI Library 2.0.7
TypeScript Deno-Server Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// Run this script by:
// deno run --allow-all --unstable deno_server.ts
// Import WebUI module
import * as webui from "../module/webui.ts";
// Import Deno Server Module
import { serve } from "https://deno.land/std@0.158.0/http/server.ts";
// Optional - Set a custom library path:
// const lib_full_path = '../../../../build/Windows/MSVC/webui-2-x64.dll';
// console.log("Optional: Looking for the WebUI dynamic library at: " + lib_full_path);
// webui.set_lib_path(lib_full_path);
// Deno Server Listener
const port = 8080;
const url = "http://localhost:" + 8080;
const handler = (request: Request): Response => {
const body = `This is a Deno-Web-Server example. Your user-agent is:\n\n${
request.headers.get("user-agent") ?? "Unknown"
}`;
return new Response(body, { status: 200 });
};
serve(handler, { port });
// Create new window
const my_window = webui.new_window();
// Show the window
if(!webui.open(my_window, url, webui.browser.chrome))
webui.open(my_window, url, webui.browser.any);
// Wait until all windows get closed
await webui.wait();
// The window is closed.
console.log('Thank you.');
Deno.exit(0);

View File

@ -1,32 +0,0 @@
// Modules
import { serve } from "https://deno.land/std@0.158.0/http/server.ts";
// Config
const port = 8080;
const url = "http://localhost:" + 8080;
// Server Listener
const handler = (request: Request): Response => {
const body = `Your user-agent is:\n\n${
request.headers.get("user-agent") ?? "Unknown"
}`;
return new Response(body, { status: 200 });
};
// Create a web server using Deno
serve(handler, { port });
// Run the WebUI example application to open a new window
const cmd = Deno.run({
cmd: ["cmd", "/c", "window", url],
stdout: "piped",
stderr: "piped"
});
const output = await cmd.output() // "piped" must be set
cmd.close();
// The window is closed.
console.log('Bye.');
Deno.exit(0);

View File

@ -1,35 +0,0 @@
/*
WebUI Library 2.x
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
*/
#include "webui.h"
int main(int argc, char* argv[]) {
// argc should be exactly 2
if(argc != 2)
return 1;
// Get the Nodejs server url
const char *url = argv[1];
// Create a new window
webui_window_t* my_window;
my_window = webui_new_window();
// Show the window
if(!webui_open(my_window, url, webui.browser.chrome)) // Run the window on Chrome
webui_open(my_window, url, webui.browser.any); // If not, run on any other installed web browser
// Wait until all windows get closed
webui_wait();
return 0;
}

View File

@ -1,68 +0,0 @@
/*
WebUI Library 2.x
TypeScript Dynamic Lib Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
*/
import * as webui from "./webui.ts";
// Optional: Set the library path
webui.set_lib_path('../../../../build/Windows/MSVC/webui-2-x64.dll');
function check_password() {
console.log("You clicked on the check password button...");
// ...
}
const my_html = `
<!DOCTYPE html>
<html>
<head>
<title>WebUI 2 - Deno Dynamic Lib Example</title>
<style>
body {
color: white;
background: #0F2027;
background: -webkit-linear-gradient(to right, #101314, #0f1c20, #061f2a);
background: linear-gradient(to right, #101314, #0f1c20, #061f2a);
text-align: center;
font-size: 18px;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>WebUI 2 - Deno Dynamic Lib Example</h1>
<br>
<input type="password" id="MyInput" OnKeyUp="document.getElementById('err').innerHTML='&nbsp;';" autocomplete="off">
<br>
<h3 id="err" style="color: #dbdd52">&nbsp;</h3>
<br>
<button id="CheckPassword">Check Password</button> - <button id="Exit">Exit</button>
</body>
</html>
`;
// Create new window
const my_window = webui.new_window();
// Bind
webui.bind(my_window, "Exit", function(){
console.log("You clicked on the exit button...");
webui.exit();
});
webui.bind(my_window, "CheckPassword", check_password);
// Show the window
if(!webui.show(my_window, my_html, webui.browser.chrome))
webui.show(my_window, my_html, webui.browser.any);
// Wait until all windows get closed
await webui.wait();
console.log("Bye");

View File

@ -1,163 +0,0 @@
// WebUI Library 2.0.6
//
// http://webui.me
// https://github.com/alifcommunity/webui
//
// Licensed under GNU General Public License v3.0.
// Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
import { existsSync } from "https://deno.land/std/fs/mod.ts";
const version = '2.0.6';
const encoder = new TextEncoder();
const decoder = new TextDecoder();
let lib_loaded = false;
var webui_lib;
export const browser = {};
browser.any = 0;
browser.chrome = 1;
browser.firefox = 2;
browser.edge = 3;
const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
var fun_list:number[][]
interface event {
element_id: number;
window_id: number;
element_name_ptr: string;
win: Deno.Pointer;
}
// Determine the library name based
// on the current OS
var lib_name;
if (Deno.build.os === 'windows')
lib_name = 'webui-2-x64x.dll';
if (Deno.build.os === 'linux')
lib_name = 'webui-2-x64x.so';
else
lib_name = 'webui-2-x64x.dyn';
// Full path to the library name
var lib_path = './' + lib_name;
// Check if a file exist
function is_file_exist(path): boolean {
return existsSync(path);
}
// Convert String to C-String
function string_to_uint8array(value: string) {
return encoder.encode(value + '\0');
}
// Convert C-String to String
function uint8array_to_string(value: ArrayBuffer) {
return decoder.decode(value);
}
// Load the library
function load_lib() {
if(lib_loaded)
return;
// Check if the library file exist
if(!is_file_exist(lib_path)) {
console.log('WebUI Error: File not found (' + lib_path + ')');
Deno.exit(1);
}
// Load the library
// FFI
webui_lib = Deno.dlopen(
lib_path,
{
webui_wait: {
parameters: [],
result: 'void',
nonblocking: false,
},
webui_new_window: {
parameters: [],
result: 'pointer',
nonblocking: false,
},
webui_show: {
parameters: ['pointer', 'buffer', 'u32'],
result: 'i32',
nonblocking: false,
},
webui_bind_interface: {
parameters: ['pointer', 'buffer', 'function'],
result: 'u32',
nonblocking: false,
},
webui_is_app_running: {
parameters: [],
result: 'i32',
nonblocking: false,
},
webui_exit: {
parameters: [],
result: 'void',
nonblocking: false,
},
} as const,
);
// Make sure we don't load twice
lib_loaded = true;
}
export function set_lib_path(path) {
lib_path = path;
}
export function new_window() : number {
load_lib();
return webui_lib.symbols.webui_new_window();
}
export function show(win, html, browser) : number {
load_lib();
return webui_lib.symbols.webui_show(win, string_to_uint8array(html), browser);
}
export function exit() {
load_lib();
webui_lib.symbols.webui_exit();
}
export async function wait() {
load_lib();
while(true) {
await sleep(100);
if(!webui_lib.symbols.webui_is_app_running())
break;
}
}
export function bind(win, element, func) : number {
load_lib();
const callbackResource = new Deno.UnsafeCallback(
{
parameters: ['u32', 'u32', 'pointer', 'pointer'],
result: 'void',
} as const,
(
element_id: Deno.u32,
window_id: Deno.u32,
element_name_ptr: Deno.PointerValue,
win: Deno.Pointer,
) => {
const element_name = new Deno.UnsafePointerView(BigInt(element_name_ptr)).getCString();
const e: event = {
element_id: element_id,
window_id: window_id,
element_name: element_name,
win: win,
};
func(e);
},
);
webui_lib.symbols.webui_bind_interface(win, string_to_uint8array(element), callbackResource.pointer);
return 0;
}

View File

@ -0,0 +1,13 @@
### Deno Server
This example shows how to use the WebUI Dynamic Library in Deno.
1. Download and [Install Deno](https://github.com/denoland/deno/releases) (*Or just copy deno binary file into this folder*)
2. Download WebUI pre-built Library (*[webui.me](https://webui.me/)*)
3. Run `deno run --allow-all --unstable hello_world.ts`
Folder structure example (*Windows*)
[My Folder]
* deno.exe (if not installed)
* hello_world.ts --> Import webui.ts -> Load `webui-2-x64` library

View File

@ -0,0 +1,108 @@
/*
WebUI Library 2.0.7
TypeScript Deno Hello World Example
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// Run this script by:
// deno run --allow-all --unstable hello_world.ts
// Import WebUI module
import * as webui from "../module/webui.ts";
// Optional - Set a custom library path:
// const lib_full_path = '../../../../build/Windows/MSVC/webui-2-x64.dll';
// console.log("Optional: Looking for the WebUI dynamic library at: " + lib_full_path);
// webui.set_lib_path(lib_full_path);
const my_html = `
<!DOCTYPE html>
<html>
<head>
<title>WebUI 2 - Deno Hello World Example</title>
<style>
body {
color: white;
background: #101314;
background: linear-gradient(to right, #101314, #0f1c20, #061f2a);
text-align: center;
font-size: 16px;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>WebUI 2 - Deno Hello World Example</h1><br>
A: <input id="MyInputA" value="4"><br><br>
B: <input id="MyInputB" value="6"><br><br>
<div id="Result" style="color: #dbdd52">A + B = ?</div><br><br>
<button id="Calculate">Calculate</button> - <button id="Exit">Exit</button>
<script>
function get_A() {
return parseInt(document.getElementById('MyInputA').value);
}
function get_B() {
return parseInt(document.getElementById('MyInputB').value);
}
function set_result(res) {
document.getElementById("Result").innerHTML = 'A + B = ' + res;
}
</script>
</body>
</html>
`;
function calculate(e : webui.event) {
// Create a JS struct
const MyJS: webui.js = {
Script: "",
Timeout: 0,
};
// Call JS function `get_A()`
MyJS.Script = "return get_A();";
webui.run(e.win, MyJS);
const A = MyJS.Data;
// Check for error
if(MyJS.Error) {
console.log("Error in the JavaScript: " + MyJS.Data);
}
// Call JS function `get_B()`
MyJS.Script = "return get_B();";
webui.run(e.win, MyJS);
const B = MyJS.Data;
const C : Number = parseInt(A) + parseInt(B);
// Set the result
MyJS.Script = "set_result(" + C + ");";
webui.run(e.win, MyJS);
}
// Create new window
const my_window = webui.new_window();
// Bind
webui.bind(my_window, "Calculate", calculate);
webui.bind(my_window, "Exit", function(e : webui.event) {
// Close all windows and exit
webui.exit();
});
// Show the window
if(!webui.show(my_window, my_html, webui.browser.chrome))
webui.show(my_window, my_html, webui.browser.any);
// Wait until all windows get closed
await webui.wait();
console.log("Thank you.");

View File

@ -0,0 +1,293 @@
// WebUI Library 2.0.7
//
// http://webui.me
// https://github.com/alifcommunity/webui
//
// Licensed under GNU General Public License v3.0.
// Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
import { existsSync } from "https://deno.land/std/fs/mod.ts";
// import { readCString } from "https://deno.land/std/c/strings/mod.ts";
const version = '2.0.7';
const encoder = new TextEncoder();
const decoder = new TextDecoder();
let lib_loaded = false;
let webui_lib;
let fun_list:number[][];
export const browser = {};
browser.any = 0;
browser.chrome = 1;
browser.firefox = 2;
browser.edge = 3;
browser.safari = 4;
browser.chromium = 5;
const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
export interface event {
element_id: number;
window_id: number;
element_name_ptr: string;
win: Deno.Pointer;
data: string;
}
export interface js {
Timeout: number;
Script: string;
Error: boolean;
Length: number;
Data: string;
}
// Determine the library name based
// on the current operating system
let lib_name : string;
let os_sep : string;
if (Deno.build.os === 'windows') {
lib_name = 'webui-2-x64.dll';
os_sep = '\\';
}
else if (Deno.build.os === 'linux') {
lib_name = 'webui-2-x64.so';
os_sep = '/';
}
else {
lib_name = 'webui-2-x64.dyn';
os_sep = '/';
}
// Full path to the library name
let lib_path = './' + lib_name;
// Check if a file exist
function is_file_exist(path : string): boolean {
// TODO: existsSync() is deprecated
return existsSync(path);
}
// Convert String to C-String
function string_to_uint8array(value: string) : Uint8Array {
return encoder.encode(value + '\0');
}
// Get current folder path
function get_current_module_path() : string {
const __dirname = new URL('.', import.meta.url).pathname;
let directory = String(__dirname);
if (Deno.build.os === 'windows') {
// Remove '/'
let buf = directory.substring(1);
directory = buf;
// Replace '/' by '\'
buf = directory.replaceAll('/', os_sep);
directory = buf;
}
return directory;
}
// Convert C-String to String
function uint8array_to_string(value: ArrayBuffer) : string {
return decoder.decode(value);
}
// Load the library
function load_lib() {
if(lib_loaded)
return;
// Check if the library file exist
if(!is_file_exist(lib_path)) {
let lib_path_cwd = get_current_module_path() + lib_name;
if(!is_file_exist(lib_path_cwd)) {
console.log('WebUI Error: File not found (' + lib_path + ') or (' + lib_path_cwd + ')');
Deno.exit(1);
}
lib_path = lib_path_cwd;
}
console.log('Load the library = [' + lib_path + ']');
// Load the library
// FFI
webui_lib = Deno.dlopen(
lib_path,
{
webui_wait: {
parameters: [],
result: 'void',
nonblocking: false,
},
webui_new_window: {
parameters: [],
result: 'pointer',
nonblocking: false,
},
webui_show: {
parameters: ['pointer', 'buffer', 'u32'],
result: 'i32',
nonblocking: false,
},
webui_open: {
parameters: ['pointer', 'buffer', 'u32'],
result: 'i32',
nonblocking: false,
},
webui_bind_interface: {
parameters: ['pointer', 'buffer', 'function'],
result: 'u32',
nonblocking: false,
},
webui_is_app_running: {
parameters: [],
result: 'i32',
nonblocking: false,
},
webui_exit: {
parameters: [],
result: 'void',
nonblocking: false,
},
webui_script_interface: {
parameters: ['pointer', 'buffer', 'u32', 'buffer', 'buffer', 'buffer'],
result: 'void',
nonblocking: false,
},
webui_clean_mem: {
parameters: ['pointer'],
result: 'void',
nonblocking: false,
},
} as const,
);
// Make sure we don't load twice
lib_loaded = true;
}
export function set_lib_path(path) {
lib_path = path;
}
export function new_window() : number {
load_lib();
return webui_lib.symbols.webui_new_window();
}
export function show(win, html, browser) : number {
load_lib();
return webui_lib.symbols.webui_show(win, string_to_uint8array(html), browser);
}
export function open(win, url, browser) : number {
load_lib();
return webui_lib.symbols.webui_open(win, string_to_uint8array(url), browser);
}
export function exit() {
load_lib();
webui_lib.symbols.webui_exit();
Deno.exit(0);
}
export async function wait() {
load_lib();
while(true) {
await sleep(250);
if(!webui_lib.symbols.webui_is_app_running())
break;
}
}
export function run(win : number, javascript : js) {
load_lib();
// Buffers
const bool_buffer = new Uint8Array(1); // 1 byte bool
const integer_buffer = new Uint8Array(4); // 4 bytes integer
const pointer_buffer = new Uint8Array(8); // 8 bytes pointer (x64)
// Execute the script
webui_lib.symbols.webui_script_interface(win, string_to_uint8array(javascript.Script), javascript.Timeout, bool_buffer, integer_buffer, pointer_buffer);
let error : Boolean = false;
let length : Number = 0;
let data : String = "";
// Resolve boolean
if(bool_buffer[0] === 0)
error = false;
else
error = true;
// Resolve number
length = Number(new Uint32Array(integer_buffer.buffer)[0]);
// Resolve string
const charPointer = Deno.UnsafePointer.create(BigInt(new BigUint64Array(pointer_buffer.buffer)[0]));
data = String(Deno.UnsafePointerView.getCString(charPointer, 0));
// Update
javascript.Error = error;
javascript.Length = length;
javascript.Data = data;
// Clean memory
webui_lib.symbols.webui_clean_mem(charPointer);
}
export function bind(win : number, element : string, func : Function) : number {
load_lib();
const callbackResource = new Deno.UnsafeCallback(
{
parameters: ['u32', 'u32', 'pointer', 'pointer', 'pointer', 'pointer'],
result: 'void',
} as const,
(
param_element_id: Deno.u32,
param_window_id: Deno.u32,
param_element_name_ptr: Deno.Pointer,
param_win: Deno.Pointer,
param_data: Deno.Pointer,
param_response: Deno.PointerValue,
) => {
// Create elements
const element_id = parseInt(param_element_id);
const window_id = parseInt(param_window_id);
const element_name = new Deno.UnsafePointerView(param_element_name_ptr).getCString();
const win = param_win;
const data = new Deno.UnsafePointerView(param_data).getCString();
// Create struct
const e: event = {
element_id: element_id,
window_id: window_id,
element_name: element_name,
win: win,
data: data,
};
// Call the user callback
const result = String(func(e));
// -- This code is by ChatGPT (AI) --------
const resultBytes = encoder.encode(result); // Convert the string to bytes
const buf = new Uint8Array(resultBytes.length + 1); // Allocate a buffer to hold the string
buf.set(resultBytes); // Copy the bytes of the string into the buffer
buf[resultBytes.length] = 0; // Set the null terminator
// ----------------------------------------
// 8 bytes ie. pointer size on a 64 bit machine, use BigUin64Array to get a writable and suitable view into it.
const response_writable = new BigUint64Array(Deno.UnsafePointerView.getArrayBuffer(param_response, 8));
// Write our string response buffer address into the `param_response` memory slot.
response_writable[0] = BigInt(Deno.UnsafePointer.value(Deno.UnsafePointer.of(buf)));
},
);
webui_lib.symbols.webui_bind_interface(win, string_to_uint8array(element), callbackResource.pointer);
return 0;
}

View File

@ -1,18 +0,0 @@
### WebUI Server
This example shows how to create a WebUI web server and use Deno runtimes to parse TypeScript and JavaScript files.
1. Download and [Install Deno](https://github.com/denoland/deno/releases) (*Or just copy deno binary file into this folder*)
2. Build WebUI Library (*[instructions](https://github.com/alifcommunity/webui/tree/main/build)*)
3. Build `example.c` using any C compiler (*[instructions](https://github.com/alifcommunity/webui/tree/main/examples/C)*)
Folder structure example (*Windows*)
[My Folder]
* deno.exe (if not installed)
* example.exe
* index.ts or index.js or index.html
* style.css
* file1.ts
* file2.js
* ...

View File

@ -1,8 +0,0 @@
export function add(a: number, b: number): number {
return a + b;
}
export function multiply(a: number, b: number): number {
return a * b;
}

View File

@ -1,42 +0,0 @@
/*
WebUI Library 2.x
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
*/
#include "webui.h"
int main() {
// Create a new window
webui_window_t* my_window;
my_window = webui_new_window();
// Chose your preferable runtime for .js files
// Deno: webui.runtime.deno
// Node.js: webui.runtime.nodejs
webui_script_runtime(my_window, webui.runtime.deno);
// Create a new web server using WebUI
const char* url = webui_new_server(my_window, "");
// Show the window
if(!webui_open(my_window, url, webui.browser.chrome)) // Run the window on Chrome
webui_open(my_window, url, webui.browser.any); // If not, run on any other installed web browser
// Wait until all windows get closed
webui_wait();
return 0;
}
#if defined(_MSC_VER)
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmdshow) {
main();
}
#endif

View File

@ -1,14 +0,0 @@
console.log(
"Welcome!, You are using a WebUI server.\nImporting arithmetic.ts module..."
);
import { add, multiply } from "./arithmetic.ts";
function totalCost(outbound: number, inbound: number, tax: number): number {
return multiply(add(outbound, inbound), tax);
}
console.log(totalCost(19, 31, 1.2));
console.log(totalCost(45, 27, 1.15));

View File

@ -25,6 +25,6 @@ ls.on('error', (error) => {
process.exit();
});
ls.on("close", code => {
console.log('Bye.');
console.log('Thank you.');
process.exit();
});

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,12 +1,12 @@
/*
WebUI Library 2.x
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#include "webui.h"

View File

@ -1,4 +1,4 @@
// WebUI Library 2.X
// WebUI Library 2.0.7
// Serve a Folder Example
pub fn main() void {

View File

@ -1,11 +1,11 @@
/*
WebUI Library 2.0.6
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Licensed under GNU Lesser General Public License v2.1.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
#ifndef _WEBUI_H
@ -17,7 +17,7 @@
#define EXPORT extern
#endif
#define WEBUI_VERSION "2.0.6" // Version
#define WEBUI_VERSION "2.0.7" // Version
#define WEBUI_HEADER_SIGNATURE 0xFF // All packets should start with this 8bit
#define WEBUI_HEADER_JS 0xFE // Javascript result in frontend
#define WEBUI_HEADER_CLICK 0xFD // Click event
@ -227,6 +227,7 @@ EXPORT bool webui_get_bool(webui_event_t* e);
EXPORT void webui_return_int(webui_event_t* e, int n);
EXPORT void webui_return_string(webui_event_t* e, char* s);
EXPORT void webui_return_bool(webui_event_t* e, bool b);
EXPORT void webui_clean_mem(void* p);
// -- Interface -----------------------
// Used by other languages to create WebUI wrappers
@ -238,7 +239,7 @@ typedef struct webui_script_interface_t {
const char* data;
} webui_script_interface_t;
EXPORT unsigned int webui_bind_interface(webui_window_t* win, const char* element, void (*func)(unsigned int, unsigned int, char*, webui_window_t*, char*, char**));
EXPORT void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char* data);
EXPORT void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char** data);
EXPORT void webui_script_interface_struct(webui_window_t* win, webui_script_interface_t* js_int);
// Core
@ -278,9 +279,9 @@ EXPORT void _webui_wait_process(webui_window_t* win, bool status);
EXPORT const char* _webui_generate_js_bridge(webui_window_t* win);
EXPORT void _webui_print_hex(const char* data, size_t len);
EXPORT void _webui_free_mem(void **p);
EXPORT void _webui_str_copy(char *destination, char *source);
EXPORT bool _webui_file_exist_mg(void *ev_data);
EXPORT bool _webui_file_exist(char* file);
EXPORT void _webui_free_all_mem();
#ifdef _WIN32
EXPORT DWORD WINAPI _webui_cb(LPVOID _arg);
EXPORT DWORD WINAPI _webui_run_browser_task(LPVOID _arg);

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "webui2"
version = "2.0.6"
version = "2.0.7"
authors = [
{ name="Hassan Draga" },
]

View File

@ -1,10 +1,10 @@
# WebUI Library 2.0.6
# WebUI Library 2.0.7
#
# http://webui.me
# https://github.com/alifcommunity/webui
#
# Licensed under GNU General Public License v3.0.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
# Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
import os

View File

@ -17,3 +17,4 @@ DEL /Q /F /S "*.pdb" >nul 2>&1
DEL /Q /F /S "*.ilk" >nul 2>&1
DEL /Q /F /S "*.obj" >nul 2>&1
DEL /Q /F /S "*.res" >nul 2>&1
DEL /Q /F /S "*.bak" >nul 2>&1

View File

@ -1,11 +1,11 @@
/*
WebUI Library 2.0.6
WebUI Library 2.0.7
http://webui.me
https://github.com/alifcommunity/webui
Licensed under GNU General Public License v3.0.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga>.
Licensed under GNU Lesser General Public License v2.1.
Copyright (C)2023 Hassan DRAGA <https://github.com/hassandraga> - Canada.
*/
// -- Third-party ---------------------
@ -286,6 +286,15 @@ void _webui_ptr_add(void *p, size_t size) {
}
}
void webui_clean_mem(void* p) {
#ifdef WEBUI_LOG
printf("[0] webui_clean_mem(0x%p)... \n", p);
#endif
_webui_free_mem((void *) &p);
}
void _webui_free_mem(void **p) {
#ifdef WEBUI_LOG
@ -323,12 +332,41 @@ void _webui_free_mem(void **p) {
*p = NULL;
}
void _webui_free_all_mem() {
#ifdef WEBUI_LOG
printf("[0] _webui_free_all_mem()... \n");
#endif
// Makes sure we run this once
static bool freed = false;
if(freed) return;
freed = true;
void* ptr = NULL;
for(unsigned int i = 0; i < webui.ptr_position; i++) {
ptr = webui.ptr_list[i];
if(ptr != NULL) {
#ifdef WEBUI_LOG
printf("[0] _webui_free_all_mem()... Free %d bytes @ 0x%p\n", (int)webui.ptr_size[i], ptr);
#endif
memset(ptr, 0x00, webui.ptr_size[i]);
free(ptr);
}
}
}
void _webui_panic() {
#ifdef WEBUI_LOG
printf("[0] _webui_panic()... \n");
#endif
webui_exit();
exit(EXIT_FAILURE);
}
@ -1464,11 +1502,18 @@ static void _webui_server_event_handler(struct mg_connection *c, int ev, void *e
_webui_timer_start(&timer);
for(;;) {
// Stop if window is connected
// Stop if window is re-connected
mg_mgr_poll(&mgr, 1);
if(win->core.connected)
break;
// Stop if all process get closed
if(webui.process < 1) {
stop = true;
break;
}
// Stop if timer is finished
if(_webui_timer_is_end(&timer, 2500))
break;
@ -1881,13 +1926,20 @@ void _webui_clean() {
printf("[0] _webui_clean()... \n");
#endif
// Let's keep the web browser profile folder
// to let the browser remember the window position
// and size. This function is for future use is needed.
static bool cleaned = false;
if(cleaned) return;
cleaned = true;
// Let's give other threads more time to safely exit
// and finish their cleaning up.
_webui_sleep(250);
_webui_sleep(120);
// TODO: Add option to let the user decide if
// WebUI should delete the web browser profile
// folder or not.
// Free all non-freed memory allocations
_webui_free_all_mem();
}
#ifdef _WIN32
@ -1910,7 +1962,7 @@ void _webui_clean() {
// parent process (this app) get closed. If this fail
// webui.js will try to close the window.
HANDLE JobObject = CreateJobObject(NULL, NULL);
JOBOBJECT_EXTENDED_LIMIT_INFORMATION ExtendedInfo = { 0 };
JOB_OBJECT_EXTENDED_LIMIT_INFORMATION ExtendedInfo = { 0 };
ExtendedInfo.BasicLimitInformation.LimitFlags = JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION | JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE;
SetInformationJobObject(JobObject, JobObjectExtendedLimitInformation, &ExtendedInfo, sizeof(ExtendedInfo));
*/
@ -2034,8 +2086,8 @@ int _webui_cmd_async(char* cmd, bool show) {
// let the main loop break if there is
// no other running browser process.
webui.process--;
_webui_sleep(3000);
if(webui.process < 1 && !arg->win->core.connected)
_webui_sleep(250);
if((webui.process < 1) && (!arg->win->core.connected))
webui.exit_now = true;
#ifdef _WIN32
@ -3111,29 +3163,48 @@ void webui_exit() {
webui.wait_for_socket_window = false;
webui.exit_now = true;
// Let's give other threads more time to
// safely exit and finish their cleaning up.
_webui_sleep(100);
}
bool webui_is_app_running() {
#ifdef WEBUI_LOG
printf("[0] webui_is_app_running()... \n");
// printf("[0] webui_is_app_running()... \n");
#endif
static bool app_is_running = true;
// Stop if already flagged
if(!app_is_running) return false;
// Initialization
if(!webui.initialized)
_webui_init();
if(webui.use_timeout) {
// Get app status
if(webui.exit_now) {
app_is_running = false;
}
else if(webui.use_timeout) {
if(webui.wait_for_socket_window) {
if(webui.servers > 0)
return true;
return false;
if(webui.servers < 1)
app_is_running = false;
}
}
else {
if(!webui.exit_now)
return true;
return false;
// Unknown status!
app_is_running = false;
}
return false;
// Final cleaning
if(!app_is_running)
_webui_clean();
return app_is_running;
}
void webui_wait() {
@ -3164,13 +3235,13 @@ void webui_wait() {
#ifdef WEBUI_LOG
// printf("[%d/%d]", webui.servers, webui.connections);
#endif
_webui_sleep(100);
_webui_sleep(50);
}
}
else {
// Probably the app didn't use the show() function
// so, there is no window (web browser) running.
// so, there is no window running.
#ifdef WEBUI_LOG
printf("[L] webui_wait() -> Ignoring connected UI.\n");
@ -3185,7 +3256,7 @@ void webui_wait() {
// Infinite wait
while(!webui.exit_now)
_webui_sleep(100);
_webui_sleep(50);
}
#ifdef WEBUI_LOG
@ -3405,6 +3476,19 @@ void webui_bind_interface_handler(webui_event_t* e) {
if(cb_index > 0 && webui.cb_interface[cb_index] != NULL)
webui.cb_interface[cb_index](e->element_id, e->window_id, e->element_name, e->window, (char*)e->data, (char**)&e->response);
if(_webui_is_empty((const char *)e->response)) {
e->response = (void*)webui_empty_string;
}
else {
// The response pointer is not guaranteed to stay live
// so let's make our own copy.
size_t len = strlen((const char *)e->response);
char* new_cpy = (char*)_webui_malloc(len + 1);
memcpy(new_cpy, e->response, len);
e->response = new_cpy;
}
#ifdef WEBUI_LOG
printf("[%d] webui_bind_interface_handler()... user-callback response [%s]\n", e->window_id, (const char *)e->response);
#endif
@ -3446,7 +3530,7 @@ unsigned int webui_bind_interface(webui_window_t* win, const char* element, void
}
}
void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char* data) {
void webui_script_interface(webui_window_t* win, const char* script, unsigned int timeout, bool* error, unsigned int* length, char** data) {
#ifdef WEBUI_LOG
printf("[%d] webui_script_interface()... \n", win->core.window_number);
@ -3459,7 +3543,7 @@ void webui_script_interface(webui_window_t* win, const char* script, unsigned in
webui_script(win, &js);
data = (char*) js.result.data;
*data = (char*) js.result.data;
*error = js.result.error;
*length = js.result.length;
}
@ -3484,29 +3568,6 @@ void webui_script_interface_struct(webui_window_t* win, webui_script_interface_t
#ifdef _WIN32
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
switch(fdwReason) {
case DLL_PROCESS_ATTACH:
// Initialize once for each new process.
// Return FALSE to fail DLL load.
_webui_init();
break;
case DLL_THREAD_ATTACH:
// Do thread-specific initialization.
break;
case DLL_THREAD_DETACH:
// Do thread-specific cleanup.
break;
case DLL_PROCESS_DETACH:
// Perform any necessary cleanup.
webui_exit();
break;
}
return TRUE;
return true;
}
#endif

View File

@ -151,8 +151,8 @@
</div>
<div class="flex-none mt-auto bg-white rounded-b rounded-t-none overflow-hidden shadow p-6">
<div class="flex items-center justify-center">
<a href="https://github.com/alifcommunity/webui/releases/download/2.0.6/webui_2.0.6.zip" target="_blank" class="mx-auto lg:mx-0 hover:underline gradient-button text-white font-bold my-6 py-2 px-4 shadow-lg no-underline">
Download Windows WebUI v2.0.6
<a href="https://github.com/alifcommunity/webui/releases/download/2.0.7/webui_2.0.7.zip" target="_blank" class="mx-auto lg:mx-0 hover:underline gradient-button text-white font-bold my-6 py-2 px-4 shadow-lg no-underline">
Download Windows WebUI v2.0.7
</a>
</div>
</div>
@ -172,8 +172,8 @@
</div>
<div class="flex-none mt-auto bg-white rounded-b rounded-t-none overflow-hidden shadow p-6">
<div class="flex items-center justify-center">
<a href="https://github.com/alifcommunity/webui/releases/download/2.0.6/webui_2.0.6.zip" target="_blank" class="mx-auto lg:mx-0 hover:underline gradient-button text-white font-bold my-6 py-2 px-4 shadow-lg no-underline">
Download Linux WebUI v2.0.6
<a href="https://github.com/alifcommunity/webui/releases/download/2.0.7/webui_2.0.7.zip" target="_blank" class="mx-auto lg:mx-0 hover:underline gradient-button text-white font-bold my-6 py-2 px-4 shadow-lg no-underline">
Download Linux WebUI v2.0.7
</a>
</div>
</div>