1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.jfreechart.chart.properties.pie;
\r
14 import org.eclipse.jface.layout.GridDataFactory;
\r
15 import org.eclipse.jface.layout.GridLayoutFactory;
\r
16 import org.eclipse.jface.viewers.ISelectionProvider;
\r
17 import org.eclipse.jface.viewers.IStructuredSelection;
\r
18 import org.eclipse.swt.SWT;
\r
19 import org.eclipse.swt.custom.ScrolledComposite;
\r
20 import org.eclipse.swt.events.SelectionAdapter;
\r
21 import org.eclipse.swt.events.SelectionEvent;
\r
22 import org.eclipse.swt.graphics.Point;
\r
23 import org.eclipse.swt.widgets.Composite;
\r
24 import org.eclipse.swt.widgets.Control;
\r
25 import org.eclipse.swt.widgets.Tree;
\r
26 import org.eclipse.ui.IWorkbenchSite;
\r
27 import org.simantics.browsing.ui.swt.SingleSelectionInputSource;
\r
28 import org.simantics.browsing.ui.swt.widgets.Button;
\r
29 import org.simantics.browsing.ui.swt.widgets.GraphExplorerComposite;
\r
30 import org.simantics.browsing.ui.swt.widgets.impl.SelectionListenerImpl;
\r
31 import org.simantics.browsing.ui.swt.widgets.impl.Widget;
\r
32 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;
\r
33 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupportImpl;
\r
34 import org.simantics.db.Resource;
\r
35 import org.simantics.db.WriteGraph;
\r
36 import org.simantics.db.common.request.PossibleObjectWithType;
\r
37 import org.simantics.db.common.utils.ListUtils;
\r
38 import org.simantics.db.exception.DatabaseException;
\r
39 import org.simantics.db.layer0.util.RemoverUtil;
\r
40 import org.simantics.db.management.ISessionContext;
\r
41 import org.simantics.jfreechart.chart.ChartUtils;
\r
42 import org.simantics.jfreechart.chart.properties.LabelPropertyTabContributor;
\r
43 import org.simantics.jfreechart.chart.properties.xyline.AxisAndVariablesExplorerComposite;
\r
44 import org.simantics.layer0.Layer0;
\r
45 import org.simantics.sysdyn.JFreeChartResource;
\r
46 import org.simantics.ui.utils.AdaptionUtils;
\r
47 import org.simantics.utils.datastructures.ArrayMap;
\r
50 * Tab for modifying series in a pie chart configuration
\r
51 * @author Teemu Lempinen
\r
54 public class PieSeriesTab extends LabelPropertyTabContributor implements Widget {
\r
56 private GraphExplorerComposite explorer;
\r
57 private ScrolledComposite propertyContainer;
\r
58 private WidgetSupportImpl additionalSupport;
\r
59 private Button add, remove;
\r
60 private Resource chartResource;
\r
62 public PieSeriesTab() {
\r
63 additionalSupport = new WidgetSupportImpl();
\r
67 public void createControls(Composite body, IWorkbenchSite site, final ISessionContext context, WidgetSupport support) {
\r
68 support.register(this);
\r
69 Composite composite = new Composite(body, SWT.NONE);
\r
70 GridDataFactory.fillDefaults().grab(true, true).applyTo(composite);
\r
71 GridLayoutFactory.fillDefaults().numColumns(2).margins(3, 3).applyTo(composite);
\r
73 // (Ontology-based) GraphExplorer displaying variables of a pie chart
\r
74 explorer = new AxisAndVariablesExplorerComposite(ArrayMap.keys(
\r
75 "displaySelectors", "displayFilter").values(false, false), site, composite, support, SWT.FULL_SELECTION | SWT.BORDER | SWT.SINGLE);
\r
76 explorer.setBrowseContexts(JFreeChartResource.URIs.PieSeriesBrowseContext);
\r
77 explorer.setInputSource(new SingleSelectionInputSource(
\r
79 explorer.getExplorer().setAutoExpandLevel(2); // Expand everything in the beginning
\r
82 ((Tree)explorer.getExplorerControl()).addSelectionListener(new SelectionAdapter() {
\r
83 public void widgetSelected(SelectionEvent e) {
\r
84 updateSelection(context);
\r
87 GridDataFactory.fillDefaults().hint(250, SWT.DEFAULT).grab(false, true).applyTo(explorer);
\r
89 // Scrolled composite for displaying properties of a selection in explorer
\r
90 propertyContainer = new ScrolledComposite(composite, SWT.H_SCROLL | SWT.V_SCROLL);
\r
91 GridDataFactory.fillDefaults().span(1, 2).grab(true, true).applyTo(propertyContainer);
\r
92 GridLayoutFactory.fillDefaults().applyTo(propertyContainer);
\r
93 propertyContainer.setExpandHorizontal(true);
\r
94 propertyContainer.setExpandVertical(true);
\r
97 // Buttons for adding and removing variables from a pie plot
\r
98 Composite buttonComposite = new Composite(composite, SWT.NONE);
\r
99 GridDataFactory.fillDefaults().applyTo(buttonComposite);
\r
100 GridLayoutFactory.fillDefaults().numColumns(3).applyTo(buttonComposite);
\r
102 add = new Button(buttonComposite, additionalSupport, SWT.NONE);
\r
103 add.setText("Add");
\r
104 add.addSelectionListener(new NewVariableListener(context));
\r
106 remove = new Button(buttonComposite, additionalSupport, SWT.NONE);
\r
107 remove.setText("Remove");
\r
108 remove.addSelectionListener(new RemoveListener(context));
\r
112 * Updates the content of propertyContainer
\r
115 private void updateSelection(ISessionContext context) {
\r
116 ISelectionProvider selectionProvider = (ISelectionProvider)explorer.getAdapter(ISelectionProvider.class);
\r
117 IStructuredSelection selection = (IStructuredSelection)selectionProvider.getSelection();
\r
118 final Resource resource = AdaptionUtils.adaptToSingle(selection, Resource.class);
\r
119 if(resource == null)
\r
122 for(Control child : propertyContainer.getChildren()) {
\r
126 PieSeriesPropertyComposite spc = new PieSeriesPropertyComposite(propertyContainer, context, additionalSupport, SWT.NONE);
\r
127 propertyContainer.setContent(spc);
\r
128 Point size = spc.computeSize(SWT.DEFAULT, SWT.DEFAULT);
\r
129 propertyContainer.setMinSize(size);
\r
131 additionalSupport.fireInput(context, selection);
\r
136 * SelectionListener for adding a new variable to a plot
\r
137 * @author Teemu Lempinen
\r
140 private class NewVariableListener extends SelectionListenerImpl<Resource> {
\r
142 public NewVariableListener(ISessionContext context) {
\r
147 public void apply(WriteGraph graph, Resource input) throws DatabaseException {
\r
148 JFreeChartResource jfree = JFreeChartResource.getInstance(graph);
\r
149 Layer0 l0 = Layer0.getInstance(graph);
\r
150 Resource dataset = null;
\r
151 if(input == null) {
\r
152 if(chartResource != null) {
\r
153 Resource plot = graph.syncRequest(new PossibleObjectWithType(chartResource, l0.ConsistsOf, jfree.Plot));
\r
155 dataset = graph.syncRequest(new PossibleObjectWithType(plot, l0.ConsistsOf, jfree.Dataset));
\r
158 if(graph.isInstanceOf(input, jfree.Series)) {
\r
159 dataset = graph.getPossibleObject(input, l0.PartOf);
\r
162 if(dataset != null) {
\r
163 // Create series with no rvi
\r
164 Resource series = ChartUtils.createSeries(graph, dataset, null);
\r
165 graph.claimLiteral(series, jfree.Series_exploded, false);
\r
171 * SelectionListener for remove button
\r
172 * @author Teemu Lempinen
\r
175 private class RemoveListener extends SelectionListenerImpl<Resource> {
\r
177 public RemoveListener(ISessionContext context) {
\r
182 * Removes selected resource from explorer
\r
185 public void apply(WriteGraph graph, Resource input) throws DatabaseException {
\r
189 JFreeChartResource jfree = JFreeChartResource.getInstance(graph);
\r
190 Layer0 l0 = Layer0.getInstance(graph);
\r
191 Resource list = null;
\r
192 if(graph.isInstanceOf(input, jfree.Series)) {
\r
193 // Remove series from dataset and seriesList
\r
194 Resource dataset = graph.getPossibleObject(input, l0.PartOf);
\r
195 if(dataset != null)
\r
196 list = graph.getPossibleObject(dataset, jfree.Dataset_seriesList);
\r
199 ListUtils.removeElement(graph, list, input);
\r
200 RemoverUtil.remove(graph, input);
\r
206 public void setInput(ISessionContext context, Object input) {
\r
207 chartResource = AdaptionUtils.adaptToSingle(input, Resource.class);
\r