Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 38db2d548746e26f13a2a4a95ff345e6c397bf0f (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
/*
 * Copyright (c) 2015 Eike Stepper (Berlin, Germany) 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:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.util.ui.prefs;

import org.eclipse.net4j.util.om.pref.OMPreference;
import org.eclipse.net4j.util.ui.widgets.TextAndDisable;

import org.eclipse.swt.widgets.Composite;

/**
 * @author Eike Stepper
 * @since 3.5
 */
public class PrefTextAndDisable extends TextAndDisable implements OMPreference.Participant
{
  private final OMPreference<String> textPreference;

  private final OMPreference<Boolean> disabledPreference;

  public PrefTextAndDisable(Composite parent, int textStyle, OMPreference<String> textPreference, OMPreference<Boolean> disabledPreference)
  {
    super(parent, textStyle, null);
    this.textPreference = textPreference;
    this.disabledPreference = disabledPreference;
  }

  public final OMPreference<String> getTextPreference()
  {
    return textPreference;
  }

  public final OMPreference<Boolean> getDisabledPreference()
  {
    return disabledPreference;
  }

  public void loadPreferences()
  {
    setValue(textPreference.getValue());
    setDisabled(disabledPreference.getValue());
  }

  public void savePreferences()
  {
    textPreference.setValue(getValue());
    disabledPreference.setValue(isDisabled());
  }

  @Override
  protected void checkSubclass()
  {
    // Allow subclassing.
  }
}

Back to the top