Update - Add user-defined command line parameter

This commit is contained in:
Hassan DRAGA 2024-11-09 13:44:22 -05:00
parent 5fd3f15ac7
commit 31c0264a04
2 changed files with 9 additions and 6 deletions

View File

@ -331,15 +331,14 @@ WEBUI_EXPORT bool webui_show_wv(size_t window, const char* content);
WEBUI_EXPORT void webui_set_kiosk(size_t window, bool status);
/**
* @brief Add user-defined command line parameters.
* @brief Add a user-defined web browser's CLI parameters.
*
* @param window The window number
* @param paramsLen Command line parameters length
* @param params Command line parameters
*
* @example webui_set_custom_parameters(myWindow, "--remote-debugging-port=9222");
*/
WEBUI_EXPORT void webui_set_custom_parameters(size_t window, int paramsLen, char *params);
WEBUI_EXPORT void webui_set_custom_parameters(size_t window, char *params);
/**
* @brief Set the window with high-contrast support. Useful when you want to

View File

@ -999,7 +999,7 @@ void webui_set_kiosk(size_t window, bool status) {
win->kiosk_mode = status;
}
void webui_set_custom_parameters(size_t window, int paramsLen, char *params) {
void webui_set_custom_parameters(size_t window, char* params) {
#ifdef WEBUI_LOG
printf("[User] webui_set_custom_parameters([%zu], [%s])\n", window, params);
@ -1013,8 +1013,12 @@ void webui_set_custom_parameters(size_t window, int paramsLen, char *params) {
return;
_webui_window_t* win = _webui.wins[window];
win->custom_parameters = (char *)_webui_malloc(paramsLen + 1);
WEBUI_STR_COPY_STATIC(win->custom_parameters, paramsLen, params);
size_t len = _webui_strlen(params);
if (len < 1)
return;
win->custom_parameters = (char*)_webui_malloc(len);
WEBUI_STR_COPY_STATIC(win->custom_parameters, len, params);
}
void webui_set_high_contrast(size_t window, bool status) {