diff options
author | Sven Gothel <[email protected]> | 2015-08-11 05:36:40 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-08-11 05:36:40 +0200 |
commit | 3ac9eca843d119902a65fdeee5456d204fbabfa4 (patch) | |
tree | 5fa3cee06598708aec71207555170973b8c8a99b | |
parent | 49952af9b680402648c21ab3291bd9444629dd09 (diff) |
Bug 1188: OSX: Add maximize horz/vert, implemented manually
-rw-r--r-- | make/scripts/tests.sh | 4 | ||||
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/macosx/WindowDriver.java | 48 |
2 files changed, 46 insertions, 6 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index bfa518dc2..d19631f02 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -420,11 +420,11 @@ function testawtswt() { # # HiDPI # -#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $* +testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2SimpleNEWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.awt.TestGearsES2GLJPanelAWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.es2.awt.TestGearsES2AWT $* -testawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NewtCanvasAWT $* +#testawt com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NewtCanvasAWT $* #testawt com.jogamp.opengl.test.junit.jogl.demos.gl2.awt.TestGearsAWT $* #testnoawt com.jogamp.opengl.test.junit.jogl.glsl.TestRulerNEWT01 $* #testnoawt com.jogamp.opengl.test.junit.graph.demos.GPUUISceneNewtDemo $* diff --git a/src/newt/classes/jogamp/newt/driver/macosx/WindowDriver.java b/src/newt/classes/jogamp/newt/driver/macosx/WindowDriver.java index 76c46d93d..384c211f4 100644 --- a/src/newt/classes/jogamp/newt/driver/macosx/WindowDriver.java +++ b/src/newt/classes/jogamp/newt/driver/macosx/WindowDriver.java @@ -42,6 +42,7 @@ import com.jogamp.nativewindow.MutableSurface; import com.jogamp.nativewindow.ScalableSurface; import com.jogamp.nativewindow.VisualIDHolder; import com.jogamp.nativewindow.util.Insets; +import com.jogamp.nativewindow.util.InsetsImmutable; import com.jogamp.nativewindow.util.Point; import com.jogamp.nativewindow.util.PointImmutable; @@ -53,6 +54,7 @@ import jogamp.newt.WindowImpl; import jogamp.newt.driver.DriverClearFocus; import jogamp.newt.driver.DriverUpdatePosition; +import com.jogamp.newt.MonitorMode; import com.jogamp.newt.event.InputEvent; import com.jogamp.newt.event.KeyEvent; import com.jogamp.newt.event.MonitorEvent; @@ -388,23 +390,61 @@ public class WindowDriver extends WindowImpl implements MutableSurface, DriverCl } } + private final int[] normPosSize = { 0, 0, 0, 0 }; + @Override - protected boolean reconfigureWindowImpl(int x, int y, final int width, final int height, final int flags) { + protected boolean reconfigureWindowImpl(int _x, int _y, int _width, int _height, final int flags) { final boolean _isOffscreenInstance = isOffscreenInstance(this, this.getParent()); isOffscreenInstance = 0 != sscSurfaceHandle || _isOffscreenInstance; final PointImmutable pClientLevelOnSreen; if( isOffscreenInstance ) { - x = 0; y = 0; + _x = 0; _y = 0; pClientLevelOnSreen = new Point(0, 0); } else { final NativeWindow parent = getParent(); final boolean useParent = useParent(parent); if( useParent ) { - pClientLevelOnSreen = getLocationOnScreenImpl(x, y, parent, useParent); + pClientLevelOnSreen = getLocationOnScreenImpl(_x, _y, parent, useParent); } else { - pClientLevelOnSreen = new Point(x, y); + if( 0 != ( ( CHANGE_MASK_MAXIMIZED_HORZ | CHANGE_MASK_MAXIMIZED_VERT ) & flags ) ) { + final InsetsImmutable insets = getInsets(); + final MonitorMode mm = getMainMonitor().getCurrentMode(); + // FIXME HiDPI: Shortcut, may need to adjust if we change scaling methodology + final int mmWidth = SurfaceScaleUtils.scaleInv(mm.getRotatedWidth(), getPixelScaleX()); + final int mmHeight = SurfaceScaleUtils.scaleInv(mm.getRotatedHeight(), getPixelScaleY()); + + if( 0 != ( CHANGE_MASK_MAXIMIZED_HORZ & flags ) ) { + if( 0 != ( STATE_MASK_MAXIMIZED_HORZ & flags ) ) { + // max-h on + normPosSize[0] = _x; + normPosSize[2] = _width; + _x = insets.getLeftWidth(); + _width = mmWidth - insets.getTotalWidth(); + } else { + // max-h off + _x = normPosSize[0]; + _width = normPosSize[2]; + } + } + if( 0 != ( CHANGE_MASK_MAXIMIZED_VERT & flags ) ) { + if( 0 != ( STATE_MASK_MAXIMIZED_VERT & flags ) ) { + // max-v on + normPosSize[1] = _y; + normPosSize[3] = _height; + _y = insets.getTopHeight(); + _height = mmHeight - insets.getTotalHeight(); + } else { + // max-h off + _y = normPosSize[1]; + _height = normPosSize[3]; + } + } + } + pClientLevelOnSreen = new Point(_x, _y); } } + final int x=_x, y=_y; + final int width=_width, height=_height; final boolean hasFocus = hasFocus(); |