]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.document.swt.core/src/org/simantics/document/swt/core/base/PropertyWidgetManager.java
Playground for Antti.
[simantics/platform.git] / bundles / org.simantics.document.swt.core / src / org / simantics / document / swt / core / base / PropertyWidgetManager.java
index dfb73e879b916099890e0b7b9ae5a1c10eca3905..c8593c604e3a5f50daee13c8f718c72a116812c3 100644 (file)
@@ -1,20 +1,50 @@
-package org.simantics.document.swt.core.base;\r
-\r
-import org.simantics.document.server.IEventCommand;\r
-import org.simantics.document.server.JSONObject;\r
-import org.simantics.document.server.client.WidgetManager;\r
-import org.simantics.document.swt.core.SWTDocument;\r
-\r
-public abstract class PropertyWidgetManager<W> implements WidgetManager<SWTDocument, W> {\r
-       \r
-       @Override\r
-       public String getProperty(SWTDocument document, JSONObject object, W widget, String property) {\r
-               return null;\r
-       }\r
-       \r
-       @Override\r
-       public IEventCommand eventCommand(SWTDocument document, JSONObject object, W widget, String command) {\r
-           return null;\r
-       }\r
-\r
-}\r
+package org.simantics.document.swt.core.base;
+
+import java.awt.Component;
+import java.util.Collection;
+import java.util.List;
+import java.util.Map;
+
+import org.simantics.document.server.IEventCommand;
+import org.simantics.document.server.JSONObject;
+import org.simantics.document.server.client.Document;
+import org.simantics.document.server.client.WidgetData;
+import org.simantics.document.server.client.WidgetManager;
+import org.simantics.document.server.io.CommandContext;
+import org.simantics.document.server.io.CommandContextImpl;
+import org.simantics.document.server.io.CommandContextMutable;
+import org.simantics.document.server.io.ICommand;
+import org.simantics.document.server.io.JSONObjectUtils;
+import org.simantics.document.swt.core.SWTDocument;
+import org.simantics.document.swt.core.SWTViews;
+import org.simantics.utils.datastructures.Pair;
+
+public abstract class PropertyWidgetManager<W> implements WidgetManager<SWTDocument, W> {
+       
+       @Override
+       public String getProperty(SWTDocument document, JSONObject object, W widget, String property) {
+               return null;
+       }
+       
+       @Override
+       public IEventCommand eventCommand(SWTDocument document, JSONObject object, W widget, ICommand command, CommandContext context) {
+           return null;
+       }
+
+//    public static CommandContext sendEvent(SWTDocument document, Object source, String event, Object target, CommandContextMutable context) {
+//        return sendEvent(document, document.find(source), event, target, context);
+//    }
+    
+    public static CommandContext sendEvent(SWTDocument document, WidgetData wd, String event, Object target, CommandContextMutable context) {
+        Collection<ICommand> commands = JSONObjectUtils.getCommands(wd.object);
+
+        if(context == null) context = new CommandContextImpl();
+        context.putValue("event", event);
+        
+        List<Pair<WidgetData, ICommand>> data = SWTViews.getTriggeredCommands(document, commands, "eventOut");
+    
+        return document.handleCommands(data, context, wd.widget);
+
+    }
+       
+}