Package: gtk

GFlags gtk:text-buffer-notify-flags

Declaration

(gobject:define-gflags "GtkTextBufferNotifyFlags" text-buffer-notify-flags
  (:export t
   :type-initializer "gtk_text_buffer_notify_flags_get_type")
  (:before-insert #.(ash 1 0))
  (:after-insert #.(ash 1 1))
  (:before-delete #.(ash 1 2))
  (:after-delete #.(ash 1 3)))  

Values

:before-insert
Be notified before text is inserted into the underlying text buffer.
:after-insert
Be notified after text has been inserted into the underlying text buffer.
:before-delete
Be notified before text is deleted from the underlying text buffer.
:after-delete
Be notified after text has been deleted from the underlying text buffer.

Details

Values for the gtk:text-buffer-commit-notify callback function to denote the point of the notification. Since 4.16
 

See also

2024-10-26