Package ghidra.framework.main.datatree
Class UndoActionDialog
- java.lang.Object
-
- docking.DialogComponentProvider
-
- ghidra.framework.main.datatree.UndoActionDialog
-
- All Implemented Interfaces:
ActionContextProvider
,StatusListener
,TaskListener
public class UndoActionDialog extends DialogComponentProvider
Dialog that confirms undo of an action; specify whether a .keep file should be created on the undo of the action.
-
-
Field Summary
Fields Modifier and Type Field Description static int
CANCEL
-
Fields inherited from class docking.DialogComponentProvider
applyButton, buttonPanel, cancelButton, dismissButton, okButton, rootPanel
-
-
Constructor Summary
Constructors Constructor Description UndoActionDialog(java.lang.String title, javax.swing.ImageIcon icon, java.lang.String helpTag, java.lang.String actionString, java.util.List<DomainFile> fileList)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
cancelCallback()
The callback method for when the "Cancel" button is pressed.DomainFile[]
getSelectedDomainFiles()
protected void
okCallback()
The callback method for when the "OK" button is pressed.boolean
saveCopy()
int
showDialog(PluginTool tool)
Show the dialog; return an ID for the action that the user chose.-
Methods inherited from class docking.DialogComponentProvider
addAction, addApplyButton, addButton, addCancelButton, addDismissButton, addOKButton, addWorkPanel, alertMessage, alertMessage, applyCallback, cancelCurrentTask, clearScheduledTask, clearStatusText, close, dialogClosed, dialogShown, dismissCallback, dispose, doInitialize, escapeCallback, executeProgressTask, getActionContext, getActions, getBackground, getBounds, getComponent, getDefaultButton, getDefaultSize, getDialogSize, getFocusComponent, getGlassPane, getHelpLocatdion, getId, getIntialLocation, getLocationOnScreen, getParent, getPreferredSize, getRemberSize, getRememberLocation, getStatusColor, getStatusLabel, getStatusText, getTaskMonitorComponent, getTaskScheduler, getTitle, getUseSharedLocation, hideTaskMonitorComponent, isApplyEnabled, isCancelEnabled, isModal, isOKEnabled, isResizeable, isRunningTask, isShowing, isTransient, isVisible, notifyContextChanged, removeAction, removeButton, removeWorkPanel, repack, setApplyEnabled, setApplyToolTip, setBackground, setCancelButtonText, setCancelEnabled, setCancelToolTip, setCursor, setDefaultButton, setDefaultSize, setDialogSize, setDismissToolTip, setFocusComponent, setGlassPane, setHelpLocation, setInitialLocation, setMinimumSize, setMinimumSize, setOkButtonText, setOkEnabled, setOkToolTip, setPreferredSize, setRememberLocation, setRememberSize, setResizable, setStatusJustification, setStatusText, setStatusText, setStatusText, setTitle, setTransient, setUseSharedLocation, showProgressBar, showTaskMonitorComponent, stopProgressTimer, taskCancelled, taskCompleted, toFront, toString, waitForCurrentTask
-
-
-
-
Field Detail
-
CANCEL
public static final int CANCEL
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UndoActionDialog
public UndoActionDialog(java.lang.String title, javax.swing.ImageIcon icon, java.lang.String helpTag, java.lang.String actionString, java.util.List<DomainFile> fileList)
Constructor- Parameters:
fileList
- list of DomainFile objects to show in the list
-
-
Method Detail
-
cancelCallback
protected void cancelCallback()
Description copied from class:DialogComponentProvider
The callback method for when the "Cancel" button is pressed. The default behavior is to call setVisible(false) and dispose() on the dialog.- Overrides:
cancelCallback
in classDialogComponentProvider
-
okCallback
protected void okCallback()
Description copied from class:DialogComponentProvider
The callback method for when the "OK" button is pressed.- Overrides:
okCallback
in classDialogComponentProvider
-
showDialog
public int showDialog(PluginTool tool)
Show the dialog; return an ID for the action that the user chose.- Returns:
- OK, or CANCEL
-
getSelectedDomainFiles
public DomainFile[] getSelectedDomainFiles()
-
saveCopy
public boolean saveCopy()
-
-