Package docking.options.editor
Class OptionsDialog
java.lang.Object
docking.DialogComponentProvider
docking.ReusableDialogComponentProvider
docking.options.editor.OptionsDialog
- All Implemented Interfaces:
ActionContextProvider,StatusListener,TaskListener
Dialog for editing options within a tool.
-
Field Summary
Fields inherited from class docking.DialogComponentProvider
applyButton, buttonPanel, cancelButton, dismissButton, okButton, rootPanel -
Constructor Summary
ConstructorsConstructorDescriptionOptionsDialog(String title, String rootNodeName, Options[] options, OptionsEditorListener listener) Construct a new OptionsDialog.OptionsDialog(String title, String rootNodeName, Options[] options, OptionsEditorListener listener, boolean showRestoreDefaultsButton) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidThe callback method for when the "Apply" button is pressed.protected voidThe callback method for when the "Cancel" button is pressed.voiddisplayCategory(String category, String filterText) voiddispose()Disposes this dialog.protected voidThe callback method for when the "OK" button is pressed.voidsetSelectedPath(TreePath path) Methods inherited from class docking.ReusableDialogComponentProvider
closeMethods inherited from class docking.DialogComponentProvider
addAction, addApplyButton, addButton, addCancelButton, addDismissButton, addOKButton, addWorkPanel, alertMessage, alertMessage, cancelCurrentTask, clearScheduledTask, clearStatusText, closeDialog, createSharedActions, dialogClosed, dialogShown, dismissCallback, doInitialize, escapeCallback, executeProgressTask, getActionContext, getActions, getBackground, getBounds, getComponent, getDefaultButton, getDefaultSize, getDialogSize, getFocusComponent, getGlassPane, getHelpLocation, getId, getInitialLocation, getLocationOnScreen, getParent, getPreferredSize, getRememberLocation, getRememberSize, getStatusColor, getStatusLabel, getStatusText, getTaskMonitorComponent, getTaskScheduler, getTitle, getUseSharedLocation, hideTaskMonitorComponent, isApplyEnabled, isCancelEnabled, isDialogKeyBindingAction, isModal, isOKEnabled, isResizeable, isRunningTask, isShowing, isTransient, isVisible, notifyContextChanged, removeAction, removeButton, removeWorkPanel, repack, setAccessibleDescription, 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 Details
-
OptionsDialog
public OptionsDialog(String title, String rootNodeName, Options[] options, OptionsEditorListener listener) Construct a new OptionsDialog.- Parameters:
title- dialog titlerootNodeName- name to display for the root node in the treeoptions- editable optionslistener- listener notified when the apply button is hit.
-
OptionsDialog
public OptionsDialog(String title, String rootNodeName, Options[] options, OptionsEditorListener listener, boolean showRestoreDefaultsButton)
-
-
Method Details
-
dispose
public void dispose()Description copied from class:DialogComponentProviderDisposes this dialog. Only call this when the dialog is no longer used. Calling this method will close the dialog if it is open.- Overrides:
disposein classReusableDialogComponentProvider
-
getSelectedPath
-
setSelectedPath
-
cancelCallback
protected void cancelCallback()Description copied from class:DialogComponentProviderThe callback method for when the "Cancel" button is pressed. The default behavior is to call setVisible(false) and dispose() on the dialog.- Overrides:
cancelCallbackin classDialogComponentProvider
-
okCallback
protected void okCallback()Description copied from class:DialogComponentProviderThe callback method for when the "OK" button is pressed.- Overrides:
okCallbackin classDialogComponentProvider
-
applyCallback
protected void applyCallback()Description copied from class:DialogComponentProviderThe callback method for when the "Apply" button is pressed.- Overrides:
applyCallbackin classDialogComponentProvider
-
displayCategory
-