Package: gtk

GEnum gtk:accessible-text-granularity

Declaration

(gobject:define-genum "GtkAccessibleTextGranularity" accessible-text-granularity
  (:export t
   :type-initializer "gtk_accessible_text_granularity_get_type")
  (:character 0)
  (:word 1)
  (:sentence 2)
  (:line 3)
  (:paragraph 4))  

Values

:character
Use the boundary between characters, including non-printing characters.
:word
Use the boundary between words, starting from the beginning of the current word and ending at the beginning of the next word.
:sentence
Use the boundary between sentences, starting from the beginning of the current sentence and ending at the beginning of the next sentence.
:line
Use the boundary between lines, starting from the beginning of the current line and ending at the beginning of the next line.
:paragraph
Use the boundary between paragraphs, starting from the beginning of the current paragraph and ending at the beginning of the next paragraph.

Details

The granularity for queries about the text contents of a gtk:accessible-text implementation. Since 4.14
 

See also

2024-11-5