Package: gtk

GFlags gtk:target-flags

Declaration

(gobject:define-gflags "GtkTargetFlags" target-flags
  (:export t
   :type-initializer "gtk_target_flags_get_type")
  (:same-app 1)
  (:same-widget 2)
  (:other-app 4)
  (:other-widget 8))  

Values

: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.

Details

The gtk:target-flags flags is used to specify constraints on a target entry.
 

See also

2024-3-24