From 3d1382b98a502d0c34d5ba2c462396acc515016e Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 13 Jan 2020 23:56:29 -0500 Subject: devdraw: hide dock in full screen mode Unfortunately this hides the dock even if it is on a different screen. We need to figure out how to tell. But this is more usable than not. Probably. --- src/cmd/devdraw/mac-screen.m | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/cmd/devdraw') diff --git a/src/cmd/devdraw/mac-screen.m b/src/cmd/devdraw/mac-screen.m index f0278e0d..e02a2524 100644 --- a/src/cmd/devdraw/mac-screen.m +++ b/src/cmd/devdraw/mac-screen.m @@ -936,6 +936,19 @@ rpc_setmouse(Client *c, Point p) o |= NSApplicationPresentationHideDock | NSApplicationPresentationHideMenuBar; return o; } + +- (void)windowWillEnterFullScreen:(NSNotification*)notification { + // TODO: This should only be done if the window + // is on the screen with the dock. + // But how can you tell which window has the dock? + [[NSApplication sharedApplication] + setPresentationOptions:NSApplicationPresentationHideMenuBar | NSApplicationPresentationHideDock]; +} + +- (void)windowDidExitFullScreen:(NSNotification*)notification { + [[NSApplication sharedApplication] + setPresentationOptions:NSApplicationPresentationDefault]; +} @end static uint -- cgit v1.2.3