X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FSurface.java;h=5e517c834d0f0653676a1eabbcce6c297e275049;hb=7e9239a7088d4cd772a31a76e1a53e1c681638bc;hp=ae857452f334e7c67b460874ccd7c42095221f66;hpb=2ccad2219888c9942f62ae8b4d4207f655690948;p=org.ibex.core.git diff --git a/src/org/xwt/Surface.java b/src/org/xwt/Surface.java index ae85745..5e517c8 100644 --- a/src/org/xwt/Surface.java +++ b/src/org/xwt/Surface.java @@ -1,4 +1,4 @@ -// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] +// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL] package org.xwt; import org.bouncycastle.util.encoders.Base64; @@ -29,35 +29,34 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { public static Vec allSurfaces = new Vec(); /** When set to true, render() should abort as soon as possible and restart the rendering process */ - static volatile boolean abort = false; + volatile boolean abort = false; + volatile int pendingWidth = -1; + volatile int pendingHeight = -1; + volatile int actualWidth = -1; + volatile int actualHeight = -1; public static boolean alt = false; ///< true iff the alt button is pressed down, in real time public static boolean control = false; ///< true iff the control button is pressed down, in real time public static boolean shift = false; ///< true iff the shift button is pressed down, in real time public static boolean button1 = false; ///< true iff button 1 is depressed, in Scheduler-time public static boolean button2 = false; ///< true iff button 2 is depressed, in Scheduler-time - public static boolean button3 = false; ///< true iff button 3 is depressed, in Scheduler-time + public static boolean button3 = false; ///< true iff button 3 is depressed, in Scheduler-tiem // Instance Data /////////////////////////////////////////////////////////////////////// - Vec keywatchers = new Vec(); - public Box root; ///< The Box at the root of this surface public String cursor = "default"; ///< The active cursor to switch to when syncCursor() is called public int mousex; ///< x position of the mouse, in Scheduler-time public int mousey; ///< y position of the mouse, in Scheduler-time + public int _mousex; ///< x position of the mouse, in Scheduler-time + public int _mousey; ///< y position of the mouse, in Scheduler-time public int newmousex = -1; ///< x position of the mouse, in realtime public int newmousey = -1; ///< y position of the mouse, in realtime public boolean minimized = false; ///< True iff this surface is minimized, in real time public boolean maximized = false; ///< True iff this surface is maximized, in real time - private DirtyList dirtyRegions = new DirtyList(); ///< Dirty regions on the *screen* - private int width = 0; ///< The actual width of the surface - private int height = 0; ///< The actual height of the surface - public int getWidth() { return width; } - public int getHeight() { return height; } - + DirtyList dirtyRegions = new DirtyList(); ///< Dirty regions on the *screen* // Used For Simulating Clicks and DoubleClicks ///////////////////////////////////////////////// @@ -80,22 +79,15 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { public abstract void setTitleBarText(String s); ///< Sets the surface's title bar text, if applicable public abstract void setIcon(Picture i); ///< Sets the surface's title bar text, if applicable public abstract void _dispose(); ///< Destroy the surface + public void setLimits(int min_width, int min_height, int max_width, int max_height) { /* FIXME */ } - - // Sizing ///////////////////////////////////////////////////////////////////////////////// - - public void setLimits(int min_width, int min_height, int max_width, int max_height) { } - - public final void setWidth(int width) { setSize(width, this.height); } - public final void setHeight(int height) { setSize(this.width, height); } - public final void setSize(int width, int height) { - if (this.width == width && this.height == height) return; - this.width = Math.max(Main.scarImage.width, width); - this.height = Math.max(Main.scarImage.height, height); - _setSize(width, height); + protected void setSize(int w, int h) { + if (w == actualWidth && h == actualHeight) return; + actualWidth = w; + actualHeight = h; + _setSize(w, h); } - // Helper methods for subclasses //////////////////////////////////////////////////////////// protected final void Press(final int button) { @@ -106,14 +98,17 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { else if (button == 2) button2 = true; else if (button == 3) button3 = true; - if (button == 1) new SimpleMessage("Press1", T, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Press2", T, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Press1", T, root); + else if (button == 2) new SimpleMessage("_Press2", T, root); else if (button == 3) { - final Box who = Box.whoIs(root, mousex, mousey); - Scheduler.add(new Scheduler.Task() { public void perform() { + final Box who = root; + Scheduler.add(new Scheduler.Task() { public void perform() throws JSExn { Platform.clipboardReadEnabled = true; - root.putAndTriggerTraps("Press3", T); - Platform.clipboardReadEnabled = false; + try { + root.putAndTriggerTraps("_Press3", T); + } finally { + Platform.clipboardReadEnabled = false; + } }}); } } @@ -123,9 +118,9 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { else if (button == 2) button2 = false; else if (button == 3) button3 = false; - if (button == 1) new SimpleMessage("Release1", T, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Release2", T, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("Release3", T, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Release1", T, root); + else if (button == 2) new SimpleMessage("_Release2", T, root); + else if (button == 3) new SimpleMessage("_Release3", T, root); if (Platform.needsAutoClick() && Math.abs(last_press_x - mousex) < 5 && Math.abs(last_press_y - mousey) < 5) Click(button); last_press_x = Integer.MAX_VALUE; @@ -133,9 +128,9 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { } protected final void Click(int button) { - if (button == 1) new SimpleMessage("Click1", T, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("Click2", T, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("Click3", T, Box.whoIs(root, mousex, mousey)); + if (button == 1) new SimpleMessage("_Click1", T, root); + else if (button == 2) new SimpleMessage("_Click2", T, root); + else if (button == 3) new SimpleMessage("_Click3", T, root); if (Platform.needsAutoDoubleClick()) { long now = System.currentTimeMillis(); if (lastClickButton == button && now - lastClickTime < 350) DoubleClick(button); @@ -144,53 +139,6 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { } } - protected final void DoubleClick(int button) { - if (button == 1) new SimpleMessage("DoubleClick1", T, Box.whoIs(root, mousex, mousey)); - else if (button == 2) new SimpleMessage("DoubleClick2", T, Box.whoIs(root, mousex, mousey)); - else if (button == 3) new SimpleMessage("DoubleClick3", T, Box.whoIs(root, mousex, mousey)); - } - - /** Send a KeyPressed message; subclasses should not add the C- or A- prefixes or should they capitalize alphabet chars */ - protected final void KeyPressed(String key) { - if (key == null) return; - if (key.toLowerCase().endsWith("shift")) shift = true; else if (shift) key = key.toUpperCase(); - if (key.toLowerCase().equals("alt")) alt = true; else if (alt) key = "A-" + key; - if (key.toLowerCase().endsWith("control")) control = true; else if (control) key = "C-" + key; - Scheduler.add(new KMessage(key)); - } - - // This is implemented as a private static class instead of an anonymous class to work around a GCJ bug - private class KMessage implements Scheduler.Task { - String key = null; - public KMessage(String k) { key = k; } - public void perform() { - if (key.equals("C-v") || key.equals("A-v")) Platform.clipboardReadEnabled = true; - outer: for(int i=0; i root.width) w = root.width - x; if (y+h > root.height) h = root.height - y; if (w <= 0 || h <= 0) continue; + if (abort) return; blit(backbuffer, x, y, x, y, w + x, h + y); } } @@ -402,7 +378,12 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task { /** This is how subclasses signal a 'shallow dirty', indicating that although the backbuffer is valid, the screen is not */ public final void Dirty(int x, int y, int w, int h) { screenDirtyRegions.dirty(x, y, w, h); - Refresh(); + Scheduler.renderAll(); + } + + public void dirty(int x, int y, int w, int h) { + screenDirtyRegions.dirty(x, y, w, h); + super.dirty(x, y, w, h); } /** copies a region from the doublebuffer to this surface */