Package: gdk

GFlags gdk:seat-capabilities

Declaration

(gobject:define-gflags "GdkSeatCapabilities" seat-capabilities
  (:export t
   :type-initializer "gdk_seat_capabilities_get_type")
  (:none 0)
  (:pointer #.(ash 1 0))
  (:touch #.(ash 1 1))
  (:tablet-stylus #.(ash 1 2))
  (:keyboard #.(ash 1 3))
  (:all-pointing 7)
  (:all 15))  

Values

:none
No input capabilities.
:pointer
The seat has a pointer, e.g. mouse.
:touch
The seat has touchscreen(s) attached.
:tablet-stylus
The seat has drawing tablet(s) attached.
:keyboard
The seat has keyboard(s) attached.
:all-pointing
The union of all pointing capabilities.
:all
The union of all capabilities.

Details

Flags describing the seat capabilities.
 

See also

#2023-3-7