Package: gdk

Flags gdk-seat-capabilities

Details

Flags describing the seat capabilities.
(define-g-flags "GdkSeatCapabilities" gdk-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))  
: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.
 

See also

2020-11-4