From 474436e9f6e84f26edd08bfcff16d62a3cd40175 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 15 Jul 2014 14:04:20 -0400 Subject: Implemented window resize handling on Mac OS X. Now for actually setting child controls and resizing them. --- redo/window_darwin.m | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'redo/window_darwin.m') diff --git a/redo/window_darwin.m b/redo/window_darwin.m index d0b1347..426f353 100644 --- a/redo/window_darwin.m +++ b/redo/window_darwin.m @@ -20,6 +20,16 @@ return windowClosing(self->gowin); } +- (void)windowDidResize:(NSNotification *)n +{ + NSWindow *w; + NSRect r; + + w = toNSWindow([n object]); + r = [[w contentView] frame]; + windowResized(self->gowin, (uintptr_t) r.size.width, (uintptr_t) r.size.height); +} + @end id newWindow(intptr_t width, intptr_t height) -- cgit v1.2.3