import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.jface.resource.LocalResourceManager;
import org.eclipse.jface.resource.ResourceManager;
+import org.eclipse.jface.viewers.CheckStateChangedEvent;
+import org.eclipse.jface.viewers.CheckboxTableViewer;
import org.eclipse.jface.viewers.ColumnLabelProvider;
import org.eclipse.jface.viewers.ColumnViewerToolTipSupport;
import org.eclipse.jface.viewers.DoubleClickEvent;
+import org.eclipse.jface.viewers.ICheckStateListener;
import org.eclipse.jface.viewers.IDoubleClickListener;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.TableViewerColumn;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
private static final Logger LOGGER = LoggerFactory.getLogger(ElementSelectorTableUI.class);
- private TableViewer viewer;
+ private CheckboxTableViewer viewer;
private ElementSelectionView view;
public ElementSelectorTableUI(Composite parent, int style, ElementSelectionView view) {
super(parent, style);
-
+
resourceManager = new LocalResourceManager(JFaceResources.getResources(), this);
-
+
this.view = view;
-
+
parent.setLayout(new FillLayout());
- // GridDataFactory.fillDefaults().grab(true, true).applyTo(this);
- // GridLayoutFactory.fillDefaults().numColumns(1).applyTo(this);
+ // GridDataFactory.fillDefaults().grab(true, true).applyTo(this);
+ // GridLayoutFactory.fillDefaults().numColumns(1).applyTo(this);
this.setLayout(new FillLayout());
viewer = createViewer();
addSelectionListener();
+ addCheckStateListener();
setContentProvider();
createSelectorListener(parent);
enableToolTips();
configureTable();
}
+ private void addCheckStateListener() {
+ viewer.addCheckStateListener(new ICheckStateListener() {
+
+ @Override
+ public void checkStateChanged(CheckStateChangedEvent event) {
+ boolean checked = event.getChecked();
+ if (checked) {
+ view.performSelection(getDisplay(), (ElementSelector) event.getElement());
+ } else {
+ view.clearResultVisualisation((ElementSelector) event.getElement());
+ }
+ }
+ });
+ }
+
public Table getTable() {
return viewer.getTable();
}
return selection != null ? (ElementSelector) selection.getFirstElement() : null;
}
- private TableViewer createViewer() {
- return new TableViewer(this, SWT.FULL_SELECTION | SWT.SINGLE);
+ private CheckboxTableViewer createViewer() {
+ return CheckboxTableViewer.newCheckList(this, SWT.FULL_SELECTION | SWT.SINGLE);
}
private void configureTable() {
- Table table = viewer.getTable();
+ Table table = getTable();
table.setHeaderVisible(true);
table.setLinesVisible(true);
createNameColumn();
createQueryColumn();
+ //createQueryActiveColumn();
}
private void enableToolTips() {
public Object[] getElements(Object inputElement) {
if (inputElement == null || !(inputElement instanceof Collection))
return new Object[0];
-
- return ((Collection<?>)inputElement).toArray();
+
+ return ((Collection<?>) inputElement).toArray();
}
});
}
ElementSelector selector = (ElementSelector) element;
return " " + selector.getName();
}
-
+
@Override
public Image getImage(Object element) {
ElementSelector selector = (ElementSelector) element;
float[] color = selector.getColor();
if (color == null)
return null;
-
+
RGB rgb = ElementSelectionTools.literalToColor(color).getRgb();
-
+
PaletteData paletteData = new PaletteData(new RGB[] { new RGB(255, 255, 255), rgb });
-
+
// Create image with a colored horizontal bar
// TODO: Indicate line width
Image image = resourceManager.createImage(ImageDescriptor.createFromImageDataProvider(zoom -> {
imageData.setPixel(x, y, 1);
}
}
-
+
return imageData;
}));
-
+
return image;
}
});
}
private void createSelectorListener(Composite parent) {
- Simantics.getSession().asyncRequest(new ElementSelectionTools.SelectionsRequest(), new SyncListenerAdapter<Collection<ElementSelector>>() {
- public void execute(ReadGraph graph, Collection<ElementSelector> result) {
- parent.getDisplay().asyncExec(() -> {
- viewer.setInput(result);
- });
- }
+ Simantics.getSession().asyncRequest(new ElementSelectionTools.SelectionsRequest(),
+ new SyncListenerAdapter<Collection<ElementSelector>>() {
+ public void execute(ReadGraph graph, Collection<ElementSelector> result) {
+ parent.getDisplay().asyncExec(() -> {
+ viewer.setInput(result);
+ });
+ }
- @Override
- public void exception(ReadGraph graph, Throwable t) throws DatabaseException {
- LOGGER.error("Error getting element selector list", t);
- }
+ @Override
+ public void exception(ReadGraph graph, Throwable t) throws DatabaseException {
+ LOGGER.error("Error getting element selector list", t);
+ }
- @Override
- public boolean isDisposed() {
- return ElementSelectorTableUI.this.isDisposed();
- }
- });
+ @Override
+ public boolean isDisposed() {
+ return ElementSelectorTableUI.this.isDisposed();
+ }
+ });
}
private void addSelectionListener() {
IStructuredSelection selection = (IStructuredSelection) event.getViewer().getSelection();
Display display = event.getViewer().getControl().getDisplay();
ElementSelector query = (ElementSelector) selection.getFirstElement();
-
+
view.performSelection(display, query);
+
+ viewer.setChecked(selection.getFirstElement(), true);
}
}
+
+ @Override
+ public void dispose() {
+ view.dispose();
+ super.dispose();
+ }
}
package org.simantics.district.selection.ui.parts;
+import java.awt.Color;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
+import java.util.HashMap;
import java.util.List;
+import java.util.Map;
+import java.util.Map.Entry;
import javax.annotation.PostConstruct;
import javax.inject.Inject;
import org.simantics.db.layer0.request.ActiveModels;
import org.simantics.db.request.Read;
import org.simantics.district.network.ui.DistrictNetworkUIUtil;
+import org.simantics.district.network.ui.participants.DistrictFinderVisualisationParticipant;
import org.simantics.district.selection.ElementSelector;
import org.simantics.district.selection.ElementSelector.DiagramGenerator;
import org.simantics.district.selection.ElementSelector.ExplicitGenerator;
import org.simantics.district.selection.ElementSelector.SelectionResult;
import org.simantics.district.selection.ui.ElementSelectionTools;
import org.simantics.district.selection.ui.ElementSelectorTableUI;
+import org.simantics.scl.runtime.tuple.Tuple2;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public void setFocus() {
table.setFocus();
}
-
+
public ElementSelector getSelectedItem() {
return table.getSelectedItem();
}
+
+ private Map<ElementSelector, Tuple2> resultCache = new HashMap<>();
public void performSelection(Display display, ElementSelector query) {
try {
Collection<Resource> models = Simantics.getSession().syncRequest(new ActiveModels(Simantics.getProjectResource()));
final Resource model = models.isEmpty() ? null : models.iterator().next();
+ Tuple2 selectionResult = resultCache.get(query);
+ if (selectionResult != null) {
+ // clear existing result and visualisation
+ clearResultVisualisation(query);
+ }
+
SelectionResult result = performQuery(query, model);
+ resultCache.put(query, new Tuple2(result, model));
+
if (result.tailCount != result.tailSize) {
showArbitraryResultWarning(query, result);
}
openDiagramWithSelection(display, result);
}
- StructuredSelection selection = makeSelection(model, result);
+ StructuredSelection selection = makeSelection(model, result, query.getColor());
selectionService.setPostSelection(selection);
sendSelectionEvent(selection);
} catch (DatabaseException e) {
LOGGER.error("Element selection query failed", e);
}
}
+
+ public void clearResultVisualisation(ElementSelector query) {
+ Tuple2 selectionResult = resultCache.get(query);
+ if (selectionResult != null) {
+ SelectionResult result = (SelectionResult) selectionResult.c0;
+ Resource model = (Resource) selectionResult.c1;
+ eventBroker.send(SELECTION_EVENT_ID, makeSelection(model, result, null));
+ }
+ }
- private StructuredSelection makeSelection(final Resource model, SelectionResult result) {
+ private StructuredSelection makeSelection(final Resource model, SelectionResult result, float[] fs) {
return new StructuredSelection(result.elements.stream()
.map(p0 -> {
AdaptableHintContext selectionElement = new ElementSelectionTools.SelectionElement(SelectionHints.STD_KEYS);
selectionElement.setHint(SelectionHints.KEY_MAIN, p0);
selectionElement.setHint(SelectionHints.KEY_MODEL, model);
+ if (fs != null) {
+ selectionElement.setHint(DistrictFinderVisualisationParticipant.COLOR_KEY, new Color(fs[2], fs[1], fs[0], fs[3]));
+ }
return selectionElement;
})
.toArray());
});
return result;
}
+
+ public void dispose() {
+ for (Entry<ElementSelector, Tuple2> entry : resultCache.entrySet()) {
+ ElementSelector query = entry.getKey();
+ clearResultVisualisation(query);
+ }
+ }
}