Package: gtk

GEnum gtk:accessible-property

Declaration

(gobject:define-genum "GtkAccessibleProperty" accessible-property
  (:export t
   :type-initializer "gtk_accessible_property_get_type")
  (:autocomplete 0)
  (:description 1)
  (:has-popup 2)
  (:key-shortcuts 3)
  (:label 4)
  (:level 5)
  (:modal 6)
  (:multi-line 7)
  (:multi-selectable 8)
  (:orientation 9)
  (:placeholder 10)
  (:read-only 11)
  (:required 12)
  (:role-description 13)
  (:sort 14)
  (:value-max 15)
  (:value-min 16)
  (:value-now 17)
  (:value-text 18)
  (:help-text 19))  

Values

:autocomplete
Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for a combobox, searchbox, or textbox and specifies how predictions would be presented if they were made. Value type: gtk:accessible-autocomplete
:description
Defines a string value that describes or annotates the current element. Value type: string
:has-popup
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. Contrary to "aria-haspopup", it does not indicate the type of the element, as such it cannot be used to indicate the availability of more complex elements such as dialog. Value type: boolean
:key-shortcuts
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. The format of the value is a space-separated list of shortcuts, with each shortcut consisting of one or more modifiers (Control, Alt or Shift), followed by a non-modifier key, all separated by +. The WAI-ARIA reference specifies how to build keyboard shortcuts strings, with specific values for each key which are the same regardless of the language, so these strings cannot be built from localized key names. You can convert an accelerator into the matching key shortcuts label with the gtk:accelerator-accessible-label function. Examples: F2, Alt+F, Control+Shift+N. Value type: string
:label
Defines a string value that labels the current element. Value type: string
:level
Defines the hierarchical level of an element within a structure. Value type: integer
:modal
Indicates whether an element is modal when displayed. Value type: boolean
:multi-line
Indicates whether a text box accepts multiple lines of input or only a single line. Value type: boolean
:multi-selectable
Indicates that the user may select more than one item from the current selectable descendants. Value type: boolean
:orientation
Indicates whether the orientation of the element is horizontal, vertical, or unknown/ambiguous. Value type: gtk:orientation
:placeholder
Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format. Value type: string
:read-only
Indicates that the element is not editable, but is otherwise operable. Value type: boolean
:required
Indicates that user input is required on the element before a form may be submitted. Value type: boolean
:role-description
Defines a human-readable, author-localized description for the role of an element. Value type: string
:sort
Indicates if items in a table or grid are sorted in ascending or descending order. Possible property values are in the gtk:accessible-sort enumeration. Value type: gtk:accessible-sort
:value-max
Defines the maximum allowed value for a range widget. Value type: double
:value-min
Defines the minimum allowed value for a range widget. Value type: double
:value-now
Defines the current value for a range widget. Value type: double
:value-text
Defines the human readable text alternative of :value-now for a range widget. Value type: string
:help-text
Defines a string value that provides a description of non-standard keyboard interactions of the current element. Value type: string. Since 4.16

Details

The possible accessible properties of a gtk:accessible widget.
 

See also

2026-08-25