Package: gtk

GFlags gtk-target-flags

Details

The gtk-target-flags flags is used to specify constraints on a target entry.
(define-g-flags "GtkTargetFlags" gtk-target-flags
  (:export t
   :type-initializer "gtk_target_flags_get_type")
  (:same-app 1)
  (:same-widget 2)
  (:other-app 4)
  (:other-widget 8))  
:same-app
If this is set, the target will only be selected for drags within a single application.
:same-widget
If this is set, the target will only be selected for drags within a single widget.
:other-app
If this is set, the target will not be selected for drags within a single application.
:other-widget
If this is set, the target will not be selected for drags within a single widget.
 

See also

2021-10-3