Package ghidra.app.script
Class MultipleOptionsDialog<T>
- java.lang.Object
-
- docking.DialogComponentProvider
-
- ghidra.app.script.MultipleOptionsDialog<T>
-
- All Implemented Interfaces:
ActionContextProvider
,StatusListener
,TaskListener
public class MultipleOptionsDialog<T> extends DialogComponentProvider
-
-
Field Summary
-
Fields inherited from class docking.DialogComponentProvider
applyButton, buttonPanel, cancelButton, dismissButton, okButton, rootPanel
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
MultipleOptionsDialog(java.lang.String title, java.lang.String message, java.util.List<T> choices, boolean includeSelectAllBox)
protected
MultipleOptionsDialog(java.lang.String title, java.lang.String message, java.util.List<T> choices, java.util.List<java.lang.String> stringRepresentationOfChoices, boolean includeSelectAllBox)
-
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.protected java.util.List<T>
getUserChoices()
protected boolean
isCanceled()
protected void
okCallback()
The callback method for when the "OK" button is pressed.protected void
setup(java.lang.String message)
-
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
-
-
-
-
Constructor Detail
-
MultipleOptionsDialog
protected MultipleOptionsDialog(java.lang.String title, java.lang.String message, java.util.List<T> choices, boolean includeSelectAllBox)
-
MultipleOptionsDialog
protected MultipleOptionsDialog(java.lang.String title, java.lang.String message, java.util.List<T> choices, java.util.List<java.lang.String> stringRepresentationOfChoices, boolean includeSelectAllBox)
-
-
Method Detail
-
setup
protected void setup(java.lang.String message)
-
okCallback
protected void okCallback()
Description copied from class:DialogComponentProvider
The callback method for when the "OK" button is pressed.- Overrides:
okCallback
in classDialogComponentProvider
-
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
-
isCanceled
protected boolean isCanceled()
-
getUserChoices
protected java.util.List<T> getUserChoices()
-
-