/*******************************************************************************
* Copyright (c) 2011 Laurent CARON
* 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:
* Laurent CARON (laurent.caron at gmail dot com) - Initial implementation and API
*******************************************************************************/
package org.mihalis.opal.preferenceWindow.widgets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.eclipse.swt.SWT;
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.Control;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.mihalis.opal.preferenceWindow.PreferenceWindow;
/**
* Instances of this class are a group of radio buttons
*
*/
public class PWRadio extends PWWidget {
private final List<Object> data;
private final List<Button> buttons;
/**
* Constructor
*
* @param label associated label
* @param propertyKey associated key
*/
public PWRadio(final String label, final String prop, final Object... values) {
super(null, prop, label == null ? 1 : 2, false);
this.data = new ArrayList<Object>(Arrays.asList(values));
this.buttons = new ArrayList<Button>();
}
/**
* @see org.mihalis.opal.preferenceWindow.widgets.PWWidget#build(org.eclipse.swt.widgets.Composite)
*/
@Override
public Control build(final Composite parent) {
buildLabel(parent, GridData.BEGINNING);
final Composite composite = new Composite(parent, SWT.NONE);
final GridLayout gridLayout = new GridLayout();
gridLayout.marginHeight = gridLayout.marginWidth = 0;
composite.setLayout(gridLayout);
for (final Object datum : this.data) {
final Button button = new Button(composite, SWT.RADIO);
addControl(button);
button.setText(datum.toString());
button.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));
button.setSelection(datum.equals(PreferenceWindow.getInstance().getValueFor(getPropertyKey())));
button.setData(datum);
button.addListener(SWT.Selection, new Listener() {
@Override
public void handleEvent(final Event event) {
if (button.getSelection()) {
PreferenceWindow.getInstance().setValue(getPropertyKey(), button.getData());
}
}
});
this.buttons.add(button);
}
return composite;
}
/**
* @see org.mihalis.opal.preferenceWindow.widgets.PWWidget#check()
*/
@Override
public void check() {
final Object value = PreferenceWindow.getInstance().getValueFor(getPropertyKey());
if (value == null) {
PreferenceWindow.getInstance().setValue(getPropertyKey(), null);
} else {
if (!this.data.isEmpty()) {
if (!value.getClass().equals(this.data.get(0).getClass())) {
throw new UnsupportedOperationException("The property '" + getPropertyKey() + "' has to be a " + this.data.get(0).getClass() + " because it is associated to a combo");
}
}
}
}
}