|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.eclipse.jface.viewers.Viewer org.eclipse.jface.viewers.ContentViewer org.eclipse.jface.viewers.StructuredViewer
Abstract base implementation for structure-oriented viewers (trees, lists, tables). Supports custom sorting, filtering, and rendering.
Any number of viewer filters can be added to this viewer (using addFilter). When the viewer receives an update, it asks each of its filters if it is out of date, and refilters elements as required.
Field Summary |
Fields inherited from class org.eclipse.jface.viewers.Viewer |
WIDGET_DATA_KEY |
Constructor Summary | |
protected | StructuredViewer()
Creates a structured element viewer. |
Method Summary | |
void | addDoubleClickListener(IDoubleClickListener listener)
Adds a listener for double-clicks in this viewer. |
void | addDragSupport(int operations,
Transfer[] transferTypes,
DragSourceListener listener)
Adds support for dragging items out of this viewer via a user drag-and-drop operation. |
void | addDropSupport(int operations,
Transfer[] transferTypes,
DropTargetListener listener)
Adds support for dropping items into this viewer via a user drag-and-drop operation. |
void | addFilter(ViewerFilter filter)
Adds the given filter to this viewer, and triggers refiltering and resorting of the elements. |
void | addOpenListener(IOpenListener listener)
Adds a listener for selection-open in this viewer. |
void | addPostSelectionChangedListener(ISelectionChangedListener listener)
Adds a listener for post selection changes in this selection provider. |
protected void | assertElementsNotNull(Object[] elements)
Asserts that the given array of elements is itself non- null and contains no null elements. |
protected void | associate(Object element,
Item item)
Associates the given element with the given widget. |
protected void | disassociate(Item item)
Disassociates the given SWT item from its corresponding element. |
protected abstract Widget | doFindInputItem(Object element)
Returns the widget in this viewer's control which represents the given element if it is the viewer's input. |
protected abstract Widget | doFindItem(Object element)
Returns the widget in this viewer's control which represent the given element. |
protected abstract void | doUpdateItem(Widget item,
Object element,
boolean fullMap)
Copies the attributes of the given element into the given SWT item. |
protected boolean | equals(Object elementA,
Object elementB)
Compares two elements for equality. |
protected Object[] | filter(Object[] elements)
Returns the result of running the given elements through the filters. |
protected Widget | findItem(Object element)
Finds the widget which represents the given element. |
protected void | fireDoubleClick(DoubleClickEvent event)
Notifies any double-click listeners that a double-click has been received. |
protected void | fireOpen(OpenEvent event)
Notifies any open event listeners that a open event has been received. |
protected void | firePostSelectionChanged(SelectionChangedEvent event)
Notifies any post selection listeners that a post selection event has been received. |
IElementComparer | getComparer()
Returns the comparator to use for comparing elements, or null if none has been set. |
protected Object[] | getFilteredChildren(Object parent)
Returns the filtered array of children of the given element. |
ViewerFilter[] | getFilters()
Returns this viewer's filters. |
protected Item | getItem(int x,
int y)
Returns the item at the given display-relative coordinates, or null if there is no item at that location. |
protected Object[] | getRawChildren(Object parent)
Returns the children of the given parent without sorting and filtering them. |
protected Object | getRoot()
Returns the root element. |
ISelection | getSelection()
The StructuredViewer implementation of this method returns the result as an IStructuredSelection. |
protected abstract List | getSelectionFromWidget()
Retrieves the selection, as a List, from the underlying widget. |
protected Object[] | getSortedChildren(Object parent)
Returns the sorted and filtered set of children of the given element. |
ViewerSorter | getSorter()
Returns this viewer's sorter, or null if it does not have one. |
protected void | handleDoubleSelect(SelectionEvent event)
Handles a double-click select event from the widget. |
protected void | handleInvalidSelection(ISelection invalidSelection,
ISelection newSelection)
Handles an invalid selection. |
protected void | handleLabelProviderChanged(LabelProviderChangedEvent event)
The StructuredViewer implementation of this ContentViewer method calls update if the event specifies that the label of a given element has changed, otherwise it calls super. |
protected void | handleOpen(SelectionEvent event)
Handles an open event from the OpenStrategy. |
protected void | handlePostSelect(SelectionEvent e)
Handles a post select event from the widget. |
protected void | handleSelect(SelectionEvent event)
Handles a select event from the widget. |
protected boolean | hasFilters()
Returns whether this viewer has any filters. |
protected void | hookControl(Control control)
Adds event listener hooks to the given control. |
protected abstract void | internalRefresh(Object element)
Refreshes this viewer starting at the given element. |
protected void | internalRefresh(Object element,
boolean updateLabels)
Refreshes this viewer starting at the given element. |
protected void | mapElement(Object element,
Widget item)
Adds the element item pair to the element map. |
protected boolean | needsRefilter(Object element,
String property)
Determines whether a change to the given property of the given element would require refiltering and/or resorting. |
protected void | preservingSelection(Runnable updateCode)
Attempts to preserves the current selection across a run of the given code. |
void | refresh()
Refreshes this viewer completely with information freshly obtained from this viewer's model. |
void | refresh(boolean updateLabels)
Refreshes this viewer with information freshly obtained from this viewer's model. |
void | refresh(Object element)
Refreshes this viewer starting with the given element. |
void | refresh(Object element,
boolean updateLabels)
Refreshes this viewer starting with the given element. |
protected void | refreshItem(Widget widget,
Object element)
Refreshes the given TableItem with the given element. |
void | removeDoubleClickListener(IDoubleClickListener listener)
Removes the given double-click listener from this viewer. |
void | removeFilter(ViewerFilter filter)
Removes the given filter from this viewer, and triggers refiltering and resorting of the elements if required. |
void | removeOpenListener(IOpenListener listener)
Removes the given open listener from this viewer. |
void | removePostSelectionChangedListener(ISelectionChangedListener listener)
Removes the given listener for post selection changes from this selection provider. |
void | resetFilters()
Discards this viewer's filters and triggers refiltering and resorting of the elements. |
abstract void | reveal(Object element)
Ensures that the given element is visible, scrolling the viewer if necessary. |
void | setComparer(IElementComparer comparer)
Sets the comparator to use for comparing elements, or null to use the default equals and hashCode methods on the elements themselves. |
void | setContentProvider(IContentProvider provider)
Sets the content provider used by this viewer. |
void | setInput(Object input)
The ContentViewer implementation of this Viewer method invokes inputChanged on the content provider and then the inputChanged hook method. |
void | setSelection(ISelection selection,
boolean reveal)
Sets a new selection for this viewer and optionally makes it visible. |
protected void | setSelectionToWidget(ISelection selection,
boolean reveal)
Converts the selection to a List and calls setSelectionToWidget(List, boolean). |
protected abstract void | setSelectionToWidget(List l,
boolean reveal)
Parlays the given list of selected elements into selections on this viewer's control. |
void | setSorter(ViewerSorter sorter)
Sets this viewer's sorter and triggers refiltering and resorting of this viewer's element. |
void | setUseHashlookup(boolean enable)
Configures whether this structured viewer uses an internal hash table to speeds up the mapping between elements and SWT items. |
Widget | testFindItem(Object element)
Hook for testing. |
protected void | unmapAllElements()
Removes all elements from the map. |
protected void | unmapElement(Object element)
Removes the given element from the internal element to widget map. |
protected void | unmapElement(Object element,
Widget item)
Removes the given association from the internal element to widget map. |
void | update(Object[] elements,
String[] properties)
Updates the given elements' presentation when one or more of their properties change. |
void | update(Object element,
String[] properties)
Updates the given element's presentation when one or more of its properties changes. |
protected void | updateItem(Widget widget,
Object element)
Copies attributes of the given element into the given widget. |
protected void | updateSelection(ISelection selection)
Updates the selection of this viewer. |
protected boolean | usingElementMap()
Returns whether this structured viewer is configured to use an internal map to speed up the mapping between elements and SWT items. |
Methods inherited from class org.eclipse.jface.viewers.ContentViewer |
getContentProvider, getInput, getLabelProvider, handleDispose, labelProviderChanged, setLabelProvider |
Methods inherited from class org.eclipse.jface.viewers.Viewer |
addHelpListener, addSelectionChangedListener, fireHelpRequested, fireSelectionChanged, getControl, getData, handleHelpRequest, inputChanged, removeHelpListener, removeSelectionChangedListener, scrollDown, scrollUp, setData, setSelection |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.eclipse.jface.viewers.ISelectionProvider |
addSelectionChangedListener, removeSelectionChangedListener, setSelection |
Constructor Detail |
protected StructuredViewer()
Method Detail |
public void addDoubleClickListener(IDoubleClickListener listener)
public void addOpenListener(IOpenListener listener)
public void addPostSelectionChangedListener(ISelectionChangedListener listener)
public void addDragSupport(int operations, Transfer[] transferTypes, DragSourceListener listener)
public void addDropSupport(int operations, Transfer[] transferTypes, DropTargetListener listener)
public void addFilter(ViewerFilter filter)
protected void assertElementsNotNull(Object[] elements)
protected void associate(Object element, Item item)
protected void disassociate(Item item)
protected abstract Widget doFindInputItem(Object element)
This method is internal to the framework; subclassers should not call this method.
protected abstract Widget doFindItem(Object element)
This method is internal to the framework; subclassers should not call this method.
protected abstract void doUpdateItem(Widget item, Object element, boolean fullMap)
This method is internal to the framework; subclassers should not call this method.
protected boolean equals(Object elementA, Object elementB)
protected Object[] filter(Object[] elements)
protected final Widget findItem(Object element)
The default implementation of this method tries first to find the widget for the given element assuming that it is the viewer's input; this is done by calling doFindInputItem. If it is not found there, it is looked up in the internal element map provided that this feature has been enabled. If the element map is disabled, the widget is found via doFindInputItem.
protected void fireDoubleClick(DoubleClickEvent event)
protected void fireOpen(OpenEvent event)
protected void firePostSelectionChanged(SelectionChangedEvent event)
public IElementComparer getComparer()
protected Object[] getFilteredChildren(Object parent)
public ViewerFilter[] getFilters()
protected Item getItem(int x, int y)
The default implementation of this method returns null.
protected Object[] getRawChildren(Object parent)
Returns an empty array if the given parent is null.
protected Object getRoot()
The default implementation of this framework method forwards to getInput. Override if the root element is different from the viewer's input element.
public ISelection getSelection()
Subclasses do not typically override this method, but implement getSelectionFromWidget(List) instead.
protected abstract List getSelectionFromWidget()
protected Object[] getSortedChildren(Object parent)
public ViewerSorter getSorter()
protected void handleDoubleSelect(SelectionEvent event)
This method is internal to the framework; subclassers should not call this method.
protected void handleOpen(SelectionEvent event)
This method is internal to the framework; subclassers should not call this method.
protected void handleInvalidSelection(ISelection invalidSelection, ISelection newSelection)
This framework method is called if a model change picked up by a viewer results in an invalid selection. For instance if an element contained in the selection has been removed from the viewer, the viewer is free to either remove the element from the selection or to pick another element as its new selection. The default implementation of this method calls updateSelection. Subclasses may override it to implement a different strategy for picking a new selection when the old selection becomes invalid.
protected void handleLabelProviderChanged(LabelProviderChangedEvent event)
protected void handleSelect(SelectionEvent event)
This method is internal to the framework; subclassers should not call this method.
protected void handlePostSelect(SelectionEvent e)
This method is internal to the framework; subclassers should not call this method.
protected void hookControl(Control control)
All subclasses must call this method when their control is first established.
The ContentViewer implementation of this method hooks dispose events for the given control. Subclasses may override if they need to add other control hooks; however, super.hookControl must be invoked.
protected boolean hasFilters()
protected abstract void internalRefresh(Object element)
protected void internalRefresh(Object element, boolean updateLabels)
The default implementation simply calls internalRefresh(element), ignoring updateLabels.
If this method is overridden to do the actual refresh, then internalRefresh(Object element) should simply call internalRefresh(element, true).
protected void mapElement(Object element, Widget item)
This method is internal to the framework; subclassers should not call this method.
protected boolean needsRefilter(Object element, String property)
This method is internal to the framework; subclassers should not call this method.
protected void preservingSelection(Runnable updateCode)
The default implementation of this method:
public void refresh()
public void refresh(boolean updateLabels)
Calling refresh(true) has the same effect as refresh().
Note that the implementation may still obtain labels for existing elements even if updateLabels is false. The intent is simply to allow optimization where possible.
public void refresh(Object element)
Unlike the update methods, this handles structural changes to the given element (e.g. addition or removal of children). If only the given element needs updating, it is more efficient to use the update methods.
public void refresh(Object element, boolean updateLabels)
Unlike the update methods, this handles structural changes to the given element (e.g. addition or removal of children). If only the given element needs updating, it is more efficient to use the update methods.
protected final void refreshItem(Widget widget, Object element)
This method is internal to the framework; subclassers should not call this method.
public void removeOpenListener(IOpenListener listener)
public void removePostSelectionChangedListener(ISelectionChangedListener listener)
public void removeDoubleClickListener(IDoubleClickListener listener)
public void removeFilter(ViewerFilter filter)
public void resetFilters()
public abstract void reveal(Object element)
public void setContentProvider(IContentProvider provider)
The ContentViewer implementation of this method records the content provider in an internal state variable. Overriding this method is generally not required; however, if overriding in a subclass, super.setContentProvider must be invoked.
public final void setInput(Object input)
public void setSelection(ISelection selection, boolean reveal)
Subclasses must implement this method.
protected abstract void setSelectionToWidget(List l, boolean reveal)
Subclasses should override to set their selection based on the given list of elements.
protected void setSelectionToWidget(ISelection selection, boolean reveal)
Subclasses do not typically override this method, but implement setSelectionToWidget(List, boolean) instead.
public void setSorter(ViewerSorter sorter)
public void setUseHashlookup(boolean enable)
public void setComparer(IElementComparer comparer)
public Widget testFindItem(Object element)
protected void unmapAllElements()
This method is internal to the framework; subclassers should not call this method.
protected void unmapElement(Object element)
This method is internal to the framework; subclassers should not call this method.
protected void unmapElement(Object element, Widget item)
This method is internal to the framework; subclassers should not call this method.
public void update(Object[] elements, String[] properties)
This does not handle structural changes (e.g. addition or removal of elements), and does not update any other related elements (e.g. child elements). To handle structural changes, use the refresh methods instead.
This should be called when an element has changed in the model, in order to have the viewer accurately reflect the model. This method only affects the viewer, not the model.
Specifying which properties are affected may allow the viewer to optimize the update. For example, if the label provider is not affected by changes to any of these properties, an update may not actually be required. Specifing properties as null forces a full update of the given elements.
If the viewer has a sorter which is affected by a change to one of the properties, the elements' positions are updated to maintain the sort order.
If the viewer has a filter which is affected by a change to one of the properties, elements may appear or disappear if the change affects whether or not they are filtered out.
public void update(Object element, String[] properties)
This does not handle structural changes (e.g. addition or removal of elements), and does not update any other related elements (e.g. child elements). To handle structural changes, use the refresh methods instead.
This should be called when an element has changed in the model, in order to have the viewer accurately reflect the model. This method only affects the viewer, not the model.
Specifying which properties are affected may allow the viewer to optimize the update. For example, if the label provider is not affected by changes to any of these properties, an update may not actually be required. Specifing properties as null forces a full update of the element.
If the viewer has a sorter which is affected by a change to one of the properties, the element's position is updated to maintain the sort order.
If the viewer has a filter which is affected by a change to one of the properties, the element may appear or disappear if the change affects whether or not the element is filtered out.
protected final void updateItem(Widget widget, Object element)
This method is internal to the framework; subclassers should not call this method. Calls doUpdateItem(widget, element, true).
protected void updateSelection(ISelection selection)
This framework method should be called when the selection in the viewer widget changes.
The default implementation of this method notifies all selection change listeners recorded in an internal state variable. Overriding this method is generally not required; however, if overriding in a subclass, super.updateSelection must be invoked.
protected boolean usingElementMap()
The default implementation of this framework method checks whether the internal map has been initialized.
|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2004. All rights reserved.