]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
642f070d764905d9093bd521a410fd19cebc89a8
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\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
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.ui.trend.chart.properties.pie;\r
13 \r
14 import org.eclipse.jface.layout.GridDataFactory;\r
15 import org.eclipse.jface.layout.GridLayoutFactory;\r
16 import org.eclipse.swt.SWT;\r
17 import org.eclipse.swt.widgets.Composite;\r
18 import org.eclipse.swt.widgets.Label;\r
19 import org.simantics.browsing.ui.swt.widgets.Button;\r
20 import org.simantics.browsing.ui.swt.widgets.StringPropertyFactory;\r
21 import org.simantics.browsing.ui.swt.widgets.StringPropertyModifier;\r
22 import org.simantics.browsing.ui.swt.widgets.TrackedText;\r
23 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
24 import org.simantics.db.management.ISessionContext;\r
25 import org.simantics.layer0.Layer0;\r
26 import org.simantics.sysdyn.JFreeChartResource;\r
27 import org.simantics.sysdyn.ui.trend.chart.properties.BooleanPropertyFactory;\r
28 import org.simantics.sysdyn.ui.trend.chart.properties.BooleanSelectionListener;\r
29 import org.simantics.sysdyn.ui.trend.chart.properties.ColorPicker;\r
30 import org.simantics.sysdyn.ui.trend.chart.properties.JFreeChartPropertyColorProvider;\r
31 import org.simantics.sysdyn.ui.trend.chart.properties.RVIFactory;\r
32 import org.simantics.sysdyn.ui.trend.chart.properties.RVIModifier;\r
33 \r
34 /**\r
35  * Composite containing the properties of a series\r
36  * @author Teemu Lempinen\r
37  *\r
38  */\r
39 public class PieSeriesPropertyComposite extends Composite {\r
40     \r
41     private TrackedText variable, label;\r
42     \r
43     public PieSeriesPropertyComposite(Composite parent, ISessionContext context, WidgetSupport support, int style) {\r
44         super(parent, style);\r
45         \r
46         GridLayoutFactory.fillDefaults().margins(3, 3).numColumns(2).applyTo(this);\r
47 \r
48         // Variable for the series\r
49         Label label = new Label(this, SWT.NONE);\r
50         label.setText("Variable:");\r
51         GridDataFactory.fillDefaults().align(SWT.END, SWT.FILL).applyTo(label);\r
52 \r
53         variable = new TrackedText(this, support, SWT.BORDER);\r
54         variable.setTextFactory(new RVIFactory());\r
55         variable.addModifyListener(new RVIModifier(variable.getWidget(), support));\r
56         variable.setColorProvider(new JFreeChartPropertyColorProvider(this.variable.getResourceManager()));\r
57         GridDataFactory.fillDefaults().grab(true, false).applyTo(this.variable.getWidget());\r
58 \r
59         // Label to be displayed in chart for this series\r
60         label = new Label(this, SWT.NONE);\r
61         label.setText("Label:");\r
62         GridDataFactory.fillDefaults().align(SWT.END, SWT.FILL).applyTo(label);\r
63 \r
64         this.label = new TrackedText(this, support, SWT.BORDER);\r
65         this.label.setTextFactory(new StringPropertyFactory(Layer0.URIs.HasLabel, ""));\r
66         this.label.addModifyListener(new StringPropertyModifier(context, Layer0.URIs.HasLabel));\r
67         this.label.setColorProvider(new JFreeChartPropertyColorProvider(this.label.getResourceManager()));\r
68         GridDataFactory.fillDefaults().grab(true, false).applyTo(this.label.getWidget());\r
69 \r
70         // Color\r
71         label = new Label(this, SWT.NONE);\r
72         label.setText("Color:");\r
73         GridDataFactory.fillDefaults().align(SWT.END, SWT.CENTER).applyTo(label);\r
74 \r
75         Composite colorPicker = new ColorPicker(this, context, support, SWT.NONE);\r
76         GridDataFactory.fillDefaults().grab(true, false).applyTo(colorPicker);\r
77 \r
78         // Exploded\r
79         label = new Label(this, SWT.NONE);\r
80         label.setText("");\r
81         GridDataFactory.fillDefaults().align(SWT.END, SWT.FILL).applyTo(label);\r
82         \r
83         Button exploded = new Button(this, support, SWT.CHECK);\r
84         exploded.setText("Exploded");\r
85         exploded.addSelectionListener(new BooleanSelectionListener(context, JFreeChartResource.URIs.Series_exploded));\r
86         exploded.setSelectionFactory(new BooleanPropertyFactory(JFreeChartResource.URIs.Series_exploded));\r
87         GridDataFactory.fillDefaults().applyTo(exploded.getWidget());\r
88     }\r
89 \r
90 }\r