JNA ClientToScreen?

时间:2015-10-04 21:49:46

标签: java jna

在解决如何使用JNA的ClientToScreen winapi函数时遇到问题。

我仍然得到0,0输出窗口句柄的坐标。 我引用了这个,但我确定我做得不对https://msdn.microsoft.com/en-us/library/windows/desktop/dd183434(v=vs.85).aspx

    public interface User32Ex extends W32APIOptions {
    User32Ex instance = (User32Ex) Native.loadLibrary("user32", User32Ex.class, DEFAULT_OPTIONS);
    boolean GetCursorPos(long[] lpPoint);
    WinDef.HWND WindowFromPoint(long point);
    boolean GetClientRect(WinDef.HWND hWnd, WinDef.RECT rect);
    boolean ClientToScreen(WinDef.HWND hWnd, int pt);
}



public void debug() throws InterruptedException {
    while (true) {
        long[] getPos = new long[1];
        User32Ex.instance.GetCursorPos(getPos);
        WinDef.HWND hwnd = User32Ex.instance.WindowFromPoint(getPos[0]);

        WinDef.RECT rect = new WinDef.RECT();
        User32Ex.instance.GetClientRect(hwnd, rect);
        User32Ex.instance.ClientToScreen(hwnd, rect.left);
        User32Ex.instance.ClientToScreen(hwnd, rect.right);

        System.out.println(rect.toRectangle().toString());
        Thread.sleep(1500);
    }
}

2 个答案:

答案 0 :(得分:1)

@technomage是正确的。您需要在WinDef.POINT rect参数中使用int代替ClientToScreen()

如果有人在寻找有效的问题解决方案,请访问下面。 每隔3秒,就会记录一次窗口内部客户端协调桌面位置的信息。

说明。

User32ForClientRect接口中,我们用JNA加载user32.dll并定义了一些方法。 我们不使用JNA接口中已经实现的User32方法的原因很简单。本案例中所需的方法未在JNA中实现。

方法:

  • FindWindow-它包含在JNA中

    获取窗口句柄 HWND


  • GetClientRect

    检索窗口的高度和高度。到 rect.right,rect.bottom


  • ClientToScreen

    获取窗口内部客户端桌面的位置。 左/上角坐标


示例:

package application.playground;

import com.sun.jna.Native;
import com.sun.jna.platform.win32.WinDef;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

import java.awt.*;

public class ClientRectExample {
    interface User32ForClientRect extends StdCallLibrary {
        User32ForClientRect INSTANCE = Native.loadLibrary("user32", User32ForClientRect.class,
                W32APIOptions.DEFAULT_OPTIONS);
        WinDef.HWND FindWindow(String lpClassName, String lpWindowName);
        boolean GetClientRect(WinDef.HWND hWnd, WinDef.RECT rect);
        boolean ClientToScreen(WinDef.HWND hWnd, WinDef.POINT lpPoint);
    }

    public static void main(String[] args) {
        while (true) {
            try {
                Rectangle rectangle = ClientRectExample.getClientRect("WindowName");
                System.out.println(rectangle);
                Thread.sleep(3000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public static Rectangle getClientRect(String startOfWindowName) {
        WinDef.HWND hWnd = User32ForClientRect.INSTANCE.FindWindow(null, startOfWindowName);
        WinDef.POINT getPos = new WinDef.POINT();
        WinDef.RECT rect = new WinDef.RECT();
        User32ForClientRect.INSTANCE.GetClientRect(hWnd, rect);
        User32ForClientRect.INSTANCE.ClientToScreen(hWnd, getPos);

        return new Rectangle(getPos.x, getPos.y, rect.right, rect.bottom);
    }
}

答案 1 :(得分:0)

而不是int,您需要将LPPOINT传递给ClientToScreen(),或者更具体地说是指向POINT结构的指针(WinDef.POINT在JNA中)。