Package docking.options.editor
Class OptionsDialog
- java.lang.Object
-
- docking.DialogComponentProvider
-
- docking.options.editor.OptionsDialog
-
- All Implemented Interfaces:
ActionContextProvider,StatusListener,TaskListener
public class OptionsDialog extends DialogComponentProvider
Dialog for editing options within a tool.
-
-
Field Summary
-
Fields inherited from class docking.DialogComponentProvider
applyButton, cancelButton, dismissButton, okButton, rootPanel
-
-
Constructor Summary
Constructors Constructor Description OptionsDialog(java.lang.String title, java.lang.String rootNodeName, Options[] options, OptionsEditorListener listener)Construct a new OptionsDialog.OptionsDialog(java.lang.String title, java.lang.String rootNodeName, Options[] options, OptionsEditorListener listener, boolean showRestoreDefaultsButton)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidapplyCallback()The callback method for when the "Apply" button is pressed.protected voidcancelCallback()The callback method for when the "Cancel" button is pressed.voiddisplayCategory(java.lang.String category, java.lang.String filterText)voiddispose()javax.swing.tree.TreePathgetSelectedPath()protected voidokCallback()The callback method for when the "OK" button is pressed.voidsetSelectedPath(javax.swing.tree.TreePath path)-
Methods inherited from class docking.DialogComponentProvider
addAction, addApplyButton, addButton, addCancelButton, addDismissButton, addOKButton, addWorkPanel, alertMessage, alertMessage, cancelCurrentTask, clearScheduledTask, clearStatusText, close, dialogClosed, dialogShown, dismissCallback, doInitialize, escapeCallback, executeProgressTask, getActionContext, getActions, getBackground, getBounds, getComponent, getDefaultButton, getDefaultSize, getDialogSize, getFocusComponent, getGlassPane, getHelpLocatdion, getIntialLocation, getLocationOnScreen, getPreferredSize, getRemberSize, getRememberLocation, getStatusLabel, getStatusText, getTaskMonitorComponent, getTaskScheduler, getTitle, getUseSharedLocation, hideTaskMonitorComponent, isApplyEnabled, isCancelEnabled, isModal, isOKEnabled, isResizeable, isRunningTask, isShowing, isTransient, isVisible, main, 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
-
OptionsDialog
public OptionsDialog(java.lang.String title, java.lang.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(java.lang.String title, java.lang.String rootNodeName, Options[] options, OptionsEditorListener listener, boolean showRestoreDefaultsButton)
-
-
Method Detail
-
dispose
public void dispose()
-
getSelectedPath
public javax.swing.tree.TreePath getSelectedPath()
-
setSelectedPath
public void setSelectedPath(javax.swing.tree.TreePath path)
-
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
public void displayCategory(java.lang.String category, java.lang.String filterText)
-
-