]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/PropertyIsExpandedProcessor.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / PropertyIsExpandedProcessor.java
diff --git a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/PropertyIsExpandedProcessor.java b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/PropertyIsExpandedProcessor.java
new file mode 100644 (file)
index 0000000..4560238
--- /dev/null
@@ -0,0 +1,131 @@
+/*******************************************************************************\r
+ * Copyright (c) 2007, 2012 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.browsing.ui.swt;\r
+\r
+import java.util.Map;\r
+import java.util.Set;\r
+import java.util.TreeMap;\r
+import java.util.TreeSet;\r
+\r
+import org.simantics.browsing.ui.BuiltinKeys;\r
+import org.simantics.browsing.ui.NodeContext;\r
+import org.simantics.browsing.ui.NodeContext.PrimitiveQueryKey;\r
+import org.simantics.browsing.ui.PrimitiveQueryUpdater;\r
+import org.simantics.browsing.ui.common.property.IProperty;\r
+import org.simantics.browsing.ui.common.property.PropertyComparable;\r
+import org.simantics.browsing.ui.common.property.PropertyComparator;\r
+import org.simantics.utils.strings.EString;\r
+import org.simantics.utils.ui.AdaptionUtils;\r
+\r
+/**\r
+ * A custom processor implementation for the {@link BuiltinKeys#IS_EXPANDED}\r
+ * primitive query that specially handles all {@link NodeContext}s that contain\r
+ * {@link PropertyComparable} inputs.\r
+ * \r
+ * <p>\r
+ * This class is needed because default values for properties are generally\r
+ * asserted and adding instance properties for subjects with default values\r
+ * causes the data contained by IProperty instances to change. For this reason\r
+ * {@link PropertyComparable} contains two methods:\r
+ * {@link IProperty#propertyHashCode()} and\r
+ * {@link PropertyComparable#propertyEquals(Object)} for comparing whether\r
+ * two {@link PropertyComparable} instances represent the same property of the\r
+ * same subject, regardless of the property value. This allows the UI to\r
+ * correctly expand tree nodes for record-type and array-valued properties when\r
+ * the value changes from asserted to direct or vice versa.\r
+ * \r
+ * @author Tuukka Lehtonen\r
+ * \r
+ * @see BuiltinKeys#IS_EXPANDED\r
+ * @see IProperty\r
+ * @see PropertyComparator\r
+ */\r
+public class PropertyIsExpandedProcessor extends DefaultIsExpandedProcessor {\r
+\r
+    private static final boolean DEBUG = false;\r
+\r
+    private final Set<PropertyComparable>                        expandedProperties      = new TreeSet<PropertyComparable>(PropertyComparator.INSTANCE);\r
+    private final Map<PropertyComparable, PrimitiveQueryUpdater> expandedPropertyQueries = new TreeMap<PropertyComparable, PrimitiveQueryUpdater>(PropertyComparator.INSTANCE);\r
+\r
+    @Override\r
+    public String toString() {\r
+        return "PropertyIsExpandedProcessor";\r
+    }\r
+\r
+    private PropertyComparable getProperty(NodeContext context) {\r
+        return AdaptionUtils.adaptToSingle(context, PropertyComparable.class);\r
+    }\r
+\r
+    @Override\r
+    public boolean setExpanded(NodeContext context, boolean expanded) {\r
+        PropertyComparable prop = getProperty(context);\r
+        if (prop != null)\r
+            return _setExpanded(prop, expanded);\r
+        return super.setExpanded(context, expanded);\r
+    }\r
+\r
+    private boolean _setExpanded(PropertyComparable prop, boolean expanded) {\r
+        if (expanded) {\r
+            return expandedProperties.add(prop);\r
+        } else {\r
+            return expandedProperties.remove(prop);\r
+        }\r
+    }\r
+\r
+    @Override\r
+    public Boolean query(PrimitiveQueryUpdater updater, NodeContext context, PrimitiveQueryKey<Boolean> key) {\r
+        if (DEBUG)\r
+            System.out.println("QUERY(" + context + ")");\r
+\r
+        PropertyComparable prop = getProperty(context);\r
+        if (prop != null) {\r
+            if (DEBUG)\r
+                System.out.println("expanded properties:\n" + EString.implode(expandedProperties, "\n\t"));\r
+\r
+            boolean isExpanded = expandedProperties.contains(prop);\r
+\r
+            if (DEBUG)\r
+                System.out.println("property.isExpanded(" + updater + ", " + prop + "): " + isExpanded);\r
+\r
+            expandedPropertyQueries.put(prop, updater);\r
+            return Boolean.valueOf(isExpanded);\r
+        }\r
+\r
+        return super.query(updater, context, key);\r
+    }\r
+\r
+    @Override\r
+    protected boolean nodeStatusChanged(NodeContext context, boolean expanded) {\r
+        boolean result = false;\r
+        PropertyComparable prop = getProperty(context);\r
+        if (prop != null) {\r
+            if (DEBUG)\r
+                System.out.println("nodeStatusChanged(" + prop + ", " + expanded + ")");\r
+\r
+            result = _setExpanded(prop, expanded);\r
+            PrimitiveQueryUpdater updater = expandedPropertyQueries.get(prop);\r
+            if (updater != null)\r
+                updater.scheduleReplace(context, BuiltinKeys.IS_EXPANDED, expanded);\r
+        } else {\r
+            result = super.nodeStatusChanged(context, expanded);\r
+        }\r
+        return result;\r
+    }\r
+\r
+    @Override\r
+    public void clear() {\r
+        expandedProperties.clear();\r
+        expandedPropertyQueries.clear();\r
+        super.clear();\r
+    }\r
+\r
+}
\ No newline at end of file