Package: gdk

GFlags gdk:axis-flags

Declaration

(gobject:define-gflags "GdkAxisFlags" axis-flags
  (:export t
   :type-initializer "gdk_axis_flags_get_type")
  (:x        #.(ash 1 1))
  (:y        #.(ash 1 2))
  (:delta-x  #.(ash 1 3))
  (:delta-y  #.(ash 1 4))
  (:pressure #.(ash 1 5))
  (:xtilt    #.(ash 1 6))
  (:ytilt    #.(ash 1 7))
  (:wheel    #.(ash 1 8))
  (:distance #.(ash 1 9))
  (:rotation #.(ash 1 10))
  (:slider   #.(ash 1 11)))  

Values

:x
x axis is present.
:y
y axis is present.
:delta-x
Scroll X delta axis is present.
:delta-y
Scroll Y delta axis is present
:pressure
Pressure axis is present.
:xtilt
x tilt axis is present.
:ytilt
y tilt axis is present.
:wheel
Wheel axis is present.
:distance
Distance axis is present.
:rotation
z-axis rotation is present.
:slider
Slider axis is present.

Details

Flags describing the current capabilities of a device/tool.
 

See also

2024-7-12