aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/nativewindow/win32-CustomJavaCode.java
blob: 54a7fa53a3f6a33a9149a543f587f433360d188a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  
  private static final long hInstance;

  static {
    NWJNILibLoader.loadNativeWindow("win32");
    hInstance = initIDs0();
    if( 0 == hInstance ) {
        throw new NativeWindowException("GDI: Could not initialized native stub");
    }
  }

  public static synchronized void initSingleton() {
  }
  private static native long initIDs0();

  public static long getModuleHandle() {
    return hInstance;
  }

  public static long CreateDummyWindow(int x, int y, int width, int height) {
      return CreateDummyWindow0(getModuleHandle(), x, y, width, height);
  }

  public static Point GetRelativeLocation(long src_win, long dest_win, int src_x, int src_y) {
    return (Point) GetRelativeLocation0(src_win, dest_win, src_x, src_y);
  }
  private static native Object GetRelativeLocation0(long src_win, long dest_win, int src_x, int src_y);