Package: gtk

GFlags gtk:text-search-flags

Declaration

(gobject:define-gflags "GtkTextSearchFlags" text-search-flags
  (:export t
   :type-initializer "gtk_text_search_flags_get_type")
  (:visible-only 1)
  (:text-only 2)
  (:case-insensitive 4))  

Values

:visible-only
Search only visible data. A search match may have invisible text interspersed.
:text-only
Search only text. A match may have pixbufs or child widgets mixed inside the matched range.
:case-insensitive
The text will be matched regardless of what case it is in.

Details

Flags affecting how a search is done. If neither :visible-only nor :text-only are enabled, the match must be exact. The special 0xFFFC character will match embedded pixbufs or child widgets.
 

See also

2024-7-1