X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fplat%2FWin32.java;h=0260252a6b90a13f3c53706fcee982404f117369;hb=93224727752b3da9a70bacd473c5f961efb3a297;hp=5485540eeda81922fe43be7bf3f1df0c8642ba6e;hpb=d527b4287c0d9eebe8ae30752ec0b531b930a480;p=org.ibex.core.git diff --git a/src/org/xwt/plat/Win32.java b/src/org/xwt/plat/Win32.java index 5485540..0260252 100644 --- a/src/org/xwt/plat/Win32.java +++ b/src/org/xwt/plat/Win32.java @@ -84,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); @@ -123,7 +131,7 @@ public class Win32 extends GCJ { private native void __detectProxy(String[] container); - protected synchronized HTTP.ProxyInfo _detectProxy() { + protected synchronized Proxy _detectProxy() { String[] container = new String[] { null, null, null }; if (Log.on) Log.log(this, "accessing Win32 registry"); @@ -137,9 +145,9 @@ public class Win32 extends GCJ { if (Log.on) Log.log(this, "Proxy Server String: " + container[0]); if (Log.on) Log.log(this, "Proxy Override String: " + container[1]); - HTTP.ProxyInfo ret = new HTTP.ProxyInfo(); + Proxy ret = new Proxy(); if (container[2] != null) { - ret.proxyAutoConfigFunction = HTTP.ProxyInfo.getProxyAutoConfigFunction(container[2]); + ret.proxyAutoConfigFunction = Proxy.getProxyAutoConfigFunction(container[2]); if (ret.proxyAutoConfigFunction != null) return ret; } @@ -205,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; @@ -251,7 +259,7 @@ public class Win32 extends GCJ { // Win32Picture //////////////////////////////////////////////////////////////////////////// - public static class Win32Picture implements Picture { + public static class Win32Picture extends Picture { int w = 0, h = 0; int[] data = null; @@ -283,7 +291,7 @@ public class Win32 extends GCJ { // Win32DoubleBuffer ////////////////////////////////////////////////////////////////////////// - public static class Win32DoubleBuffer implements DoubleBuffer { + public static class Win32DoubleBuffer extends DoubleBuffer { int w = 0; int h = 0;