Package: gtk

GFlags gtk-text-search-flags

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.
(define-g-flags "GtkTextSearchFlags" gtk-text-search-flags
  (:export t
   :type-initializer "gtk_text_search_flags_get_type")
  (:visible-only 1)
  (:text-only 2)
  (:case-insensitive 4))  
: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.
 

See also

2021-6-13