Class MakeProgramSelectionAction

java.lang.Object
docking.action.DockingAction
ghidra.util.table.actions.MakeProgramSelectionAction
All Implemented Interfaces:
DockingActionIf, HelpDescriptor

public class MakeProgramSelectionAction extends DockingAction
An action to make a program selection based on the given table's selection. For the context to work, the provider using this action must create an ActionContext that returns a context object that is the table passed to this action's constructor; otherwise, this action will not be enabled correctly.
  • Constructor Details

    • MakeProgramSelectionAction

      @Deprecated(forRemoval=true, since="10.2") public MakeProgramSelectionAction(String owner, GhidraTable table)
      Deprecated, for removal: This API element is subject to removal in a future version.
      use either of the other constructors
      Special constructor for clients that do not have a plugin. Clients using this constructor must override makeProgramSelection(ProgramSelection, ActionContext).

      Update: the preferred constructor for clients without a plugin is MakeProgramSelectionAction(Navigatable, String, GhidraTable).

      Parameters:
      owner - the action's owner
      table - the table needed for this action
    • MakeProgramSelectionAction

      public MakeProgramSelectionAction(Navigatable navigatable, String owner, GhidraTable table)
      Special constructor for clients that do not have a plugin. Clients using this constructor must override makeSelection(ActionContext).
      Parameters:
      navigatable - the navigatable that will be used to make selections; may not be null
      owner - the action's owner
      table - the table needed for this action
    • MakeProgramSelectionAction

      public MakeProgramSelectionAction(Plugin plugin, GhidraTable table)
      This normal constructor for this action. The given plugin will be used along with the given table to fire program selection events as the action is executed.
      Parameters:
      plugin - the plugin
      table - the table
  • Method Details

    • isAddToPopup

      public boolean isAddToPopup(ActionContext context)
      Description copied from interface: DockingActionIf
      method is used to determine if this action should be displayed on the current popup. This method will only be called if the action has popup PopupMenuData set.

      Generally, actions don't need to override this method as the default implementation will defer to the DockingActionIf.isEnabledForContext(ActionContext), which will have the effect of adding the action to the popup only if it is enabled for a given context. By overriding this method, you can change this behavior so that the action will be added to the popup, even if it is disabled for the context, by having this method return true even if the DockingActionIf.isEnabledForContext(ActionContext) method will return false, resulting in the action appearing in the popup menu, but begin disabled.

      Specified by:
      isAddToPopup in interface DockingActionIf
      Overrides:
      isAddToPopup in class DockingAction
      Parameters:
      context - the ActionContext from the active provider.
      Returns:
      true if this action is appropriate for the given context.
    • isEnabledForContext

      public boolean isEnabledForContext(ActionContext context)
      Description copied from interface: DockingActionIf
      Method used to determine if this action should be enabled for the given context.

      This is the method implementors override to control when the action may be used.

      This method will be called by the DockingWindowManager for actions on the global menuBar and toolBar and for actions that have a keyBinding.

      This method will be called whenever one of the following events occur:

      1. when the user invokes the action via its keyBinding,
      2. the user changes focus from one component provider to another,
      3. the user moves a component to another position in the window or into another window,
      4. a component provider reports a change in it's context,
      5. any plugin or software component reports a general change in context (calls the tool.contextChanged(ComponentProvider) with a null parameter).
      The default implementation will simply return this action's enablement state.
      Specified by:
      isEnabledForContext in interface DockingActionIf
      Overrides:
      isEnabledForContext in class DockingAction
      Parameters:
      context - the current ActionContext for the window.
      Returns:
      true if the action should be enabled for the context or false otherwise.
    • actionPerformed

      public void actionPerformed(ActionContext context)
      Description copied from interface: DockingActionIf
      method to actually perform the action logic for this action.
      Specified by:
      actionPerformed in interface DockingActionIf
      Specified by:
      actionPerformed in class DockingAction
      Parameters:
      context - the ActionContext object that provides information about where and how this action was invoked.
    • makeSelection

      @Deprecated(forRemoval=true, since="10.2") protected ProgramSelection makeSelection(ActionContext context)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Deprecated in favor of makeProgramSelection(ProgramSelection, ActionContext). Override that method instead of this one.
      Parameters:
      context - the context
      Returns:
      the selection
    • makeProgramSelection

      protected void makeProgramSelection(ProgramSelection selection, ActionContext context)