Class ColumnFilterDialog<R>
- java.lang.Object
-
- docking.DialogComponentProvider
-
- docking.widgets.table.constraint.dialog.ColumnFilterDialog<R>
-
- Type Parameters:
R- the row type of the table being filtered.
- All Implemented Interfaces:
ActionContextProvider,TableFilterDialogModelListener,StatusListener,TaskListener
public class ColumnFilterDialog<R> extends DialogComponentProvider implements TableFilterDialogModelListener
Dialog for creating and editing column table filters.
-
-
Field Summary
-
Fields inherited from class docking.DialogComponentProvider
applyButton, cancelButton, dismissButton, okButton, rootPanel
-
-
Constructor Summary
Constructors Constructor Description ColumnFilterDialog(GTableFilterPanel<R> gTableFilterPanel, javax.swing.JTable table, RowObjectFilterModel<R> tableModel)Constructor
-
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.voidclose()protected voiddialogClosed()Override this method if you want to do something when the dialog is made invisiblevoideditorValueChanged(ColumnConstraintEditor<?> editor)Invoked when the user types into an editor component.voidfilterChanged(ColumnBasedTableFilter<R> newFilter)protected voidokCallback()The callback method for when the "OK" button is pressed.voidsetCloseCallback(Callback callback)The callback to call when the "Apply" or "Ok" button is pressed.voidstructureChanged()Invoked when any change to the structure of the ColumnFilterModel occurs such as adding entries-
Methods inherited from class docking.DialogComponentProvider
addAction, addApplyButton, addButton, addCancelButton, addDismissButton, addOKButton, addWorkPanel, alertMessage, alertMessage, cancelCallback, cancelCurrentTask, clearScheduledTask, clearStatusText, 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
-
ColumnFilterDialog
public ColumnFilterDialog(GTableFilterPanel<R> gTableFilterPanel, javax.swing.JTable table, RowObjectFilterModel<R> tableModel)
Constructor- Parameters:
gTableFilterPanel- the GTableFilterPanel that launched this dialog.table- the table being filtered.tableModel- the table model.
-
-
Method Detail
-
close
public void close()
- Overrides:
closein classDialogComponentProvider
-
dialogClosed
protected void dialogClosed()
Description copied from class:DialogComponentProviderOverride this method if you want to do something when the dialog is made invisible- Overrides:
dialogClosedin 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
-
filterChanged
public void filterChanged(ColumnBasedTableFilter<R> newFilter)
-
setCloseCallback
public void setCloseCallback(Callback callback)
The callback to call when the "Apply" or "Ok" button is pressed.- Parameters:
callback- the callback to execute to apply the filter.
-
editorValueChanged
public void editorValueChanged(ColumnConstraintEditor<?> editor)
Description copied from interface:TableFilterDialogModelListenerInvoked when the user types into an editor component.- Specified by:
editorValueChangedin interfaceTableFilterDialogModelListener- Parameters:
editor- the editor whose component has changed.
-
structureChanged
public void structureChanged()
Description copied from interface:TableFilterDialogModelListenerInvoked when any change to the structure of the ColumnFilterModel occurs such as adding entries- Specified by:
structureChangedin interfaceTableFilterDialogModelListener
-
-