diff options
author | Sven Gothel <[email protected]> | 2009-10-02 15:19:58 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-10-02 15:19:58 -0700 |
commit | 52c3caf07ad07fcb029ea584d7e5f4c5031f84c2 (patch) | |
tree | 5ea67263408af6db6cb594c6fee6746d228723a5 /src/newt/classes/com | |
parent | 56cc5d5058f352d0a46679b67d4f6650e457cbb9 (diff) |
NEWT Intel GDL: Proper Pos/Size/Fullscreen
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r-- | src/newt/classes/com/sun/javafx/newt/intel/gdl/Window.java | 70 |
1 files changed, 54 insertions, 16 deletions
diff --git a/src/newt/classes/com/sun/javafx/newt/intel/gdl/Window.java b/src/newt/classes/com/sun/javafx/newt/intel/gdl/Window.java index 3e4b5b90e..0332f442a 100644 --- a/src/newt/classes/com/sun/javafx/newt/intel/gdl/Window.java +++ b/src/newt/classes/com/sun/javafx/newt/intel/gdl/Window.java @@ -89,28 +89,65 @@ public class Window extends com.sun.javafx.newt.Window { } public void setSize(int width, int height) { + Screen screen = (Screen) getScreen(); + if((x+width)>screen.getWidth()) { + width=screen.getWidth()-x; + } + if((y+height)>screen.getHeight()) { + height=screen.getHeight()-y; + } + this.width = width; + this.height = height; + if(!fullscreen) { + nfs_width=width; + nfs_height=height; + } if(0!=surfaceHandle) { - System.err.println("setSize "+width+"x"+height+" n/a in IntelGDL _after_ surface established"); - } else { - Screen screen = (Screen) getScreen(); - if(width>screen.getWidth() || height>screen.getHeight()) { - width=screen.getWidth(); - height=screen.getHeight(); - } - this.width = width; - this.height = height; + SetBounds0(surfaceHandle, screen.getWidth(), screen.getHeight(), x, y, width, height); } } public void setPosition(int x, int y) { - // n/a in IntelGDL - System.err.println("setPosition n/a in IntelGDL"); + Screen screen = (Screen) getScreen(); + if((x+width)>screen.getWidth()) { + x=screen.getWidth()-width; + } + if((y+height)>screen.getHeight()) { + y=screen.getHeight()-height; + } + this.x = x; + this.y = y; + if(!fullscreen) { + nfs_x=x; + nfs_y=y; + } + if(0!=surfaceHandle) { + SetBounds0(surfaceHandle, screen.getWidth(), screen.getHeight(), x, y, width, height); + } } public boolean setFullscreen(boolean fullscreen) { - // n/a in IntelGDL - System.err.println("setFullscreen n/a in IntelGDL"); - return false; + if(this.fullscreen!=fullscreen) { + int x,y,w,h; + this.fullscreen=fullscreen; + if(fullscreen) { + x = 0; y = 0; + w = screen.getWidth(); + h = screen.getHeight(); + } else { + x = nfs_x; + y = nfs_y; + w = nfs_width; + h = nfs_height; + } + if(DEBUG_IMPLEMENTATION || DEBUG_WINDOW_EVENT) { + System.err.println("IntelGDL Window fs: "+fullscreen+" "+x+"/"+y+" "+w+"x"+h); + } + if(0!=surfaceHandle) { + SetBounds0(surfaceHandle, screen.getWidth(), screen.getHeight(), x, y, w, h); + } + } + return fullscreen; } public void requestFocus() { @@ -126,9 +163,9 @@ public class Window extends com.sun.javafx.newt.Window { // protected static native boolean initIDs(); - private native long CreateSurface(long displayHandle, int width, int height); + private native long CreateSurface(long displayHandle, int scrn_width, int scrn_height, int x, int y, int width, int height); private native void CloseSurface(long displayHandle, long surfaceHandle); - + private native void SetBounds0(long surfaceHandle, int scrn_width, int scrn_height, int x, int y, int width, int height); private void updateBounds(int x, int y, int width, int height) { this.x = x; @@ -138,4 +175,5 @@ public class Window extends com.sun.javafx.newt.Window { } private long surfaceHandle; + private int nfs_width, nfs_height, nfs_x, nfs_y; } |