PROP_PRODUCT_ID,
PROP_SEAT,
PROP_NUM_TOUCHES,
+ PROP_AXES,
LAST_PROP
};
0,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS);
+ /**
+ * GdkDevice:axes:
+ *
+ * The axes currently available for this device.
+ *
+ * Since: 3.22
+ */
+ device_props[PROP_AXES] =
+ g_param_spec_flags ("axes",
+ P_("Axes"),
+ P_("Axes"),
+ GDK_TYPE_AXIS_FLAGS, 0,
+ G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (object_class, LAST_PROP, device_props);
case PROP_NUM_TOUCHES:
g_value_set_uint (value, device->num_touches);
break;
+ case PROP_AXES:
+ g_value_set_flags (value, device->axis_flags);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
for (i = device->axes->len - 1; i >= 0; i--)
g_array_remove_index (device->axes, i);
+ device->axis_flags = 0;
+
g_object_notify_by_pspec (G_OBJECT (device), device_props[PROP_N_AXES]);
+ g_object_notify_by_pspec (G_OBJECT (device), device_props[PROP_AXES]);
}
guint
device->axes = g_array_append_val (device->axes, axis_info);
pos = device->axes->len - 1;
+ device->axis_flags |= (1 << use);
+
g_object_notify_by_pspec (G_OBJECT (device), device_props[PROP_N_AXES]);
+ g_object_notify_by_pspec (G_OBJECT (device), device_props[PROP_AXES]);
return pos;
}
return device->seat;
}
+
+/**
+ * gdk_device_get_axes:
+ * @device: a #GdkDevice
+ *
+ * Returns the axes currently available on the device.
+ *
+ * Since: 3.22
+ **/
+GdkAxisFlags
+gdk_device_get_axes (GdkDevice *device)
+{
+ g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
+
+ return device->axis_flags;
+}
GDK_AXIS_LAST
} GdkAxisUse;
+/**
+ * GdkAxisFlags:
+ * @GDK_AXIS_FLAG_X: X axis is present
+ * @GDK_AXIS_FLAG_Y: Y axis is present
+ * @GDK_AXIS_FLAG_PRESSURE: Pressure axis is present
+ * @GDK_AXIS_FLAG_XTILT: X tilt axis is present
+ * @GDK_AXIS_FLAG_YTILT: Y tilt axis is present
+ * @GDK_AXIS_FLAG_WHEEL: Wheel axis is present
+ * @GDK_AXIS_FLAG_DISTANCE: Distance axis is present
+ * @GDK_AXIS_FLAG_ROTATION: Z-axis rotation is present
+ * @GDK_AXIS_FLAG_SLIDER: Slider axis is present
+ *
+ * Flags describing the current capabilities of a device/tool.
+ *
+ * Since: 3.22
+ */
+typedef enum
+{
+ GDK_AXIS_FLAG_X = 1 << GDK_AXIS_X,
+ GDK_AXIS_FLAG_Y = 1 << GDK_AXIS_Y,
+ GDK_AXIS_FLAG_PRESSURE = 1 << GDK_AXIS_PRESSURE,
+ GDK_AXIS_FLAG_XTILT = 1 << GDK_AXIS_XTILT,
+ GDK_AXIS_FLAG_YTILT = 1 << GDK_AXIS_YTILT,
+ GDK_AXIS_FLAG_WHEEL = 1 << GDK_AXIS_WHEEL,
+ GDK_AXIS_FLAG_DISTANCE = 1 << GDK_AXIS_DISTANCE,
+ GDK_AXIS_FLAG_ROTATION = 1 << GDK_AXIS_ROTATION,
+ GDK_AXIS_FLAG_SLIDER = 1 << GDK_AXIS_SLIDER,
+} GdkAxisFlags;
+
/**
* GdkDeviceType:
* @GDK_DEVICE_TYPE_MASTER: Device is a master (or virtual) device. There will
GDK_AVAILABLE_IN_3_20
GdkSeat *gdk_device_get_seat (GdkDevice *device);
+GDK_AVAILABLE_IN_3_22
+GdkAxisFlags gdk_device_get_axes (GdkDevice *device);
+
G_END_DECLS
#endif /* __GDK_DEVICE_H__ */