From 92b5ab6bdfc8450ed3c4e4e7006cee949386dcd4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Jan 2023 01:02:07 -0500 Subject: Add support for raising windows --- src/mac.m | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'src/mac.m') diff --git a/src/mac.m b/src/mac.m index 042832b..307a557 100644 --- a/src/mac.m +++ b/src/mac.m @@ -1311,7 +1311,7 @@ puglUnrealize(PuglView* const view) } PuglStatus -puglShow(PuglView* view) +puglShow(PuglView* view, const PuglShowCommand command) { if (!view->impl->wrapperView) { const PuglStatus st = puglRealize(view); @@ -1320,12 +1320,24 @@ puglShow(PuglView* view) } } - if (![view->impl->window isVisible]) { - [view->impl->window setIsVisible:YES]; + NSWindow* const window = [view->impl->wrapperView window]; + if (![window isVisible]) { + [window setIsVisible:YES]; [view->impl->drawView setNeedsDisplay:YES]; updateViewRect(view); } + switch (command) { + case PUGL_SHOW_PASSIVE: + break; + case PUGL_SHOW_RAISE: + [window orderFront:view->impl->wrapperView]; + break; + case PUGL_SHOW_FORCE_RAISE: + [window orderFrontRegardless]; + break; + } + return PUGL_SUCCESS; } -- cgit v1.2.1