public abstract class ToggleAction extends AnAction implements Toggleable
AnAction.TransparentUpdate
ACTIONS_KEY, EMPTY_ARRAY
SELECTED_PROPERTY
Constructor and Description |
---|
ToggleAction() |
ToggleAction(java.lang.String text) |
ToggleAction(java.lang.String text,
java.lang.String description,
javax.swing.Icon icon) |
ToggleAction(java.util.function.Supplier<java.lang.String> text) |
ToggleAction(java.util.function.Supplier<java.lang.String> text,
javax.swing.Icon icon) |
ToggleAction(java.util.function.Supplier<java.lang.String> text,
java.util.function.Supplier<java.lang.String> description,
javax.swing.Icon icon) |
Modifier and Type | Method and Description |
---|---|
void |
actionPerformed(AnActionEvent e)
Implement this method to provide your action handler.
|
abstract boolean |
isSelected(AnActionEvent e)
Returns the selected (checked, pressed) state of the action.
|
abstract void |
setSelected(AnActionEvent e,
boolean state)
Sets the selected state of the action to the specified value.
|
void |
update(AnActionEvent e)
Updates the state of the action.
|
addTextOverride, applyTextOverride, beforeActionPerformedUpdate, copyFrom, copyShortcutFrom, displayTextInToolbar, getEventProject, getShortcutSet, getTemplatePresentation, getTemplateText, isDefaultIcon, isEnabledInModalContext, isInInjectedContext, isTransparentUpdate, registerCustomShortcutSet, registerCustomShortcutSet, registerCustomShortcutSet, registerCustomShortcutSet, setDefaultIcon, setEnabledInModalContext, setInjectedContext, setShortcutSet, startInTransaction, toString, unregisterCustomShortcutSet, useSmallerFontForTextInToolbar
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
isSelected, setSelected
isDumbAware
public ToggleAction()
public ToggleAction(java.lang.String text)
public ToggleAction(java.util.function.Supplier<java.lang.String> text)
public ToggleAction(java.lang.String text, java.lang.String description, javax.swing.Icon icon)
public ToggleAction(java.util.function.Supplier<java.lang.String> text, java.util.function.Supplier<java.lang.String> description, javax.swing.Icon icon)
public ToggleAction(java.util.function.Supplier<java.lang.String> text, javax.swing.Icon icon)
public final void actionPerformed(AnActionEvent e)
AnAction
actionPerformed
in class AnAction
e
- Carries information on the invocation placepublic abstract boolean isSelected(AnActionEvent e)
e
- the action event representing the place and context in which the selected state is queried.public abstract void setSelected(AnActionEvent e, boolean state)
e
- the action event which caused the state change.state
- the new selected state of the action.public void update(AnActionEvent e)
AnAction
AnAction.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.