mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Text Editor C (Only UI)
* Non-complete Text Editor in C
This commit is contained in:
parent
aacc8b0ddd
commit
980d4a4306
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
43
examples/C/text-editor/README.md
Normal file
43
examples/C/text-editor/README.md
Normal file
@ -0,0 +1,43 @@
|
||||
|
||||
# WebUI C - Minimal Example
|
||||
|
||||
Example of how to create the minimal WebUI application in C. To build this example, you will need one of those C compilers (*no dependencies are required*).
|
||||
|
||||
### Windows
|
||||
|
||||
- **Build Tools for Microsoft Visual Studio**
|
||||
```sh
|
||||
git clone https://github.com/alifcommunity/webui.git
|
||||
cd webui\examples\C\minimal\Windows\MSVC
|
||||
nmake
|
||||
```
|
||||
|
||||
- **MinGW**
|
||||
```sh
|
||||
git clone https://github.com/alifcommunity/webui.git
|
||||
cd webui\examples\C\minimal\Windows\GCC
|
||||
mingw32-make
|
||||
```
|
||||
|
||||
- **TCC**
|
||||
```sh
|
||||
git clone https://github.com/alifcommunity/webui.git
|
||||
cd webui\examples\C\minimal\Windows\TCC
|
||||
mingw32-make
|
||||
```
|
||||
|
||||
### Linux
|
||||
|
||||
- **GCC**
|
||||
```sh
|
||||
git clone https://github.com/alifcommunity/webui.git
|
||||
cd webui/examples/C/minimal/Linux/GCC
|
||||
make
|
||||
```
|
||||
|
||||
- **Clang**
|
||||
```sh
|
||||
git clone https://github.com/alifcommunity/webui.git
|
||||
cd webui/examples/C/minimal/Linux/Clang
|
||||
make
|
||||
```
|
47
examples/C/text-editor/text-editor.c
Normal file
47
examples/C/text-editor/text-editor.c
Normal file
@ -0,0 +1,47 @@
|
||||
// Text Editor in C using WebUI
|
||||
|
||||
#include "webui.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void Close(webui_event_t* e) {
|
||||
// Close all opened windows
|
||||
printf("Exit.\n");
|
||||
webui_exit();
|
||||
}
|
||||
|
||||
void Save(webui_event_t* e) {
|
||||
// Save data received from the UI
|
||||
printf("Save.\n");
|
||||
}
|
||||
|
||||
void Open(webui_event_t* e) {
|
||||
// Open a new file
|
||||
printf("Open file.\n");
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
// Create new windows
|
||||
int MainWindow = webui_new_window();
|
||||
|
||||
// Bind HTML element IDs with a C functions
|
||||
webui_bind(MainWindow, "Open", Open);
|
||||
webui_bind(MainWindow, "Save", Save);
|
||||
webui_bind(MainWindow, "Close", Close);
|
||||
|
||||
// Show a new window
|
||||
webui_show(MainWindow, "ui/MainWindow.html");
|
||||
|
||||
// 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) {
|
||||
return main();
|
||||
}
|
||||
#endif
|
82
examples/C/text-editor/ui/MainWindow.html
Normal file
82
examples/C/text-editor/ui/MainWindow.html
Normal file
@ -0,0 +1,82 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="icon" type="image/png" href="img/icon.png" />
|
||||
<title>Text Editor in C using WebUI</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/darcula.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/codemirror.min.css">
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/codemirror.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/xml/xml.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/css/css.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/javascript/javascript.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/clike/clike.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/python/python.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="topbar"></div>
|
||||
<div class="nav">
|
||||
<button id="Open">Open</button>
|
||||
<button id="Save">Save</button>
|
||||
<div class="nav-right">
|
||||
<button id="Close">Close</button>
|
||||
<button id="About">About</button>
|
||||
</div>
|
||||
</div>
|
||||
<div style="height: 8px; background-image: linear-gradient(#121010, #2b2b2b)"></div>
|
||||
<div class="main" id="main">
|
||||
<textarea id="editor"></textarea>
|
||||
</div>
|
||||
<div style="height: 5px"></div>
|
||||
<div id="about-box" class="about-box">
|
||||
<div class="about-box-content">
|
||||
<h1>Text Editor</h1>
|
||||
v1.0
|
||||
<p>Text Editor in C using WebUI library.</p>
|
||||
<p><a href="https://webui.me" target="_blank">webui.me</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/webui.js"></script>
|
||||
<script src="js/ui.js"></script>
|
||||
<script>
|
||||
|
||||
const editor = document.getElementById("editor");
|
||||
const codeMirrorInstance = CodeMirror.fromTextArea(editor, {
|
||||
mode: "text/html",
|
||||
lineNumbers: true,
|
||||
tabSize: 4,
|
||||
indentUnit: 2,
|
||||
lineWrapping: true,
|
||||
theme: "darcula"
|
||||
});
|
||||
|
||||
function changeMode(lang) {
|
||||
let mode = "";
|
||||
switch (lang) {
|
||||
case "js":
|
||||
mode = "text/javascript";
|
||||
break;
|
||||
case "c":
|
||||
mode = "text/x-csrc";
|
||||
break;
|
||||
case "python":
|
||||
mode = "text/x-python";
|
||||
break;
|
||||
default:
|
||||
mode = "text/html";
|
||||
}
|
||||
codeMirrorInstance.setOption("mode", mode);
|
||||
}
|
||||
|
||||
codeMirrorInstance.setSize("100%", "100%");
|
||||
|
||||
function addLine(text) {
|
||||
const lastLine = codeMirrorInstance.lineCount();
|
||||
codeMirrorInstance.replaceRange(text + "\n", { line: lastLine });
|
||||
}
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
53
examples/C/text-editor/ui/css/darcula.css
Normal file
53
examples/C/text-editor/ui/css/darcula.css
Normal file
@ -0,0 +1,53 @@
|
||||
/**
|
||||
Name: IntelliJ IDEA darcula theme
|
||||
From IntelliJ IDEA by JetBrains
|
||||
*/
|
||||
|
||||
.cm-s-darcula { font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif;}
|
||||
.cm-s-darcula.CodeMirror { background: #2B2B2B; color: #A9B7C6; }
|
||||
|
||||
.cm-s-darcula span.cm-meta { color: #BBB529; }
|
||||
.cm-s-darcula span.cm-number { color: #6897BB; }
|
||||
.cm-s-darcula span.cm-keyword { color: #CC7832; line-height: 1em; font-weight: bold; }
|
||||
.cm-s-darcula span.cm-def { color: #A9B7C6; font-style: italic; }
|
||||
.cm-s-darcula span.cm-variable { color: #A9B7C6; }
|
||||
.cm-s-darcula span.cm-variable-2 { color: #A9B7C6; }
|
||||
.cm-s-darcula span.cm-variable-3 { color: #9876AA; }
|
||||
.cm-s-darcula span.cm-type { color: #AABBCC; font-weight: bold; }
|
||||
.cm-s-darcula span.cm-property { color: #FFC66D; }
|
||||
.cm-s-darcula span.cm-operator { color: #A9B7C6; }
|
||||
.cm-s-darcula span.cm-string { color: #6A8759; }
|
||||
.cm-s-darcula span.cm-string-2 { color: #6A8759; }
|
||||
.cm-s-darcula span.cm-comment { color: #61A151; font-style: italic; }
|
||||
.cm-s-darcula span.cm-link { color: #CC7832; }
|
||||
.cm-s-darcula span.cm-atom { color: #CC7832; }
|
||||
.cm-s-darcula span.cm-error { color: #BC3F3C; }
|
||||
.cm-s-darcula span.cm-tag { color: #629755; font-weight: bold; font-style: italic; text-decoration: underline; }
|
||||
.cm-s-darcula span.cm-attribute { color: #6897bb; }
|
||||
.cm-s-darcula span.cm-qualifier { color: #6A8759; }
|
||||
.cm-s-darcula span.cm-bracket { color: #A9B7C6; }
|
||||
.cm-s-darcula span.cm-builtin { color: #FF9E59; }
|
||||
.cm-s-darcula span.cm-special { color: #FF9E59; }
|
||||
.cm-s-darcula span.cm-matchhighlight { color: #FFFFFF; background-color: rgba(50, 89, 48, .7); font-weight: normal;}
|
||||
.cm-s-darcula span.cm-searching { color: #FFFFFF; background-color: rgba(61, 115, 59, .7); font-weight: normal;}
|
||||
|
||||
.cm-s-darcula .CodeMirror-cursor { border-left: 1px solid #A9B7C6; }
|
||||
.cm-s-darcula .CodeMirror-activeline-background { background: #323232; }
|
||||
.cm-s-darcula .CodeMirror-gutters { background: #313335; border-right: 1px solid #313335; }
|
||||
.cm-s-darcula .CodeMirror-guttermarker { color: #FFEE80; }
|
||||
.cm-s-darcula .CodeMirror-guttermarker-subtle { color: #D0D0D0; }
|
||||
.cm-s-darcula .CodeMirrir-linenumber { color: #606366; }
|
||||
.cm-s-darcula .CodeMirror-matchingbracket { background-color: #3B514D; color: #FFEF28 !important; font-weight: bold; }
|
||||
|
||||
.cm-s-darcula div.CodeMirror-selected { background: #214283; }
|
||||
|
||||
.CodeMirror-hints.darcula {
|
||||
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
||||
color: #9C9E9E;
|
||||
background-color: #3B3E3F !important;
|
||||
}
|
||||
|
||||
.CodeMirror-hints.darcula .CodeMirror-hint-active {
|
||||
background-color: #494D4E !important;
|
||||
color: #9C9E9E !important;
|
||||
}
|
102
examples/C/text-editor/ui/css/style.css
Normal file
102
examples/C/text-editor/ui/css/style.css
Normal file
@ -0,0 +1,102 @@
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100vh;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
overflow: hidden;
|
||||
background-color: #2d2c2e
|
||||
}
|
||||
|
||||
.topbar {
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
background-image: linear-gradient(to right, #2b2b2b 0%, #ada2a2 50%, #1c1717 100%);
|
||||
}
|
||||
|
||||
header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background-image: linear-gradient(#141111, #2b2b2b);
|
||||
}
|
||||
|
||||
.nav button {
|
||||
float: left;
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 6px 10px;
|
||||
text-decoration: none;
|
||||
font-size: 100%;
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav button:hover {
|
||||
background-color: #363636;
|
||||
}
|
||||
|
||||
.nav button.active {
|
||||
background-color: #363636;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav .nav-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Code */
|
||||
|
||||
.main {
|
||||
height: 100%;
|
||||
color: white;
|
||||
background: #2F263F;
|
||||
overflow-y: auto;
|
||||
display: grid;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* About */
|
||||
|
||||
.about-box {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-image: linear-gradient(#141111, #2b2b2b);
|
||||
}
|
||||
|
||||
.about-box-content {
|
||||
background-image: linear-gradient(#141111, #2b2b2b);
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
width: 30%;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.about-box-content h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-box-content a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.CodeMirror {
|
||||
height: 100%;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
font-size: 16px;
|
||||
text-shadow: 1px 1px 2px #0e0a0a;
|
||||
}
|
BIN
examples/C/text-editor/ui/img/icon.png
Normal file
BIN
examples/C/text-editor/ui/img/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
16
examples/C/text-editor/ui/js/ui.js
Normal file
16
examples/C/text-editor/ui/js/ui.js
Normal file
@ -0,0 +1,16 @@
|
||||
//
|
||||
|
||||
let About = document.getElementById("About");
|
||||
let aboutBox = document.getElementById("about-box");
|
||||
|
||||
About.onclick = function() {
|
||||
// Open ABout
|
||||
aboutBox.style.display = "block";
|
||||
}
|
||||
|
||||
window.onclick = function(event) {
|
||||
if (event.target == aboutBox) {
|
||||
// Close About
|
||||
aboutBox.style.display = "none";
|
||||
}
|
||||
}
|
BIN
examples/C/text-editor/webui-2-x64.dll
Normal file
BIN
examples/C/text-editor/webui-2-x64.dll
Normal file
Binary file not shown.
207
examples/C/text-editor/webui.h
Normal file
207
examples/C/text-editor/webui.h
Normal file
@ -0,0 +1,207 @@
|
||||
/*
|
||||
WebUI Library 2.3.0
|
||||
http://webui.me
|
||||
https://github.com/alifcommunity/webui
|
||||
Copyright (c) 2020-2023 Hassan Draga.
|
||||
Licensed under MIT License.
|
||||
All rights reserved.
|
||||
Canada.
|
||||
*/
|
||||
|
||||
#ifndef _WEBUI_H
|
||||
#define _WEBUI_H
|
||||
|
||||
#define WEBUI_VERSION "2.3.0"
|
||||
#define WEBUI_MAX_IDS (512)
|
||||
|
||||
// Dynamic Library Exports
|
||||
#if defined(_MSC_VER) || defined(__TINYC__)
|
||||
#ifndef WEBUI_EXPORT
|
||||
#define WEBUI_EXPORT __declspec(dllexport)
|
||||
#endif
|
||||
#else
|
||||
#ifndef WEBUI_EXPORT
|
||||
#define WEBUI_EXPORT extern
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// -- C STD ---------------------------
|
||||
#include <stdbool.h>
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include <stddef.h>
|
||||
#include <time.h>
|
||||
#include <errno.h>
|
||||
#include <math.h>
|
||||
#if defined(__GNUC__) || defined(__TINYC__)
|
||||
#include <dirent.h>
|
||||
#endif
|
||||
|
||||
// -- Windows -------------------------
|
||||
#ifdef _WIN32
|
||||
#ifndef WIN32_LEAN_AND_MEAN
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#include <direct.h>
|
||||
#include <io.h>
|
||||
#include <tchar.h>
|
||||
#include <tlhelp32.h>
|
||||
#define WEBUI_GET_CURRENT_DIR _getcwd
|
||||
#define WEBUI_FILE_EXIST _access
|
||||
#define WEBUI_POPEN _popen
|
||||
#define WEBUI_PCLOSE _pclose
|
||||
#define WEBUI_MAX_PATH MAX_PATH
|
||||
#endif
|
||||
|
||||
// -- Linux ---------------------------
|
||||
#ifdef __linux__
|
||||
#include <unistd.h>
|
||||
#include <pthread.h>
|
||||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/socket.h>
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <sys/time.h>
|
||||
#include <signal.h>
|
||||
#define WEBUI_GET_CURRENT_DIR getcwd
|
||||
#define WEBUI_FILE_EXIST access
|
||||
#define WEBUI_POPEN popen
|
||||
#define WEBUI_PCLOSE pclose
|
||||
#define WEBUI_MAX_PATH PATH_MAX
|
||||
#endif
|
||||
|
||||
// -- Apple ---------------------------
|
||||
#ifdef __APPLE__
|
||||
#include <pthread.h>
|
||||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/socket.h>
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <sys/syslimits.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <signal.h>
|
||||
#define WEBUI_GET_CURRENT_DIR getcwd
|
||||
#define WEBUI_FILE_EXIST access
|
||||
#define WEBUI_POPEN popen
|
||||
#define WEBUI_PCLOSE pclose
|
||||
#define WEBUI_MAX_PATH PATH_MAX
|
||||
#endif
|
||||
|
||||
// -- Enums ---------------------------
|
||||
enum webui_browsers {
|
||||
AnyBrowser = 0, // 0. Default recommended web browser
|
||||
Chrome, // 1. Google Chrome
|
||||
Firefox, // 2. Mozilla Firefox
|
||||
Edge, // 3. Microsoft Edge
|
||||
Safari, // 4. Apple Safari
|
||||
Chromium, // 5. The Chromium Project
|
||||
Opera, // 6. Opera Browser
|
||||
Brave, // 7. The Brave Browser
|
||||
Vivaldi, // 8. The Vivaldi Browser
|
||||
Epic, // 9. The Epic Browser
|
||||
Yandex, // 10. The Yandex Browser
|
||||
};
|
||||
|
||||
enum webui_runtimes {
|
||||
None = 0, // 0. Prevent WebUI from using any runtime for .js and .ts files
|
||||
Deno, // 1. Use Deno runtime for .js and .ts files
|
||||
NodeJS, // 2. Use Nodejs runtime for .js files
|
||||
};
|
||||
|
||||
enum webui_events {
|
||||
WEBUI_EVENT_DISCONNECTED = 0, // 0. Window disconnection event
|
||||
WEBUI_EVENT_CONNECTED, // 1. Window connection event
|
||||
WEBUI_EVENT_MULTI_CONNECTION, // 2. New window connection event
|
||||
WEBUI_EVENT_UNWANTED_CONNECTION, // 3. New unwanted window connection event
|
||||
WEBUI_EVENT_MOUSE_CLICK, // 4. Mouse click event
|
||||
WEBUI_EVENT_NAVIGATION, // 5. Window navigation event
|
||||
WEBUI_EVENT_CALLBACK, // 6. Function call event
|
||||
};
|
||||
|
||||
// -- Structs -------------------------
|
||||
typedef struct webui_event_t {
|
||||
size_t window; // The window object number
|
||||
size_t event_type; // Event type
|
||||
char* element; // HTML element ID
|
||||
char* data; // JavaScript data
|
||||
size_t event_number; // Internal WebUI
|
||||
} webui_event_t;
|
||||
|
||||
// -- Definitions ---------------------
|
||||
// Create a new webui window object.
|
||||
WEBUI_EXPORT size_t webui_new_window(void);
|
||||
// Create a new webui window object.
|
||||
WEBUI_EXPORT void webui_new_window_id(size_t window_number);
|
||||
// Bind a specific html element click event with a function. Empty element means all events.
|
||||
WEBUI_EXPORT size_t webui_bind(size_t window, const char* element, void (*func)(webui_event_t* e));
|
||||
// Show a window using a embedded HTML, or a file. If the window is already opened then it will be refreshed.
|
||||
WEBUI_EXPORT bool webui_show(size_t window, const char* content);
|
||||
// Same as webui_show(). But with a specific web browser.
|
||||
WEBUI_EXPORT bool webui_show_browser(size_t window, const char* content, size_t browser);
|
||||
// Set the window in Kiosk mode (Full screen)
|
||||
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
|
||||
// Wait until all opened windows get closed.
|
||||
WEBUI_EXPORT void webui_wait(void);
|
||||
// Close a specific window only. The window object will still exist.
|
||||
WEBUI_EXPORT void webui_close(size_t window);
|
||||
// Close a specific window and free all memory resources.
|
||||
WEBUI_EXPORT void webui_destroy(size_t window);
|
||||
// Close all opened windows. webui_wait() will break.
|
||||
WEBUI_EXPORT void webui_exit(void);
|
||||
|
||||
// -- Other ---------------------------
|
||||
// Check a specific window if it's still running
|
||||
WEBUI_EXPORT bool webui_is_shown(size_t window);
|
||||
// Set the maximum time in seconds to wait for browser to start
|
||||
WEBUI_EXPORT void webui_set_timeout(size_t second);
|
||||
// Set the default embedded HTML favicon
|
||||
WEBUI_EXPORT void webui_set_icon(size_t window, const char* icon, const char* icon_type);
|
||||
// Allow the window URL to be re-used in normal web browsers
|
||||
WEBUI_EXPORT void webui_set_multi_access(size_t window, bool status);
|
||||
|
||||
// -- JavaScript ----------------------
|
||||
// Run JavaScript quickly with no waiting for the response.
|
||||
WEBUI_EXPORT bool webui_run(size_t window, const char* script);
|
||||
// Run a JavaScript, and get the response back (Make sure your local buffer can hold the response).
|
||||
WEBUI_EXPORT bool webui_script(size_t window, const char* script, size_t timeout, char* buffer, size_t buffer_length);
|
||||
// Chose between Deno and Nodejs runtime for .js and .ts files.
|
||||
WEBUI_EXPORT void webui_set_runtime(size_t window, size_t runtime);
|
||||
// Parse argument as integer.
|
||||
WEBUI_EXPORT long long int webui_get_int(webui_event_t* e);
|
||||
// Parse argument as string.
|
||||
WEBUI_EXPORT const char* webui_get_string(webui_event_t* e);
|
||||
// Parse argument as boolean.
|
||||
WEBUI_EXPORT bool webui_get_bool(webui_event_t* e);
|
||||
// Return the response to JavaScript as integer.
|
||||
WEBUI_EXPORT void webui_return_int(webui_event_t* e, long long int n);
|
||||
// Return the response to JavaScript as string.
|
||||
WEBUI_EXPORT void webui_return_string(webui_event_t* e, char* s);
|
||||
// Return the response to JavaScript as boolean.
|
||||
WEBUI_EXPORT void webui_return_bool(webui_event_t* e, bool b);
|
||||
|
||||
// -- Interface -----------------------
|
||||
// Bind a specific html element click event with a function. Empty element means all events. This replace webui_bind(). The func is (Window, EventType, Element, Data, EventNumber)
|
||||
WEBUI_EXPORT size_t webui_interface_bind(size_t window, const char* element, void (*func)(size_t, size_t, char*, char*, size_t));
|
||||
// When using `webui_interface_bind()` you may need this function to easily set your callback response.
|
||||
WEBUI_EXPORT void webui_interface_set_response(size_t window, size_t event_number, const char* response);
|
||||
// Check if the app still running or not. This replace webui_wait().
|
||||
WEBUI_EXPORT bool webui_interface_is_app_running(void);
|
||||
// Get window unique ID
|
||||
WEBUI_EXPORT size_t webui_interface_get_window_id(size_t window);
|
||||
// Get a unique ID. Same ID as `webui_bind()`. Return > 0 if bind exist.
|
||||
WEBUI_EXPORT size_t webui_interface_get_bind_id(size_t window, const char* element);
|
||||
|
||||
#endif /* _WEBUI_H */
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
76
src/webui.c
76
src/webui.c
@ -1644,15 +1644,15 @@ static int _webui_serve_file(struct mg_connection *conn) {
|
||||
|
||||
// 404 - File not exist
|
||||
|
||||
// mg_send_http_error(
|
||||
// conn, 404,
|
||||
// webui_html_res_not_available
|
||||
// );
|
||||
_webui_http_send(
|
||||
conn, // 200
|
||||
"text/html",
|
||||
mg_send_http_error(
|
||||
conn, 404,
|
||||
webui_html_res_not_available
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
// "text/html",
|
||||
// webui_html_res_not_available
|
||||
// );
|
||||
http_status_code = 404;
|
||||
}
|
||||
|
||||
@ -1781,15 +1781,15 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
// File not exist - 404
|
||||
|
||||
// mg_send_http_error(
|
||||
// conn, 404,
|
||||
// webui_html_res_not_available
|
||||
// );
|
||||
_webui_http_send(
|
||||
conn, // 200
|
||||
"text/html",
|
||||
mg_send_http_error(
|
||||
conn, 404,
|
||||
webui_html_res_not_available
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
// "text/html",
|
||||
// webui_html_res_not_available
|
||||
// );
|
||||
|
||||
_webui_free_mem((void*)file);
|
||||
_webui_free_mem((void*)full_path);
|
||||
@ -1847,16 +1847,16 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
// Deno not installed
|
||||
|
||||
// mg_send_http_error(
|
||||
// conn, 404,
|
||||
// webui_deno_not_found
|
||||
// );
|
||||
_webui_http_send(
|
||||
conn, // 200
|
||||
"text/html",
|
||||
mg_send_http_error(
|
||||
conn, 500,
|
||||
webui_deno_not_found
|
||||
);
|
||||
interpret_http_stat = 404;
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
// "text/html",
|
||||
// webui_deno_not_found
|
||||
// );
|
||||
interpret_http_stat = 500;
|
||||
}
|
||||
}
|
||||
else if(win->runtime == NodeJS) {
|
||||
@ -1896,16 +1896,16 @@ static int _webui_interpret_file(_webui_window_t* win, struct mg_connection *con
|
||||
|
||||
// Node.js not installed
|
||||
|
||||
// mg_send_http_error(
|
||||
// conn, 404,
|
||||
// webui_nodejs_not_found
|
||||
// );
|
||||
_webui_http_send(
|
||||
conn, // 200
|
||||
"text/html",
|
||||
mg_send_http_error(
|
||||
conn, 500,
|
||||
webui_nodejs_not_found
|
||||
);
|
||||
interpret_http_stat = 404;
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
// "text/html",
|
||||
// webui_nodejs_not_found
|
||||
// );
|
||||
interpret_http_stat = 500;
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -3976,7 +3976,7 @@ static size_t _webui_get_new_window_number(void) {
|
||||
#endif
|
||||
|
||||
for(size_t i = 1; i < WEBUI_MAX_ARRAY; i++) {
|
||||
if(_webui_core.wins[i] != NULL)
|
||||
if(_webui_core.wins[i] == NULL)
|
||||
return i;
|
||||
}
|
||||
|
||||
@ -4209,15 +4209,15 @@ static int _webui_http_handler(struct mg_connection *conn, void *_win) {
|
||||
printf("[Core]\t\t_webui_http_handler() -> Embedded Index HTML Already Handled (403)\n");
|
||||
#endif
|
||||
|
||||
// mg_send_http_error(
|
||||
// conn, 403,
|
||||
// webui_html_served
|
||||
// );
|
||||
_webui_http_send(
|
||||
conn, // 200
|
||||
"text/html",
|
||||
mg_send_http_error(
|
||||
conn, 403,
|
||||
webui_html_served
|
||||
);
|
||||
// _webui_http_send(
|
||||
// conn, // 200
|
||||
// "text/html",
|
||||
// webui_html_served
|
||||
// );
|
||||
http_status_code = 403;
|
||||
}
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user