Adding webui_set_resizable (macOS) - Not Tested

This commit is contained in:
Albert 2025-03-17 14:54:47 -04:00
parent c50fcdf5da
commit ea5e9a57fc
2 changed files with 20 additions and 9 deletions

View File

@ -270,7 +270,8 @@ typedef struct webui_event_inf_t {
bool stop;
} _webui_wv_linux_t;
#else
extern bool _webui_macos_wv_new(int index, bool frameless);
extern bool _webui_macos_wv_new(int index, bool frameless, bool resizable);
extern void _webui_macos_wv_new_thread_safe(int index, bool frameless, bool resizable);
extern bool _webui_macos_wv_show(int index, const char* urlString, int x, int y, int width, int height);
extern bool _webui_macos_wv_close(int index);
extern bool _webui_macos_wv_set_position(int index, int x, int y);
@ -279,7 +280,6 @@ typedef struct webui_event_inf_t {
extern void _webui_macos_wv_process();
extern void _webui_macos_wv_stop();
extern void _webui_macos_wv_set_close_cb(void (*cb)(int index));
extern void _webui_macos_wv_new_thread_safe(int index, bool frameless);
extern void _webui_macos_wv_start();
extern bool _webui_macos_wv_maximize(int index);
extern bool _webui_macos_wv_minimize(int index);
@ -12303,7 +12303,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
return false;
if (!_webui.is_wkwebview_main_run) {
if (_webui_macos_wv_new(win->num, win->frameless)) {
if (_webui_macos_wv_new(win->num, win->frameless, win->resizable)) {
if (!_webui.is_webview) {
// Let `wait()` use safe main-thread WKWebView loop
_webui.is_webview = true;
@ -12314,7 +12314,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
}
else {
_webui_macos_wv_new_thread_safe(win->num, win->frameless);
_webui_macos_wv_new_thread_safe(win->num, win->frameless, win->resizable);
_webui_sleep(250);
}

View File

@ -151,9 +151,9 @@ void _webui_macos_wv_start() {
}
}
bool _webui_macos_wv_new(int index, bool frameless) {
bool _webui_macos_wv_new(int index, bool frameless, bool resizable) {
#ifdef WEBUI_LOG
printf("[ObjC]\t\t\t_webui_macos_wv_new([%d], [%d])\n", index, frameless);
printf("[ObjC]\t\t\t_webui_macos_wv_new([%d], [%d], [%d])\n", index, frameless, resizable);
#endif
if (index < 0 || index >= WEBUI_MAX_IDS) {
@ -175,9 +175,17 @@ bool _webui_macos_wv_new(int index, bool frameless) {
NSRect frame = NSMakeRect(0, 0, 800, 600);
// Set window style
NSWindowStyleMask windowStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskResizable;
NSWindowStyleMask windowStyle;
if (frameless) {
windowStyle = NSWindowStyleMaskBorderless;
if (resizable) {
windowStyle |= NSWindowStyleMaskResizable; // Allows programmatic resizing
}
} else {
windowStyle = NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskMiniaturizable;
if (resizable) {
windowStyle |= NSWindowStyleMaskResizable; // Allows user resizing
}
}
NSWindow *window = [[NSWindow alloc] initWithContentRect:frame
@ -190,8 +198,11 @@ bool _webui_macos_wv_new(int index, bool frameless) {
#endif
return false;
}
if (!frameless) {
[window setTitle:@"Loading..."];
} else {
[window setMovableByWindowBackground:YES]; // Allow moving frameless windows
}
[window setDelegate:delegate];
@ -212,12 +223,12 @@ bool _webui_macos_wv_new(int index, bool frameless) {
return true;
}
void _webui_macos_wv_new_thread_safe(int index, bool frameless) {
void _webui_macos_wv_new_thread_safe(int index, bool frameless, bool resizable) {
#ifdef WEBUI_LOG
printf("[ObjC]\t\t\t_webui_macos_wv_new_thread_safe([%d])\n", index);
#endif
dispatch_async(dispatch_get_main_queue(), ^{
_webui_macos_wv_new(index, frameless);
_webui_macos_wv_new(index, frameless, resizable);
});
}