public abstract class EditorAction extends AnAction implements DumbAware, UpdateInBackground, LightEditCompatible
AnAction.TransparentUpdateACTIONS_KEY, EMPTY_ARRAY| Modifier | Constructor and Description |
|---|---|
protected |
EditorAction(EditorActionHandler defaultHandler) |
| Modifier and Type | Method and Description |
|---|---|
void |
actionPerformed(AnActionEvent e)
Implement this method to provide your action handler.
|
void |
actionPerformed(Editor editor,
DataContext dataContext) |
void |
beforeActionPerformedUpdate(AnActionEvent e)
Same as
AnAction.update(AnActionEvent) but is calls immediately before actionPerformed() as final check guard. |
protected void |
doSetupHandler(EditorActionHandler newHandler) |
protected Editor |
getEditor(DataContext dataContext) |
EditorActionHandler |
getHandler() |
void |
setInjectedContext(boolean worksInInjected)
Enables automatic detection of injected fragments in editor.
|
EditorActionHandler |
setupHandler(EditorActionHandler newHandler) |
void |
update(AnActionEvent e)
Updates the state of the action.
|
void |
update(Editor editor,
Presentation presentation,
DataContext dataContext) |
void |
updateForKeyboardAccess(Editor editor,
Presentation presentation,
DataContext dataContext) |
addTextOverride, applyTextOverride, copyFrom, copyShortcutFrom, displayTextInToolbar, getEventProject, getShortcutSet, getTemplatePresentation, getTemplateText, isDefaultIcon, isEnabledInModalContext, isInInjectedContext, isTransparentUpdate, registerCustomShortcutSet, registerCustomShortcutSet, registerCustomShortcutSet, registerCustomShortcutSet, setDefaultIcon, setEnabledInModalContext, setShortcutSet, startInTransaction, toString, unregisterCustomShortcutSet, useSmallerFontForTextInToolbarclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitisDumbAwareprotected EditorAction(EditorActionHandler defaultHandler)
public final EditorActionHandler setupHandler(EditorActionHandler newHandler)
protected void doSetupHandler(EditorActionHandler newHandler)
public EditorActionHandler getHandler()
public void setInjectedContext(boolean worksInInjected)
AnActionsetInjectedContext in class AnActionpublic final void actionPerformed(AnActionEvent e)
AnActionactionPerformed in class AnActione - Carries information on the invocation placeprotected Editor getEditor(DataContext dataContext)
public final void actionPerformed(Editor editor, DataContext dataContext)
public void update(Editor editor, Presentation presentation, DataContext dataContext)
public void updateForKeyboardAccess(Editor editor, Presentation presentation, DataContext dataContext)
public void beforeActionPerformedUpdate(AnActionEvent e)
AnActionAnAction.update(AnActionEvent) but is calls immediately before actionPerformed() as final check guard.
Default implementation delegates to AnAction.update(AnActionEvent).beforeActionPerformedUpdate in class AnActione - Carries information on the invocation place and data availablepublic void update(AnActionEvent e)
AnActionAnAction.actionPerformed(AnActionEvent) method and notify
the user that action cannot be executed if it's the case.
If the action is added to a toolbar, its "update" can be called twice a second, but only if there was
any user activity or a focus transfer. If your action's availability is changed
in absence of any of these events, please call ActivityTracker.getInstance().inc() to notify
action subsystem to update all toolbar actions when your subsystem's determines that its actions' visibility might be affected.