X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FSurface.java;h=962a426b7acb768559fd08fcc323387aafadd794;hb=10d0296318104e8b9ac8afbea71ef118aa77387c;hp=5b2f2056b8c79335d7035a10d9fecd9db22b8e3c;hpb=eb7a559ca0e08e479348cbe39980481a20482775;p=org.ibex.core.git diff --git a/src/org/xwt/Surface.java b/src/org/xwt/Surface.java index 5b2f205..962a426 100644 --- a/src/org/xwt/Surface.java +++ b/src/org/xwt/Surface.java @@ -54,9 +54,6 @@ public abstract class Surface { // Public Members and State Variables ///////////////////////////////////////////////////////// - /** this is the box on this surface which the mouse was inside at the time that the currently-executing event was enqueued */ - public Box boxContainingMouse = null; - /** false if the surface has never been rendered; used to determine if the surface should be repositioned to be centered on the screen */ public boolean centerSurfaceOnRender = true; @@ -159,9 +156,8 @@ public abstract class Surface { else if (button == 3) { final Box who = root.whoIs(mousex, mousey); MessageQueue.add(new Message() { public void perform() { - Surface.this.boxContainingMouse = who; Platform.clipboardReadEnabled = true; - root.put("Press3", null, Boolean.TRUE); + root.put("Press3", Boolean.TRUE); Platform.clipboardReadEnabled = false; }}); } @@ -226,7 +222,7 @@ public abstract class Surface { Box b = (Box)keywatchers.elementAt(i); for(Box cur = b; cur != null; cur = cur.getParent()) if (cur.invisible) continue outer; - b.put("KeyPressed", null, key); + b.put("KeyPressed", key); } Platform.clipboardReadEnabled = false; } @@ -243,7 +239,7 @@ public abstract class Surface { Box b = (Box)keywatchers.elementAt(i); for(Box cur = b; cur != null; cur = cur.getParent()) if (cur.invisible) continue outer; - b.put("KeyReleased", null, key); + b.put("KeyReleased", key); } }}); } @@ -271,7 +267,7 @@ public abstract class Surface { // Root gets motion events outside itself (if trapped, of course) if (root.is_trapped("Move") && !root.inside(oldmousex, oldmousey) && !root.inside(mousex, mousey) && (button1 || button2 || button3)) - root.put("Move", null, Boolean.TRUE); + root.put("Move", Boolean.TRUE); root.Move(oldmousex, oldmousey, mousex, mousey); if (!cursor.equals(oldcursor)) syncCursor(); @@ -292,13 +288,13 @@ public abstract class Surface { protected final void PosChange(int x, int y) { root.set(Box.abs, 0, x); root.set(Box.abs, 1, y); - new SimpleMessage("PosChange", Boolean.TRUE, null); + new SimpleMessage("PosChange", Boolean.TRUE, root); } - protected final void Close() { new SimpleMessage("Close", Boolean.TRUE, null); } - protected final void Minimized(boolean b) { minimized = b; new SimpleMessage("Minimized", b ? Boolean.TRUE : Boolean.FALSE, null); } - protected final void Maximized(boolean b) { maximized = b; new SimpleMessage("Maximized", b ? Boolean.TRUE : Boolean.FALSE, null); } - protected final void Focused(boolean b) { new SimpleMessage("Focused", b ? Boolean.TRUE : Boolean.FALSE, null); } + protected final void Close() { new SimpleMessage("Close", Boolean.TRUE, root); } + protected final void Minimized(boolean b) { minimized = b; new SimpleMessage("Minimized", b ? Boolean.TRUE : Boolean.FALSE, root); } + protected final void Maximized(boolean b) { maximized = b; new SimpleMessage("Maximized", b ? Boolean.TRUE : Boolean.FALSE, root); } + protected final void Focused(boolean b) { new SimpleMessage("Focused", b ? Boolean.TRUE : Boolean.FALSE, root); } public static void Refresh() { MessageQueue.refresh(); } // the following value is split into two int's to work around GCJ bug java/6393 @@ -381,15 +377,12 @@ public abstract class Surface { _dispose(); // quit when all windows are closed - if (allSurfaces.size() == 0 && quitIfAllSurfacesGone) { - throw new Error(); - /* + if (allSurfaces.size() == 0 && quitIfAllSurfacesGone && Main.doneInitializing) { if (Log.on) { if (refreshableSurfaceWasCreated) Log.log(this, "exiting because last remaining surface was disposed"); else Log.log(this, "exiting because no surface was ever created"); } Platform.exit(); - */ } } @@ -436,11 +429,11 @@ public abstract class Surface { scarPicture.getWidth(), scarPicture.getHeight()); // sort of ugly; we can't use set() here because it will cause an infinite mutual recursion - root._size_0 = (short)width; - root._size_1 = (short)height; + root._size_0 = (int)width; + root._size_1 = (int)height; root.mark_for_prerender(); - root.put("SizeChange", null, Boolean.TRUE); + root.put("SizeChange", Boolean.TRUE); } while (root.needs_prerender || abort) { @@ -592,14 +585,8 @@ public abstract class Surface { MessageQueue.add(this); } - public void perform() { - Surface.this.boxContainingMouse = this.boxContainingMouse; - root.put(name, root, value); - } - - public String toString() { - return "SimpleMessage [name=" + name + ", value=" + value + "]"; - } + public void perform() { boxContainingMouse.put(name, value); } + public String toString() { return "SimpleMessage [name=" + name + ", value=" + value + "]"; } }