1

我目前正在尝试使用 JNI 将一些 WIN32API 函数转换为 Java。其中一项功能是RegisterClassEx。通常,我认为您会为注册的每个窗口类指定不同的回调函数,但由于我也将回调转换为 Java,因此这不起作用。

所以目前的计划是将一个jobject(定义为_jobject*)附加到窗口类并在回调中使用它。问题是:您只能使用 HWND 更改附加到窗口类的数据。据我所知,MSDN 文档没有指定可以仅使用窗口类 ATOM 或名称修改窗口类的函数。

因此我的问题是:有没有办法更改窗口类(使用类似SetClassLongPtr的东西),而不必使用有效的 HWND?

Java 端(我最终会添加一个公共函数来完成我真正需要做的事情):

public class c_winjni implements i_jnisystem {
    public interface i_wnd_proc {
        public int wnd_proc(long il_hwnd, int im_message, long im_wparam, long im_lparam);
    }

    private class c_wndclassex {
        public int im_style = 0;
        public i_wnd_proc ds_wnd_proc = null;
        public int im_cls_extra = 0;
        public int im_wnd_extra = 0;
        public long il_instance = 0L;
        public long il_icon = 0L;
        public long il_small_icon = 0L;
        public long il_cursor = 0L;
        public long il_background = 0L;
        public String str_menu_name = null;
        public String str_class_name = null;
    }

    private static native short registerClassEx(c_wndclassex ds_wcx, int[] imr_error);
}

C++ 方面

LRESULT CALLBACK default_window_callback_proc(HWND ds_hwnd, UINT im_message, WPARAM im_w_param, LPARAM im_l_param) {
    return DefWindowProc(ds_hwnd, im_message, im_w_param, im_l_param);
}

/*
 * Class:     c_winjni
 * Method:    registerClassEx
 * Signature: (Lc_winjni/c_wndclassex;[I)S
 */
JNIEXPORT_EX jshort JNICALL Java_c_1winjni_registerClassEx
    (JNIEnv *ads_env, jclass /*jds_class*/, jobject jds_wcx, jintArray jimr_error)
JNI_CPPEXCEPTION_TRAP_BEGIN {
    c_jnienv jds_env(ads_env);

    jint *aim_error = NULL;
    if (jimr_error && jds_env.get_array_length(jimr_error) > 0) {
        aim_error = jds_env.get_array_elements(jimr_error, NULL);
    }

    WNDCLASSEX ds_wcx;
    ds_wcx.cbSize = sizeof(WNDCLASSEX);
    ds_wcx.style = jds_env.get_int_field(jds_wcx, "im_style");

    // Imagine I'm checking whether field ds_wnd_proc in object jds_wcx is null.
    // If it is, use the default callback (as shown below).
    // If it isn't, set ds_wcx.lpfnWndProc to some other callback that reads
    // custom class data and calls a Java function of the object attached to the window class.
    ds_wcx.lpfnWndProc = default_window_callback_proc;

    ds_wcx.cbClsExtra = jds_env.get_int_field(jds_wcx, "im_cls_extra") + sizeof(LONG_PTR);
    ds_wcx.cbWndExtra = jds_env.get_int_field(jds_wcx, "im_wnd_extra");
    ds_wcx.hInstance = (HINSTANCE) jds_env.get_long_field(jds_wcx, "il_instance");
    ds_wcx.hIcon = (HICON) jds_env.get_long_field(jds_wcx, "il_icon");
    ds_wcx.hIconSm = (HICON) jds_env.get_long_field(jds_wcx, "il_small_icon");
    ds_wcx.hCursor = (HCURSOR) jds_env.get_long_field(jds_wcx, "il_cursor");
    ds_wcx.hbrBackground = (HBRUSH) jds_env.get_long_field(jds_wcx, "il_background");
    ct_jstring<TCHAR, 256> str_menu_name(ads_env, (jstring) jds_env.get_string_field(jds_wcx, "str_menu_name"));
    ds_wcx.lpszMenuName = str_menu_name.get_data();
    ct_jstring<TCHAR, 256> str_class_name(ads_env, (jstring) jds_env.get_string_field(jds_wcx, "str_class_name"));
    ds_wcx.lpszClassName = str_class_name.get_data();

    jshort result = RegisterClassEx(&ds_wcx);
    if (result == NULL && aim_error) {
        *aim_error = GetLastError();
    }

    // commit changes and invalidate pointer
    if (aim_error) {
        jds_env.release_array_elements(jimr_error, aim_error, 0);
    }
    return result;
} JNI_CPPEXCEPTION_TRAP_END2(ads_env, 0)
4

3 回答 3

1

您的问题的简单答案是只能使用SetClassLongPtr. 您需要一个有效的窗口句柄。

于 2013-03-05T13:17:17.893 回答
0

有趣的问题... WNDCLASSEX 是一个类,而 HWND 是窗口句柄。您可能将第一个视为 OO 类,第二个视为“指针”或“引用”对象(实例)。然而要修改这个类,你似乎必须通过那个类的一个实例......奇怪:)我可以想象这是最常见的场景(有 HWND)(顺便说一句,为什么你没有 HWND? )

一个想法:使用 ATOM 创建一个窗口(隐藏)并使用返回的 HWND 作为“参考”是否可以接受SetClassLongPtr

于 2013-03-05T08:35:57.520 回答
0

要获得注册类 ATOM 的有效 HWND,您可以使用FindWindow 函数

通过传递参数NULLlpWindowName您将获得与该类匹配的第一个窗口的句柄。当然,如果没有窗口实例存在,您将失败。但在这方面,假设相应的窗口类尚未注册可能是件好事。

于 2015-02-23T15:13:18.227 回答