TextSignalName

public enum TextSignalName : String, SignalNameProtocol

Undocumented

  • The “text-attributes-changed” signal is emitted when the text attributes of the text of an object which implements AtkText changes.

    Declaration

    Swift

    case textAttributesChanged = "text-attributes-changed"
  • The “text-caret-moved” signal is emitted when the caret position of the text of an object which implements AtkText changes.

    Declaration

    Swift

    case textCaretMoved = "text-caret-moved"
  • The “text-changed” signal is emitted when the text of the object which implements the AtkText interface changes, This signal will have a detail which is either “insert” or “delete” which identifies whether the text change was an insertion or a deletion.

    text-changed is deprecated: Use #AtkObject::text-insert or

    AtkObject::text-remove instead.

    Declaration

    Swift

    case textChanged = "text-changed"
  • The “text-insert” signal is emitted when a new text is inserted. If the signal was not triggered by the user (e.g. typing or pasting text), the “system” detail should be included.

    Declaration

    Swift

    case textInsert = "text-insert"
  • The “text-remove” signal is emitted when a new text is removed. If the signal was not triggered by the user (e.g. typing or pasting text), the “system” detail should be included.

    Declaration

    Swift

    case textRemove = "text-remove"
  • The “text-selection-changed” signal is emitted when the selected text of an object which implements AtkText changes.

    Declaration

    Swift

    case textSelectionChanged = "text-selection-changed"