Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: be0682817bb95a67a3491e3b31e1694dcfe5b56d (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
/*****************************************************************************
 * Copyright (c) 2017 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:
 *   Fanch BONNABESSE (ALL4TEC) fanch.bonnabesse@all4tec.net - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.infra.gmfdiag.common.databinding.custom;

import org.eclipse.core.databinding.observable.ChangeEvent;
import org.eclipse.core.databinding.observable.value.ValueDiff;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;

/**
 *
 * Implementation for an ObservableValue associated to a BooleanValueStyle and a IPreferenceStore.
 * @since 3.0
 *
 */
public class CustomBooleanStyleWithStoreObservableValue extends CustomBooleanStyleObservableValue {

	/**
	 * The IPreferenceStore corresponding to the EditPart.
	 */
	protected IPreferenceStore preferenceStore;
	/**
	 * The listener on the preference store used to force refresh.
	 */
	protected IPropertyChangeListener listener = new IPropertyChangeListener() {

		@Override
		public void propertyChange(final PropertyChangeEvent event) {
			if (styleName.equals(event.getProperty())) {
				ValueDiff diff = new ValueDiff() {

					@Override
					public Object getOldValue() {
						return event.getOldValue();
					}

					@Override
					public Object getNewValue() {
						return event.getNewValue();
					}
				};
				fireValueChange(diff);
			}
		}
	};

	/**
	 *
	 * Constructor.
	 *
	 * @param source
	 *            The view source
	 * @param domain
	 *            The editing domain
	 * @param styleName
	 *            The style name to of the property
	 * @param preferenceStore
	 *            The preference store
	 */
	public CustomBooleanStyleWithStoreObservableValue(final View source, final EditingDomain domain, final String styleName, final IPreferenceStore preferenceStore) {
		super(source, domain, styleName);
		this.preferenceStore = preferenceStore;
		this.preferenceStore.addPropertyChangeListener(this.listener);
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void handleChange(final ChangeEvent event) {
		super.handleChange(event);
		addToPreferenceStore(doGetValue());
	}

	/**
	 * Set the new value in the corresponding IPreferenceStore.
	 *
	 * @param value
	 *            The new value
	 */
	public void addToPreferenceStore(final Object value) {
		if (value instanceof Boolean) {
			this.preferenceStore.setValue(this.styleName, ((Boolean) value).booleanValue());
		}
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void dispose() {
		this.preferenceStore.removePropertyChangeListener(this.listener);
		super.dispose();
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	protected Boolean getDefaultValue() {
		return this.preferenceStore.getBoolean(this.styleName);
	}
}

Back to the top