![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.pde.ui.templates.ComboChoiceOption Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2006, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Les Jones - bug 208534
*******************************************************************************/
package org.eclipse.pde.ui.templates;
import static org.eclipse.swt.events.SelectionListener.widgetSelectedAdapter;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
/**
* Implementation of the AbstractTemplateOption that allows users to choose a value from
* the fixed set of options using a combo box.
*
* @since 3.2
*/
public class ComboChoiceOption extends AbstractChoiceOption {
private Combo fCombo;
private Label fLabel;
/**
* Constructor for ComboChoiceOption.
*
* @param section
* the parent section.
* @param name
* the unique name
* @param label
* the presentable label
* @param choices
* the list of choices from which the value can be chosen. Each
* array entry should be an array of size 2, where position 0
* will be interpeted as the choice unique name, and position 1
* as the choice presentable label.
*/
public ComboChoiceOption(BaseOptionTemplateSection section, String name, String label, String[][] choices) {
super(section, name, label, choices);
}
@Override
public void createControl(Composite parent, int span) {
fLabel = createLabel(parent, 1);
fLabel.setEnabled(isEnabled());
fill(fLabel, 1);
fCombo = new Combo(parent, SWT.READ_ONLY);
fill(fCombo, 1);
for (int i = 0; i < fChoices.length; i++) {
String[] choice = fChoices[i];
fCombo.add(choice[1], i);
fCombo.setEnabled(isEnabled());
}
fCombo.addSelectionListener(widgetSelectedAdapter(e -> {
if (isBlocked())
return;
if (fCombo.getSelectionIndex() != -1) {
String[] choice = fChoices[fCombo.getSelectionIndex()];
// Since this is being fired by the combo, suppress updates
// back to the control
setValue(choice[0], false);
getSection().validateOptions(ComboChoiceOption.this);
}
}));
if (getChoice() != null)
selectChoice(getChoice());
}
@Override
protected void setOptionValue(Object value) {
if (fCombo != null && value != null) {
selectChoice(value.toString());
}
}
@Override
protected void setOptionEnabled(boolean enabled) {
if (fLabel != null) {
fLabel.setEnabled(enabled);
fCombo.setEnabled(enabled);
}
}
@Override
protected void selectOptionChoice(String choice) {
// choice is the value not the description
int index = getIndexOfChoice(choice);
if (index == -1) {
// Set to the first item
// Using set Value to keep everything consistent
fCombo.select(0);
setValue(fChoices[0][0], false);
} else {
fCombo.select(index);
}
}
/**
* Get the index (in the collection) of the choice
*
* @param choice
* The key of the item
* @return The position in the list, or -1 if not found
* @since 3.4
*/
protected int getIndexOfChoice(String choice) {
final int NOT_FOUND = -1;
if (choice == null) {
return NOT_FOUND;
}
for (int i = 0; i < fChoices.length; i++) {
String testChoice = fChoices[i][0];
if (choice.equals(testChoice)) {
return i;
}
}
return NOT_FOUND;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy