gpt4 book ai didi

c - GTK+3 移植 : GdkDeviceAxis

转载 作者:太空宇宙 更新时间:2023-11-04 03:54:12 30 4
gpt4 key购买 nike

目前我有这个 gtk2 代码:

GList *input_devices = gdk_devices_list();
while(input_devices)
{
GdkDevice *device = (GdkDevice*)input_devices->data;
for(int i = 0; i < gdk_device_get_n_axes(device); i++)
{
GdkDeviceAxis* axis = &device->axes[i];
printf("[%f .. %f]\n", axis->min, axis->max);
}
input_devices = g_list_next(input_devices);
}

我正在尝试将其移植到 gtk3,但我不明白如何获取轴的最小值和最大值。

当前的 GDK3 API 甚至有可能吗?

最佳答案

轴限制 API 意外结束为私有(private),上游知道它并考虑使其在 GTK+ 3.10 中公开可用。

关于c - GTK+3 移植 : GdkDeviceAxis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18349754/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com