mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 12:35:22 +02:00
[276195] Avoid unnecessary selectionChanged when restoring connections
This commit is contained in:
parent
a527bfdda5
commit
c985ce92ca
1 changed files with 62 additions and 57 deletions
|
@ -64,11 +64,12 @@
|
||||||
* David McKnight (IBM) - [187739] [refresh] Sub Directories are collapsed when Parent Directory is Refreshed on Remote Systems
|
* David McKnight (IBM) - [187739] [refresh] Sub Directories are collapsed when Parent Directory is Refreshed on Remote Systems
|
||||||
* David Dykstal (IBM) - [233530] Not Prompted on Promptable Filters after using once by double click
|
* David Dykstal (IBM) - [233530] Not Prompted on Promptable Filters after using once by double click
|
||||||
* David McKnight (IBM) - [241744] Refresh collapse low level nodes which is expended before.
|
* David McKnight (IBM) - [241744] Refresh collapse low level nodes which is expended before.
|
||||||
* David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
|
* David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
|
||||||
* David McKnight (IBM) - [251625] Widget disposed exception when renaming/pasting a folder
|
* David McKnight (IBM) - [251625] Widget disposed exception when renaming/pasting a folder
|
||||||
* David McKnight (IBM) - [257721] Doubleclick doing special handling and expanding
|
* David McKnight (IBM) - [257721] Doubleclick doing special handling and expanding
|
||||||
* David McKnight (IBM) - [190805] [performance][dstore] Right-click > Disconnect on a dstore connection is slow and spawns many Jobs
|
* David McKnight (IBM) - [190805] [performance][dstore] Right-click > Disconnect on a dstore connection is slow and spawns many Jobs
|
||||||
* David McKnight (IBM) - [190001] [refresh] Avoid unnecessary duplicate queries during drag&drop to filter
|
* David McKnight (IBM) - [190001] [refresh] Avoid unnecessary duplicate queries during drag&drop to filter
|
||||||
|
* Martin Oberhuber (Wind River) - [276195] Avoid unnecessary selectionChanged when restoring connections
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.ui.view;
|
package org.eclipse.rse.internal.ui.view;
|
||||||
|
@ -248,10 +249,10 @@ public class SystemView extends SafeTreeViewer
|
||||||
|
|
||||||
public ExpandRemoteObjects(List toExpand){
|
public ExpandRemoteObjects(List toExpand){
|
||||||
_toExpand = toExpand;
|
_toExpand = toExpand;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void done(IStatus status, Object result) {
|
public void done(IStatus status, Object result) {
|
||||||
|
|
||||||
if (Display.getCurrent() != null){ // on main thread
|
if (Display.getCurrent() != null){ // on main thread
|
||||||
execute();
|
execute();
|
||||||
}
|
}
|
||||||
|
@ -265,7 +266,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void execute()
|
private void execute()
|
||||||
{
|
{
|
||||||
// expand each previously expanded sub-node, recursively
|
// expand each previously expanded sub-node, recursively
|
||||||
|
@ -278,24 +279,24 @@ public class SystemView extends SafeTreeViewer
|
||||||
|
|
||||||
// if found, re-expand it
|
// if found, re-expand it
|
||||||
if (item != null && !item.isDisposed()) {
|
if (item != null && !item.isDisposed()) {
|
||||||
IRSECallback callback = getCallbackForSubChildren(itemToExpand, _toExpand);
|
IRSECallback callback = getCallbackForSubChildren(itemToExpand, _toExpand);
|
||||||
createChildren(item, callback);
|
createChildren(item, callback);
|
||||||
((TreeItem) item).setExpanded(true);
|
((TreeItem) item).setExpanded(true);
|
||||||
}
|
}
|
||||||
} else if (itemToExpand.data!=null) {
|
} else if (itemToExpand.data!=null) {
|
||||||
setExpandedState(itemToExpand.data, true);
|
setExpandedState(itemToExpand.data, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private IRSECallback getCallbackForSubChildren(ExpandedItem remoteParent, List itemsToExpand){
|
private IRSECallback getCallbackForSubChildren(ExpandedItem remoteParent, List itemsToExpand){
|
||||||
List subChildren = new ArrayList();
|
List subChildren = new ArrayList();
|
||||||
|
|
||||||
|
|
||||||
String parentName = remoteParent.remoteName;
|
String parentName = remoteParent.remoteName;
|
||||||
Object parent = remoteParent.data;
|
Object parent = remoteParent.data;
|
||||||
String absoluteParentName = remoteParent.remoteAdapter.getAbsoluteName(parent);
|
String absoluteParentName = remoteParent.remoteAdapter.getAbsoluteName(parent);
|
||||||
|
|
||||||
for (int i = 0; i < itemsToExpand.size(); i++){
|
for (int i = 0; i < itemsToExpand.size(); i++){
|
||||||
ExpandedItem itemToExpand = (ExpandedItem) itemsToExpand.get(i);
|
ExpandedItem itemToExpand = (ExpandedItem) itemsToExpand.get(i);
|
||||||
if (parentName.equals(itemToExpand.remoteName)){
|
if (parentName.equals(itemToExpand.remoteName)){
|
||||||
|
@ -304,18 +305,18 @@ public class SystemView extends SafeTreeViewer
|
||||||
else if (itemToExpand.remoteName != null && itemToExpand.remoteName.startsWith(parentName)){
|
else if (itemToExpand.remoteName != null && itemToExpand.remoteName.startsWith(parentName)){
|
||||||
// child item
|
// child item
|
||||||
subChildren.add(itemToExpand);
|
subChildren.add(itemToExpand);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// some objects might need explicit comparison
|
// some objects might need explicit comparison
|
||||||
Object object = itemToExpand.data;
|
Object object = itemToExpand.data;
|
||||||
ISystemRemoteElementAdapter adapter = itemToExpand.remoteAdapter;
|
ISystemRemoteElementAdapter adapter = itemToExpand.remoteAdapter;
|
||||||
String childParentName = adapter.getAbsoluteParentName(object);
|
String childParentName = adapter.getAbsoluteParentName(object);
|
||||||
if (absoluteParentName.equals(childParentName)){
|
if (absoluteParentName.equals(childParentName)){
|
||||||
subChildren.add(itemToExpand);
|
subChildren.add(itemToExpand);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (subChildren.size() > 0){
|
if (subChildren.size() > 0){
|
||||||
return new ExpandRemoteObjects(subChildren);
|
return new ExpandRemoteObjects(subChildren);
|
||||||
}
|
}
|
||||||
|
@ -394,7 +395,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
protected ViewerFilter[] initViewerFilters = null;
|
protected ViewerFilter[] initViewerFilters = null;
|
||||||
|
|
||||||
protected List _setList;
|
protected List _setList;
|
||||||
|
|
||||||
protected boolean _allowAdapterToHandleDoubleClick = true;
|
protected boolean _allowAdapterToHandleDoubleClick = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -648,13 +649,13 @@ public class SystemView extends SafeTreeViewer
|
||||||
TreePath[] paths = s.getPathsFor(element);
|
TreePath[] paths = s.getPathsFor(element);
|
||||||
if (paths == null || paths.length == 0 || paths[0] == null) return;
|
if (paths == null || paths.length == 0 || paths[0] == null) return;
|
||||||
TreePath elementPath = paths[0];
|
TreePath elementPath = paths[0];
|
||||||
|
|
||||||
// bringing back handling at the adapter level here due to bug 257721
|
// bringing back handling at the adapter level here due to bug 257721
|
||||||
ISystemViewElementAdapter adapter = getViewAdapter(element);
|
ISystemViewElementAdapter adapter = getViewAdapter(element);
|
||||||
boolean alreadyHandled = false;
|
boolean alreadyHandled = false;
|
||||||
if (adapter != null && _allowAdapterToHandleDoubleClick)
|
if (adapter != null && _allowAdapterToHandleDoubleClick)
|
||||||
alreadyHandled = adapter.handleDoubleClick(element);
|
alreadyHandled = adapter.handleDoubleClick(element);
|
||||||
|
|
||||||
if (!alreadyHandled && isExpandable(element)) {
|
if (!alreadyHandled && isExpandable(element)) {
|
||||||
boolean expandedState = getExpandedState(elementPath);
|
boolean expandedState = getExpandedState(elementPath);
|
||||||
setExpandedState(elementPath, !expandedState);
|
setExpandedState(elementPath, !expandedState);
|
||||||
|
@ -1779,8 +1780,12 @@ public class SystemView extends SafeTreeViewer
|
||||||
if (!getControl().isDisposed()) {
|
if (!getControl().isDisposed()) {
|
||||||
ResourceChangedJob job = new ResourceChangedJob(event, this);
|
ResourceChangedJob job = new ResourceChangedJob(event, this);
|
||||||
job.setPriority(Job.INTERACTIVE);
|
job.setPriority(Job.INTERACTIVE);
|
||||||
//job.setUser(true);
|
if (Display.getCurrent() != null) {
|
||||||
job.schedule();
|
job.runInUIThread(null);
|
||||||
|
} else {
|
||||||
|
// job.setUser(true);
|
||||||
|
job.schedule();
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
Display display = Display.getCurrent();
|
Display display = Display.getCurrent();
|
||||||
try {
|
try {
|
||||||
|
@ -1904,7 +1909,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
if (debug) {
|
if (debug) {
|
||||||
logDebugMsg("SV event: EVENT_ADD "); //$NON-NLS-1$
|
logDebugMsg("SV event: EVENT_ADD "); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
clearSelection();
|
// clearSelection();
|
||||||
//refresh(parent);t
|
//refresh(parent);t
|
||||||
parentItem = findItem(parent);
|
parentItem = findItem(parent);
|
||||||
if (parentItem == null) return Status.OK_STATUS;
|
if (parentItem == null) return Status.OK_STATUS;
|
||||||
|
@ -1970,7 +1975,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
{
|
{
|
||||||
createTreeItem(parentItem, src, pos);
|
createTreeItem(parentItem, src, pos);
|
||||||
}
|
}
|
||||||
setSelection(new StructuredSelection(src), true);
|
// setSelection(new StructuredSelection(src), true);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ISystemResourceChangeEvents.EVENT_ADD_MANY:
|
case ISystemResourceChangeEvents.EVENT_ADD_MANY:
|
||||||
|
@ -2188,12 +2193,12 @@ public class SystemView extends SafeTreeViewer
|
||||||
} else {
|
} else {
|
||||||
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
||||||
update(srcs[s], properties); // for refreshing non-structural properties in viewer when model changes
|
update(srcs[s], properties); // for refreshing non-structural properties in viewer when model changes
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
||||||
update(srcs[s], properties); // for refreshing non-structural properties in viewer when model changes
|
update(srcs[s], properties); // for refreshing non-structural properties in viewer when model changes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -2204,7 +2209,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
} else {
|
} else {
|
||||||
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
||||||
update(src, properties); // for refreshing non-structural properties in viewer when model changes
|
update(src, properties); // for refreshing non-structural properties in viewer when model changes
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
properties[0] = IBasicPropertyConstants.P_IMAGE;
|
||||||
|
@ -3306,9 +3311,9 @@ public class SystemView extends SafeTreeViewer
|
||||||
TreeItem matchedItem = (TreeItem)match;
|
TreeItem matchedItem = (TreeItem)match;
|
||||||
Object data = matchedItem.getData();
|
Object data = matchedItem.getData();
|
||||||
boolean wasExpanded = matchedItem.getExpanded();
|
boolean wasExpanded = matchedItem.getExpanded();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
smartRefresh(new TreeItem[] { matchedItem }); // refresh the remote object
|
smartRefresh(new TreeItem[] { matchedItem }); // refresh the remote object
|
||||||
if (firstSelection && // for now, we just select the first binary occurrence we find
|
if (firstSelection && // for now, we just select the first binary occurrence we find
|
||||||
(data == remoteObject)) // same binary object as given?
|
(data == remoteObject)) // same binary object as given?
|
||||||
|
@ -3322,8 +3327,8 @@ public class SystemView extends SafeTreeViewer
|
||||||
allowExpand = rmtAdapter.hasChildren((IAdaptable)data);
|
allowExpand = rmtAdapter.hasChildren((IAdaptable)data);
|
||||||
}
|
}
|
||||||
if (allowExpand && wasExpanded && !getExpanded(matchedItem)) // assume if callers wants to select kids that they want to expand parent
|
if (allowExpand && wasExpanded && !getExpanded(matchedItem)) // assume if callers wants to select kids that they want to expand parent
|
||||||
{
|
{
|
||||||
createChildren(matchedItem);
|
createChildren(matchedItem);
|
||||||
setExpanded(matchedItem, true);
|
setExpanded(matchedItem, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3462,16 +3467,16 @@ public class SystemView extends SafeTreeViewer
|
||||||
*/
|
*/
|
||||||
protected void internalRefreshStruct(Widget widget, Object element, boolean updateLabels) {
|
protected void internalRefreshStruct(Widget widget, Object element, boolean updateLabels) {
|
||||||
if (widget instanceof TreeItem)
|
if (widget instanceof TreeItem)
|
||||||
{
|
{
|
||||||
ContextObjectWithViewer contextObject = getContextObject((TreeItem)widget);
|
ContextObjectWithViewer contextObject = getContextObject((TreeItem)widget);
|
||||||
IRSECallback callback = null;
|
IRSECallback callback = null;
|
||||||
|
|
||||||
ArrayList expandedChildren = new ArrayList();
|
ArrayList expandedChildren = new ArrayList();
|
||||||
if (widget instanceof TreeItem){
|
if (widget instanceof TreeItem){
|
||||||
TreeItem currItem = (TreeItem)widget;
|
TreeItem currItem = (TreeItem)widget;
|
||||||
gatherExpandedChildren(currItem, currItem, expandedChildren);
|
gatherExpandedChildren(currItem, currItem, expandedChildren);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (expandedChildren.size() > 0){
|
if (expandedChildren.size() > 0){
|
||||||
callback = new ExpandRemoteObjects(expandedChildren);
|
callback = new ExpandRemoteObjects(expandedChildren);
|
||||||
contextObject.setCallback(callback);
|
contextObject.setCallback(callback);
|
||||||
|
@ -3795,11 +3800,11 @@ public class SystemView extends SafeTreeViewer
|
||||||
ourInternalRefresh(currItem, currItem.getData(), true, true); // dispose of children, update plus
|
ourInternalRefresh(currItem, currItem.getData(), true, true); // dispose of children, update plus
|
||||||
|
|
||||||
if (wasExpanded[idx]) {
|
if (wasExpanded[idx]) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
IRSECallback callback = new ExpandRemoteObjects(expandedChildren);
|
IRSECallback callback = new ExpandRemoteObjects(expandedChildren);
|
||||||
|
|
||||||
createChildren(currItem, callback); // re-expand
|
createChildren(currItem, callback); // re-expand
|
||||||
currItem.setExpanded(true);
|
currItem.setExpanded(true);
|
||||||
} else // hmm, item was not expanded so just flush its memory
|
} else // hmm, item was not expanded so just flush its memory
|
||||||
|
@ -3809,7 +3814,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
}
|
}
|
||||||
|
|
||||||
// for non-deferred queries
|
// for non-deferred queries
|
||||||
|
|
||||||
// 2. expand each previously expanded sub-node, recursively
|
// 2. expand each previously expanded sub-node, recursively
|
||||||
for (int idx = 0; idx < expandedChildren.size(); idx++) {
|
for (int idx = 0; idx < expandedChildren.size(); idx++) {
|
||||||
ExpandedItem itemToExpand = (ExpandedItem) expandedChildren.get(idx);
|
ExpandedItem itemToExpand = (ExpandedItem) expandedChildren.get(idx);
|
||||||
|
@ -3827,7 +3832,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
((TreeItem) item).setExpanded(true);
|
((TreeItem) item).setExpanded(true);
|
||||||
if (debug) System.out.println("Re-Expanded RemoteItem: " + itemToExpand.remoteName); //$NON-NLS-1$
|
if (debug) System.out.println("Re-Expanded RemoteItem: " + itemToExpand.remoteName); //$NON-NLS-1$
|
||||||
} else if (debug) System.out.println("Re-Expand of RemoteItem '" + itemToExpand.remoteName + "' failed. Not found"); //$NON-NLS-1$ //$NON-NLS-2$
|
} else if (debug) System.out.println("Re-Expand of RemoteItem '" + itemToExpand.remoteName + "' failed. Not found"); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
} else if (itemToExpand.data!=null) {
|
} else if (itemToExpand.data!=null) {
|
||||||
ExpandedItem nextItemToExpand = null;
|
ExpandedItem nextItemToExpand = null;
|
||||||
if (idx + 1< expandedChildren.size()){
|
if (idx + 1< expandedChildren.size()){
|
||||||
nextItemToExpand = (ExpandedItem)expandedChildren.get(idx + 1);
|
nextItemToExpand = (ExpandedItem)expandedChildren.get(idx + 1);
|
||||||
|
@ -3837,14 +3842,14 @@ public class SystemView extends SafeTreeViewer
|
||||||
List remainingExpandedChildren = new ArrayList(expandedChildren.size() - idx);
|
List remainingExpandedChildren = new ArrayList(expandedChildren.size() - idx);
|
||||||
for (int e = idx + 1; e < expandedChildren.size(); e++){
|
for (int e = idx + 1; e < expandedChildren.size(); e++){
|
||||||
remainingExpandedChildren.add(expandedChildren.get(e));
|
remainingExpandedChildren.add(expandedChildren.get(e));
|
||||||
}
|
}
|
||||||
|
|
||||||
Item item = findFirstRemoteItemReference(itemToExpand.remoteName, itemToExpand.subsystem, itemToExpand.parentItem);
|
Item item = findFirstRemoteItemReference(itemToExpand.remoteName, itemToExpand.subsystem, itemToExpand.parentItem);
|
||||||
if (item != null){
|
if (item != null){
|
||||||
IRSECallback callback = new ExpandRemoteObjects(remainingExpandedChildren);
|
IRSECallback callback = new ExpandRemoteObjects(remainingExpandedChildren);
|
||||||
createChildren(item, callback);
|
createChildren(item, callback);
|
||||||
((TreeItem) item).setExpanded(true);
|
((TreeItem) item).setExpanded(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // original approach
|
else { // original approach
|
||||||
setExpandedState(itemToExpand.data, true);
|
setExpandedState(itemToExpand.data, true);
|
||||||
|
@ -3861,8 +3866,8 @@ public class SystemView extends SafeTreeViewer
|
||||||
smartRefresh(element, true);
|
smartRefresh(element, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
protected ArrayList getExpandedChildren(TreeItem[] roots){
|
protected ArrayList getExpandedChildren(TreeItem[] roots){
|
||||||
ArrayList expandedChildren = new ArrayList();
|
ArrayList expandedChildren = new ArrayList();
|
||||||
for (int idx = 0; idx < roots.length; idx++) {
|
for (int idx = 0; idx < roots.length; idx++) {
|
||||||
|
@ -3881,7 +3886,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
}
|
}
|
||||||
return expandedChildren;
|
return expandedChildren;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Do an intelligent refresh of the given element. Can be null for full refresh
|
* Do an intelligent refresh of the given element. Can be null for full refresh
|
||||||
*/
|
*/
|
||||||
|
@ -3895,7 +3900,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
ArrayList expandedChildren = getExpandedChildren(roots);
|
ArrayList expandedChildren = getExpandedChildren(roots);
|
||||||
if (expandedChildren.size() > 0)
|
if (expandedChildren.size() > 0)
|
||||||
anyExpanded = true;
|
anyExpanded = true;
|
||||||
|
|
||||||
if (!anyExpanded)
|
if (!anyExpanded)
|
||||||
super.refresh();
|
super.refresh();
|
||||||
else {
|
else {
|
||||||
|
@ -6284,7 +6289,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
contextObject = (IContextObject)parentElementOrTreePath;
|
contextObject = (IContextObject)parentElementOrTreePath;
|
||||||
originalFilter = contextObject.getFilterReference();
|
originalFilter = contextObject.getFilterReference();
|
||||||
parentElementOrTreePath = contextObject.getModelObject();
|
parentElementOrTreePath = contextObject.getModelObject();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
List matches = new Vector();
|
List matches = new Vector();
|
||||||
|
@ -6303,7 +6308,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
Widget match = (Widget) matches.get(i);
|
Widget match = (Widget) matches.get(i);
|
||||||
Object data = null;
|
Object data = null;
|
||||||
try {
|
try {
|
||||||
data = match.getData();
|
data = match.getData();
|
||||||
}
|
}
|
||||||
catch (SWTException e){
|
catch (SWTException e){
|
||||||
// not sure why this occurs -logging it for now
|
// not sure why this occurs -logging it for now
|
||||||
|
@ -6592,7 +6597,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
if (cb != null){
|
if (cb != null){
|
||||||
parentElement.setCallback(cb);
|
parentElement.setCallback(cb);
|
||||||
}
|
}
|
||||||
|
|
||||||
Object[] children = getSortedChildren(parentElement);
|
Object[] children = getSortedChildren(parentElement);
|
||||||
if (children != null)
|
if (children != null)
|
||||||
{
|
{
|
||||||
|
@ -6611,7 +6616,7 @@ public class SystemView extends SafeTreeViewer
|
||||||
super.createChildren(widget);
|
super.createChildren(widget);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Overridden so that we can pass a wrapper IContextObject into the provider to get children instead
|
* Overridden so that we can pass a wrapper IContextObject into the provider to get children instead
|
||||||
* of the model object, itself
|
* of the model object, itself
|
||||||
|
@ -6681,13 +6686,13 @@ public class SystemView extends SafeTreeViewer
|
||||||
/**
|
/**
|
||||||
* This method is used to set whether or not the tree viewer allows the view adapter
|
* This method is used to set whether or not the tree viewer allows the view adapter
|
||||||
* for a selected object to handle a double-click. If so, the adapter implements it's
|
* for a selected object to handle a double-click. If so, the adapter implements it's
|
||||||
* own handleDoubleClickMethod() and returns whether or not the operation is complete
|
* own handleDoubleClickMethod() and returns whether or not the operation is complete
|
||||||
* such that the view does or does not need to do additional processing (such as expansion).
|
* such that the view does or does not need to do additional processing (such as expansion).
|
||||||
* Typically the method is called with <code>false</code> when the SystemView is used in a
|
* Typically the method is called with <code>false</code> when the SystemView is used in a
|
||||||
* dialog since, in that context, it makes no sense to respond to double-clicks by opening
|
* dialog since, in that context, it makes no sense to respond to double-clicks by opening
|
||||||
* in an editor. In contrast to this approach, SystemView.setEnabled(false) prevents any
|
* in an editor. In contrast to this approach, SystemView.setEnabled(false) prevents any
|
||||||
* handling of double-click (such as the tree expand) and disables the context menu.
|
* handling of double-click (such as the tree expand) and disables the context menu.
|
||||||
*
|
*
|
||||||
* @param flag whether to allow the adapter to handle the double click
|
* @param flag whether to allow the adapter to handle the double click
|
||||||
*/
|
*/
|
||||||
public void allowAdapterToHandleDoubleClick(boolean flag)
|
public void allowAdapterToHandleDoubleClick(boolean flag)
|
||||||
|
|
Loading…
Add table
Reference in a new issue