Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2005-09-27 21:43:46 +0000
committernitind2005-09-27 21:43:46 +0000
commitd7a97cf7c932b1a9c8d479a87cd0be9bda84ea1a (patch)
tree238d40339660af7f6e60ba7326599a44a4316402 /bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal
parent10fdb1de3a43148676e41ff4dcc3cd88329d0cce (diff)
downloadwebtools.sourceediting-d7a97cf7c932b1a9c8d479a87cd0be9bda84ea1a.tar.gz
webtools.sourceediting-d7a97cf7c932b1a9c8d479a87cd0be9bda84ea1a.tar.xz
webtools.sourceediting-d7a97cf7c932b1a9c8d479a87cd0be9bda84ea1a.zip
Switch from propertySourceAdapters to using property sheet configuration
Diffstat (limited to 'bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal')
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/AdapterPropertySourceProvider.java34
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/ConfigurablePropertySheetPage.java54
2 files changed, 38 insertions, 50 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/AdapterPropertySourceProvider.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/AdapterPropertySourceProvider.java
deleted file mode 100644
index 9053fbad46..0000000000
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/AdapterPropertySourceProvider.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- * Jens Lukowski/Innoopract - initial renaming/restructuring
- *
- *******************************************************************************/
-package org.eclipse.wst.sse.ui.internal.properties;
-
-
-
-import org.eclipse.ui.views.properties.IPropertySource;
-import org.eclipse.ui.views.properties.IPropertySourceProvider;
-import org.eclipse.wst.sse.core.internal.provisional.INodeNotifier;
-
-
-public class AdapterPropertySourceProvider implements IPropertySourceProvider {
-
- public AdapterPropertySourceProvider() {
- super();
- }
-
- public IPropertySource getPropertySource(Object object) {
- if (object instanceof INodeNotifier) {
- return (IPropertySource) ((INodeNotifier) object).getAdapterFor(IPropertySource.class);
- }
- return null;
- }
-}
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/ConfigurablePropertySheetPage.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/ConfigurablePropertySheetPage.java
index 3722eaf7fe..0786476222 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/ConfigurablePropertySheetPage.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/properties/ConfigurablePropertySheetPage.java
@@ -15,6 +15,7 @@ package org.eclipse.wst.sse.ui.internal.properties;
import java.util.ArrayList;
import java.util.List;
+import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IStatusLineManager;
import org.eclipse.jface.action.IToolBarManager;
@@ -27,7 +28,9 @@ import org.eclipse.swt.widgets.TreeItem;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.part.IPageSite;
import org.eclipse.ui.views.properties.IPropertySheetEntry;
+import org.eclipse.ui.views.properties.IPropertySheetPage;
import org.eclipse.ui.views.properties.IPropertySource;
+import org.eclipse.ui.views.properties.IPropertySourceProvider;
import org.eclipse.ui.views.properties.PropertySheetPage;
import org.eclipse.wst.sse.ui.views.properties.IPropertySourceExtension;
import org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration;
@@ -39,21 +42,27 @@ import org.eclipse.wst.sse.ui.views.properties.PropertySheetConfiguration;
*/
public class ConfigurablePropertySheetPage extends PropertySheetPage {
- private static final boolean _DEBUG_ENTRY_SELECTION = false;
- private static final boolean _DEBUG_SELECTION = false;
+ private class NullPropertySheetConfiguration extends PropertySheetConfiguration {
+ public IPropertySourceProvider getPropertySourceProvider(IPropertySheetPage page) {
+ return null;
+ }
+ }
+
+ private static final boolean _DEBUG = "true".equalsIgnoreCase(Platform.getDebugOption("org.eclipse.wst.sse.ui/propertySheet")); //$NON-NLS-1$ //$NON-NLS-2$;;
+
private long _DEBUG_TIME = 0;
private PropertySheetConfiguration fConfiguration;
-
+ private ISelection fInput = null;
private IMenuManager fMenuManager;
+
private RemoveAction fRemoveAction;
+
private IStatusLineManager fStatusLineManager;
private IToolBarManager fToolBarManager;
- private final PropertySheetConfiguration NULL_CONFIGURATION = new PropertySheetConfiguration();
-
- private Object selectedEntry = null;
+ private final PropertySheetConfiguration NULL_CONFIGURATION = new NullPropertySheetConfiguration();
public ConfigurablePropertySheetPage() {
super();
@@ -77,10 +86,6 @@ public class ConfigurablePropertySheetPage extends PropertySheetPage {
}
public void handleEntrySelection(ISelection selection) {
- if (_DEBUG_ENTRY_SELECTION) {
- System.out.println("(P:entry " + selection);
- }
- selectedEntry = selection;
if (getControl() != null && !getControl().isDisposed() && selection != null) {
super.handleEntrySelection(selection);
fRemoveAction.setEnabled(!selection.isEmpty());
@@ -114,7 +119,7 @@ public class ConfigurablePropertySheetPage extends PropertySheetPage {
Object data = items[0].getData();
if (data instanceof IPropertySheetEntry) {
IPropertySheetEntry entry = (IPropertySheetEntry) data;
- ISelection selection = getConfiguration().getSelection(null, new StructuredSelection(selectedNodes));
+ ISelection selection = getConfiguration().getInputSelection(null, new StructuredSelection(selectedNodes));
if (selection != null && !selection.isEmpty() && selection instanceof IStructuredSelection) {
IPropertySource source = getConfiguration().getPropertySourceProvider(this).getPropertySource(((IStructuredSelection) selection).getFirstElement());
if (source != null && source instanceof IPropertySourceExtension) {
@@ -136,13 +141,29 @@ public class ConfigurablePropertySheetPage extends PropertySheetPage {
*/
public void selectionChanged(IWorkbenchPart part, ISelection selection) {
_DEBUG_TIME = System.currentTimeMillis();
- if (getControl() != null && getControl().isVisible() && selection != selectedEntry && !getControl().isFocusControl()) {
- super.selectionChanged(part, getConfiguration().getSelection(part, selection));
- if (_DEBUG_SELECTION) {
- System.out.println("(P:service " + (System.currentTimeMillis() - _DEBUG_TIME) + "ms) " + part + " : " + selection);
+ if (getControl() != null && getControl().isVisible() && !getControl().isFocusControl()) {
+ ISelection preferredSelection = getConfiguration().getInputSelection(part, selection);
+ /*
+ * Do some minor caching of the selection.
+ *
+ * As a PropertySheetPage, we've always notified of selection
+ * changes, but we've also subscribed to post selection
+ * notification so we can track caret movements in source viewers.
+ * When selecting a block of text, we're thus notified of the new
+ * selection twice. Remembering what our last *effective*
+ * selection was allows us to cut out most of the
+ * double-notification penalty.
+ */
+ if (!preferredSelection.equals(fInput)) {
+ fInput = preferredSelection;
+ super.selectionChanged(part, preferredSelection);
+ }
+
+ if (_DEBUG) {
+ System.out.println("(P:service " + (System.currentTimeMillis() - _DEBUG_TIME) + "ms) " + part + " : " + ((IStructuredSelection) preferredSelection).getFirstElement());
}
}
- else if (_DEBUG_SELECTION) {
+ else if (_DEBUG) {
System.out.println("[skipped] (P:" + (System.currentTimeMillis() - _DEBUG_TIME) + "ms) " + part + " : " + selection);
}
}
@@ -163,5 +184,6 @@ public class ConfigurablePropertySheetPage extends PropertySheetPage {
setPropertySourceProvider(fConfiguration.getPropertySourceProvider(this));
fConfiguration.addContributions(fMenuManager, fToolBarManager, fStatusLineManager);
}
+
}
} \ No newline at end of file

Back to the top