Fix - Add user-defined command line parameter

This commit is contained in:
Hassan DRAGA 2024-11-09 13:50:01 -05:00
parent 31c0264a04
commit 65b49d1d09
2 changed files with 11 additions and 10 deletions

View File

@ -224,8 +224,8 @@ namespace webui {
}
// Add user-defined command line parameters
void set_custom_parameters(int paramsLen, char *params) const {
webui_set_custom_parameters(webui_window, paramsLen, params);
void set_custom_parameters(char *params) const {
webui_set_custom_parameters(webui_window, params);
}
// Set the window with high-contrast support. Useful when you want to build a better high-contrast theme with CSS.

View File

@ -1013,10 +1013,15 @@ void webui_set_custom_parameters(size_t window, char* params) {
return;
_webui_window_t* win = _webui.wins[window];
// Check size
size_t len = _webui_strlen(params);
if (len < 1)
return;
// Free old
_webui_free_mem((void*)win->custom_parameters);
// Set new
win->custom_parameters = (char*)_webui_malloc(len);
WEBUI_STR_COPY_STATIC(win->custom_parameters, len, params);
}
@ -6098,8 +6103,7 @@ static int _webui_get_browser_args(_webui_window_t* win, size_t browser, char* b
c += WEBUI_SN_PRINTF_DYN(buffer + c, len, " %s", "--no-proxy-server");
// User-defined command line parameters.
if (!_webui_is_empty(win->custom_parameters)) {
c += WEBUI_SN_PRINTF_DYN(buffer, len, " %s", win->custom_parameters);
_webui_free_mem((void*)win->custom_parameters);
c += WEBUI_SN_PRINTF_DYN(buffer + c, len, " %s", win->custom_parameters);
}
// URL (END)
@ -6121,20 +6125,17 @@ static int _webui_get_browser_args(_webui_window_t* win, size_t browser, char* b
if (win->size_set)
c += WEBUI_SN_PRINTF_DYN(buffer + c, len, " -width %u -height %u", win->width, win->height);
// Window Position
// Firefox does not support window positioning.
// Firefox does not support window positioning.
// Proxy
if (win->proxy_set) {
// Server: `win->proxy_server`
// TODO: Add proxy feature to Firefox
// Method 1: modifying `prefs.js` / user.js
// Method 2: use Proxy Auto-Configuration (PAC) file
}
// User-defined command line parameters.
if (!_webui_is_empty(win->custom_parameters)) {
c += WEBUI_SN_PRINTF_DYN(buffer, len, " %s", win->custom_parameters);
_webui_free_mem((void*)win->custom_parameters);
}
if (!_webui_is_empty(win->custom_parameters))
c += WEBUI_SN_PRINTF_DYN(buffer + c, len, " %s", win->custom_parameters);
// URL (END)
c += WEBUI_SN_PRINTF_DYN(buffer + c, len, " -new-window ");