Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IUndoer<T>

Interface for an activity that uses Undo/Redo.

Type parameters

  • T: Widget

Hierarchy

Index

Properties

Properties

Optional isEnabled

isEnabled: function

An additional function that determines whether the extender is enabled. By default it is considered enabled if the application active widget is contained in the tracker. If this is also provided, the criterion is equivalent to tracker.has(widget) && extender.isEnabled(widget)

Type declaration

    • (widget: T): boolean
    • Parameters

      • widget: T

      Returns boolean

Optional redo

redo: function

Execute a redo command for the activity.

Type declaration

    • (widget: T): void
    • Parameters

      • widget: T

      Returns void

tracker

tracker: IWidgetTracker<T>

A widget tracker for identifying the appropriate extender.

Optional undo

undo: function

Execute an undo command for the activity.

Type declaration

    • (widget: T): void
    • Parameters

      • widget: T

      Returns void

Generated using TypeDoc