Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c17a3329f047fafeea8d0722c2c287ea26b4af61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/*****************************************************************************
 * Copyright (c) 2010, 2014 CEA LIST and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *  Christian W. Damus (CEA) - bug 402525
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.widgets.editors;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;

import org.eclipse.core.databinding.observable.ChangeEvent;
import org.eclipse.core.databinding.observable.IChangeListener;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.DisposeListener;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

/**
 * A Property Editor representing a multivalued property as a label with the
 * selected values. If the list of values is too long, it is truncated. The
 * values can be edited via a selection dialog. This widget is useful when there
 * is not much vertical space available, and a MultipleValueEditor can not be
 * used.
 */
public class CompactMultipleValueEditor extends AbstractListEditor implements IChangeListener, DisposeListener, SelectionListener {

	/**
	 * The default value separator in the value label
	 */
	protected static final String DEFAULT_VALUE_SEPARATOR = ", "; //$NON-NLS-1$

	/**
	 * The label for displayed the selected values
	 */
	protected Label valueLabel;

	/**
	 * The button to open a dialog for editing the values
	 */
	protected Button edit;

	/**
	 * The label provider for this editor. Also used by the dialog.
	 */
	protected ILabelProvider labelProvider;

	/**
	 * The string used for separating values in the value label
	 */
	protected String separator;

	/**
	 * The Dialog displayed when adding new elements
	 */
	protected MultipleValueSelectorDialog dialog;

	/**
	 * The element selector for the dialog
	 */
	protected IElementSelector selector;

	/**
	 *
	 * Constructor.
	 *
	 * @param parent
	 *            The widget in which this editor is created
	 * @param style
	 *            The style for this editor's control
	 * @param selector
	 *            The IElementSelector for this editor's selection dialog
	 */
	public CompactMultipleValueEditor(Composite parent, int style, IElementSelector selector) {
		this(parent, style, selector, false, false, DEFAULT_VALUE_SEPARATOR, null);
	}

	/**
	 *
	 * Constructor.
	 *
	 * @param parent
	 *            The widget in which this editor is created
	 * @param style
	 *            The style for this editor's control
	 * @param selector
	 *            The element selector to be used in the selection dialog
	 * @param ordered
	 *            True if the multivalued property is ordered
	 * @param unique
	 *            True if the multivalued property needs unique values
	 */
	public CompactMultipleValueEditor(Composite parent, int style, IElementSelector selector, boolean ordered, boolean unique) {
		this(parent, style, selector, ordered, unique, DEFAULT_VALUE_SEPARATOR, null);
	}

	/**
	 *
	 * Constructor.
	 *
	 * @param parent
	 *            The widget in which this editor is created
	 * @param style
	 *            The style for this editor's control
	 * @param selector
	 *            The element selector to be used in the selection dialog
	 * @param ordered
	 *            True if the multivalued property is ordered
	 * @param unique
	 *            True if the multivalued property needs unique values
	 * @param separator
	 *            The string used to separate values in the display label
	 * @param label
	 *            The label for this editor
	 */
	public CompactMultipleValueEditor(Composite parent, int style, IElementSelector selector, boolean ordered, boolean unique, String separator, String label) {
		super(parent, label);

		((GridLayout) getLayout()).numColumns = 3;

		valueLabel = factory.createLabel(this, null, style);
		valueLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));

		edit = new Button(this, SWT.PUSH);
		edit.setText("..."); //$NON-NLS-1$
		edit.addSelectionListener(this);
		edit.setLayoutData(new GridData(SWT.END, SWT.CENTER, false, false));

		this.selector = selector;
		dialog = new MultipleValueSelectorDialog(parent.getShell(), selector, unique);

		labelProvider = new LabelProvider();
		this.separator = separator;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public Object getEditableType() {
		return Collection.class;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	protected void doBinding() {
		// We don't do a real Databinding in this case
		modelProperty.addChangeListener(this);
		handleChange(null);
	}

	/**
	 * Sets the label provider for this editor
	 *
	 * @param provider
	 *            The label provider for this editor
	 */
	public void setLabelProvider(ILabelProvider provider) {
		dialog.setLabelProvider(provider);
		this.labelProvider = provider;
	}

	/**
	 * Refreshes the Label when a change occurs on the ObservableList
	 *
	 * @see org.eclipse.core.databinding.observable.IChangeListener#handleChange(org.eclipse.core.databinding.observable.ChangeEvent)
	 *
	 * @param event
	 */
	@Override
	public void handleChange(ChangeEvent event) {
		if (modelProperty != null) {

			List<String> labels = new LinkedList<String>();
			for (Object element : modelProperty) {
				labels.add(labelProvider.getText(element));
			}

			valueLabel.setText(createValueLabel(labels));
		}
	}

	/**
	 * Creates the text for the value label of this editor
	 *
	 * @param labels
	 *            The labels for each selected element
	 * @return The concatenated label
	 */
	protected String createValueLabel(List<String> labels) {
		if (labels.size() == 0) {
			return ""; //$NON-NLS-1$
		}

		String result = labels.get(0);
		for (int i = 1; i < labels.size(); i++) {
			result += separator + labels.get(i);
		}
		return result;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void dispose() {
		if (modelProperty != null) {
			modelProperty.removeChangeListener(this);
		}
		super.dispose();
	}

	/**
	 * {@inheritDoc} Handles the event when the edit button is pressed
	 */
	@Override
	public void widgetSelected(SelectionEvent e) {
		dialog.setContextElement(getContextElement());
		dialog.setInitialSelections(modelProperty.toArray());
		int returnCode = dialog.open();
		if (returnCode == Window.CANCEL) {
			return;
		}

		modelProperty.clear();

		Object[] result = dialog.getResult();
		if (result == null) {
			return;
		}

		java.util.List<Object> resultElements = new LinkedList<Object>();
		for (Object r : result) {
			resultElements.add(r);
		}

		modelProperty.addAll(resultElements);
	}

	/**
	 * {@inheritDoc} Ignored
	 */
	@Override
	public void widgetDefaultSelected(SelectionEvent e) {
		// Nothing
	}

	@Override
	public void setReadOnly(boolean readOnly) {
		valueLabel.setEnabled(!readOnly);
		edit.setEnabled(!readOnly);
	}

	@Override
	public boolean isReadOnly() {
		return !valueLabel.isEnabled() || !edit.isEnabled();
	}

	@Override
	public void setToolTipText(String text) {
		valueLabel.setToolTipText(text);
		super.setLabelToolTipText(text);
	}

	@Override
	public void refreshValue() {
		handleChange(null);
	}

}

Back to the top