X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fplat%2FWin32.java;h=4a143941b83172ff69fc747d5064ef07754be2e6;hb=c6069948906645d974f46bdb96617a9a6a504636;hp=65f79ecc39f15b2337483e706e327bf03efac30a;hpb=8192dcbd3ba21e385ef2b9fdcb5d9eb98b3a1f25;p=org.ibex.core.git diff --git a/src/org/xwt/plat/Win32.java b/src/org/xwt/plat/Win32.java index 65f79ec..4a14394 100644 --- a/src/org/xwt/plat/Win32.java +++ b/src/org/xwt/plat/Win32.java @@ -1,4 +1,4 @@ -// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL] +// Copyright 2003 Adam Megacz, see the COPYING file for licensing [LGPL] package org.xwt.plat; import org.xwt.*; @@ -39,6 +39,8 @@ public class Win32 extends GCJ { public static native String getTempPath(); public static native void natInit(); + protected native String _fileDialog(String suggestedFileName, boolean write); + public Win32() { } public void init() { @@ -82,6 +84,14 @@ public class Win32 extends GCJ { int maxDescent; } + /** Called once XWT is initialized and the application is running. On Win32, we need to block the main thread + * on a semaphore because if the main thread exits, the whole application quits. */ + protected void _running() { + // gcj-win32 exit()'s when the original thread dies, so we have to deadlock ourselves + if (Log.on) Log.log(Main.class, "main thread blocking on new semaphore"); + new org.xwt.util.Semaphore().block(); + } + /** takes a parsed font and finds the closest platform-specific font */ static native Win32Font mapFont(Platform.ParsedFont pf); @@ -94,7 +104,7 @@ public class Win32 extends GCJ { if (pf.name.equals("serif")) pf.name = "Times New Roman"; else if (pf.name.equals("sansserif")) pf.name = "Arial"; else if (pf.name.equals("monospace")) pf.name = "Courier New"; - else if (pf.name.equals("dialog")) pf.name = "Arial"; + else if (pf.name.equals("dialog")) pf.name = "MS Sans Serif"; else if (pf.name.equals("tty")) pf.name = "FixedSys"; ret = mapFont(pf); @@ -105,10 +115,11 @@ public class Win32 extends GCJ { // Implementation of Platform methods ///////////////////////////////////////////////////////// + protected native String _getEnv(String key); protected boolean _needsAutoClick() { return true; } protected String getDescriptiveName() { return "GCJ Win32 Binary"; } protected Surface _createSurface(Box b, boolean framed) { return new Win32Surface(b, framed); } - protected DoubleBuffer _createDoubleBuffer(int w, int h, Surface owner) { return new Win32DoubleBuffer(w, h, (Win32Surface)owner); } + protected PixelBuffer _createDoubleBuffer(int w, int h, Surface owner) { return new Win32DoubleBuffer(w, h, (Win32Surface)owner); } protected Picture _createPicture(int[] b, int w, int h) { return new Win32Picture(b, w, h); } protected native int _getScreenWidth(); protected native int _getScreenHeight(); @@ -116,6 +127,68 @@ public class Win32 extends GCJ { protected native void _criticalAbort(String message); protected native String _getClipBoard(); protected native void _setClipBoard(String s); + protected boolean _isCaseSensitive() { return false; } + + private native void __detectProxy(String[] container); + + protected synchronized Proxy _detectProxy() { + + String[] container = new String[] { null, null, null }; + if (Log.on) Log.log(this, "accessing Win32 registry"); + __detectProxy(container); + if (container[2] == null && container[0] == null) { + if (Log.on) Log.log(this, "no proxy settings in the Win32 registry"); + return null; + } + + if (Log.on) Log.log(this, "PAC Script URL: " + container[2]); + if (Log.on) Log.log(this, "Proxy Server String: " + container[0]); + if (Log.on) Log.log(this, "Proxy Override String: " + container[1]); + + Proxy ret = new Proxy(); + if (container[2] != null) { + ret.proxyAutoConfigFunction = Proxy.getProxyAutoConfigFunction(container[2]); + if (ret.proxyAutoConfigFunction != null) return ret; + } + + if (container[0] == null) return null; + StringTokenizer st = new StringTokenizer(container[0], ";", false); + while(st.hasMoreTokens()) try { + String s = st.nextToken().trim(); + String protocol, host; + if (s.indexOf(':') == -1) { + continue; + } else if (s.indexOf("://") != -1) { + protocol = s.substring(0, s.indexOf("://")); + s = s.substring(s.indexOf("://") + 3); + host = s.substring(0, s.indexOf(':')); + } else if (s.indexOf('=') == -1) { + protocol = "http"; + host = s.substring(0, s.indexOf(':')); + } else { + protocol = s.substring(0, s.indexOf('=')); + host = s.substring(s.indexOf('=') + 1, s.indexOf(':')); + } + int port = Integer.parseInt(s.substring(s.indexOf(':') + 1)); + if (protocol.equals("http")) { + ret.httpProxyHost = host; + ret.httpProxyPort = port; + } else if (protocol.equals("https")) { + ret.httpsProxyHost = host; + ret.httpsProxyPort = port; + } else if (protocol.equals("socks")) { + ret.socksProxyHost = host; + ret.socksProxyPort = port; + } + } catch (NumberFormatException nfe) { } + + if (container[1] != null) { + st = new StringTokenizer(container[1], ";", false); + ret.excluded = new String[st.countTokens()]; + for(int i=0; st.hasMoreTokens(); i++) ret.excluded[i] = st.nextToken(); + } + return ret; + } protected native boolean _newBrowserWindow_(String url); protected void _newBrowserWindow(String url) { @@ -140,7 +213,7 @@ public class Win32 extends GCJ { boolean captured = false; public int hwnd = -1; - public int hdc = -1; + public int hdc = 0; public int current_cursor = default_cursor; @@ -150,11 +223,7 @@ public class Win32 extends GCJ { public native void natInit(boolean framed); public Win32Surface(Box b, final boolean framed) { super(b); - if (Log.on) Log.log(this, "before, hwnd = " + hwnd); - if (Log.on) Log.log(this, "before, hdc = " + hdc); natInit(framed); - if (Log.on) Log.log(this, "after, hwnd = " + hwnd); - if (Log.on) Log.log(this, "after, hdc = " + hdc); hwndToWin32SurfaceMap.put(new Integer(hwnd), this); } @@ -184,13 +253,13 @@ public class Win32 extends GCJ { public native void setTitleBarText(String s); public native void setIcon(Picture p); public native void _dispose(); - public native void blit(DoubleBuffer s, int sx, int sy, int dx, int dy, int dx2, int dy2); + public native void blit(PixelBuffer s, int sx, int sy, int dx, int dy, int dx2, int dy2); } // Win32Picture //////////////////////////////////////////////////////////////////////////// - public static class Win32Picture implements Picture { + public static class Win32Picture extends Picture { int w = 0, h = 0; int[] data = null; @@ -220,9 +289,9 @@ public class Win32 extends GCJ { } - // Win32DoubleBuffer ////////////////////////////////////////////////////////////////////////// + // Win32PixelBuffer ////////////////////////////////////////////////////////////////////////// - public static class Win32DoubleBuffer implements DoubleBuffer { + public static class Win32PixelBuffer extends DoubleBuffer { int w = 0; int h = 0; @@ -239,7 +308,7 @@ public class Win32 extends GCJ { public int getWidth() { return w; } public native void natInit(); - public Win32DoubleBuffer(int w, int h, Win32Surface owner) { + public Win32PixelBuffer(int w, int h, Win32Surface owner) { this.w = w; this.h = h; clipx2 = w;