X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fplat%2FPOSIX.java;h=fd1ebef44858f77558bad0044432ac41aa07d2d3;hb=93224727752b3da9a70bacd473c5f961efb3a297;hp=0be6ced3bf70637c2a6890d5b92d133749f5d030;hpb=80b1c566e72f8c30cf29da35f2ae918d7cee93d7;p=org.ibex.core.git diff --git a/src/org/xwt/plat/POSIX.java b/src/org/xwt/plat/POSIX.java index 0be6ced..fd1ebef 100644 --- a/src/org/xwt/plat/POSIX.java +++ b/src/org/xwt/plat/POSIX.java @@ -1,65 +1,29 @@ // Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL] package org.xwt.plat; -import java.awt.*; -import java.awt.image.*; import gnu.gcj.RawData; import java.net.*; import java.lang.reflect.*; import java.io.*; import java.util.*; -import java.awt.peer.*; import org.xwt.util.*; import org.xwt.*; -/** Platform implementation for POSIX compliant operating systems with an X11 Server */ +/** Platform implementation for POSIX compliant operating systems */ public class POSIX extends GCJ { - // Static Data /////////////////////////////////////////////////////////// - - /** - * When the user reads from the clipboard, the main thread blocks - * on this semaphore until we get an X11 SelectionNotify. Crude, - * but effective. We know that only one thread will ever block on - * this, since only one thread can ever be running JavaScript. - */ - public static Semaphore waiting_for_selection_event = new Semaphore(); - - /** our local (in-process) copy of the clipboard */ - public static String clipboard = null; - - /** map from Window's (casted to jlong, wrapped in java.lang.Long) to X11Surface objects */ - public static Hashtable windowToSurfaceMap = new Hashtable(); - - // General Methods /////////////////////////////////////////////////////// - protected String _getAltKeyName() { return System.getProperty("os.name", "").indexOf("SunOS") != -1 ? "Meta" : "Alt"; } - protected String[] _listFonts() { return fontList; } protected String getDescriptiveName() { return "GCJ Linux Binary"; } - protected Picture _createPicture(int[] data, int w, int h) { return new POSIX.X11Picture(data, w, h); } - protected DoubleBuffer _createDoubleBuffer(int w, int h, Surface owner) { return new POSIX.X11DoubleBuffer(w, h); } - protected Surface _createSurface(Box b, boolean framed) { return new X11Surface(b, framed); } - protected boolean _needsAutoClick() { return true; } - protected native int _getScreenWidth(); - protected native int _getScreenHeight(); - protected native String _getClipBoard(); - protected native void _setClipBoard(String s); - protected native int _stringWidth(String font, String text); - protected native int _getMaxAscent(String font); - protected native int _getMaxDescent(String font); - protected boolean _needsAutoDoubleClick() { return true; } - protected native void eventThread(); - private native void natInit(); - - /** returns the $BROWSER environment variable, since System.getenv() is useless */ - private static native String getBrowserEnvString(); + /** returns the value of the environment variable key, or null if no such key exists */ + protected native String _getEnv(String key); + /** spawns a process which is immune to SIGHUP */ private static native void spawnChildProcess(String[] command); protected void _newBrowserWindow(String url) { - String browserString = getBrowserEnvString(); + String browserString = getEnv("BROWSER"); if (browserString == null) { browserString = "netscape " + url; } else if (browserString.indexOf("%s") != -1) { @@ -72,292 +36,13 @@ public class POSIX extends GCJ { StringTokenizer st = new StringTokenizer(browserString, " "); String[] cmd = new String[st.countTokens()]; - for(int i=0; st.hasMoreTokens(); i++) { - cmd[i] = st.nextToken(); - System.out.println(i + ":" + cmd[i]); - } + for(int i=0; st.hasMoreTokens(); i++) cmd[i] = st.nextToken(); spawnChildProcess(cmd); } public POSIX() { } - public void init() { - natInit(); - (new Thread() { public void run() { eventThread(); } }).start(); - initFonts(); - } - - // X11Surface ///////////////////////////////////////////////////// - - /** Implements a Surface as an X11 Window */ - public static class X11Surface extends Surface { - - gnu.gcj.RawData window; - gnu.gcj.RawData gc; - boolean framed = false; - Semaphore waitForCreation = new Semaphore(); - - public native void setInvisible(boolean i); - public void _setMaximized(boolean m) { if (Log.on) Log.log(this, "POSIX/X11 can't maximize windows"); } - public native void setIcon(Picture p); - public native void _setMinimized(boolean b); - public native void setTitleBarText(String s); - public native void setSize(int w, int h); - public native void setLocation(int x, int y); - public native void natInit(); - public native void toFront(); - public native void toBack(); - public native void syncCursor(); - public native void _dispose(); - public native void setLimits(int minw, int minh, int maxw, int maxh); - public native void blit(DoubleBuffer s, int sx, int sy, int dx, int dy, int dx2, int dy2); - public native void dispatchEvent(gnu.gcj.RawData ev); - - public X11Surface(Box root, boolean framed) { - super(root); - this.framed = framed; - natInit(); - } - - } - - - // Our Subclass of Picture /////////////////////////////////////////////// - - /** - * Implements a Picture. No special X11 structure is created - * unless the image has no alpha (in which case a - * non-shared-pixmap DoubleBuffer is created), or all-or-nothing - * alpha (in which case a non-shared-pixmap DoubleBuffer with a - * stipple bitmap is created). - */ - public static class X11Picture implements Picture { - - int width; - int height; - int[] data = null; - public X11DoubleBuffer doublebuf = null; - - public int getWidth() { return width; } - public int getHeight() { return height; } - - public X11Picture(int[] data, int w, int h) { - this.data = data; - this.width = w; - this.height = h; - boolean needsStipple = false; - - // if we have any non-0x00, non-0xFF alphas, we can't double buffer ourselves - for(int i=0; i metric) { - metric = thismetric; - bestmatch = jfont; - } - } - - pf.parse(bestmatch); - String target = (String)nativeFontList.get(bestmatch); - if (pf.size == 0) { - int i = 0; - for(int j=0; j<6; j++) i = target.indexOf('-', i + 1); - target = target.substring(0, i + 1) + arg.size + target.substring(target.indexOf('-', i+1)); - } - RawData ret = fontStringToStruct(target); - if (ret == null) ret = fontStringToStruct("fixed"); - xwtFontToFontStruct.put(s, new WrappedRawData(ret)); - return ret; - } - - -}