StringComboBoxCellEditor 可以输入列表以外的值

可以输入列表以外的值。

AbstractComboBoxCellEditor直接拷贝的原来的

import java.text.MessageFormat; // Not using ICU to support standalone JFace
// scenario

import org.eclipse.core.runtime.Assert;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.events.FocusAdapter;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.KeyAdapter;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.TraverseEvent;
import org.eclipse.swt.events.TraverseListener;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;

/**

 * copy了ComboBoxCellEditor的代码,改了其中的index,全部用value

 * @author think
 *
 */
public class StringComboBoxCellEditor extends AbstractComboBoxCellEditor
{

    /**
     * The list of items to present in the combo box.
     */
    private String[] items;

    /**
     * The zero-based index of the selected item.
     */
    String selectionValue;
    private boolean fSettingValue = false;
    /**
     * The custom combo box control.
     */
    CCombo comboBox;

    /**
     * Default ComboBoxCellEditor style
     */
    private static final int defaultStyle = SWT.NONE;

    /**
     * Creates a new cell editor with no control and no st of choices.
     * Initially, the cell editor has no cell validator.
     *
     * @since 2.1
     * @see CellEditor#setStyle
     * @see CellEditor#create
     * @see ComboBoxCellEditor#setItems
     * @see CellEditor#dispose
     */
    public StringComboBoxCellEditor()
    {
        setStyle(defaultStyle);
    }

    /**
     * Creates a new cell editor with a combo containing the given list of
     * choices and parented under the given control. The cell editor value is
     * the zero-based index of the selected item. Initially, the cell editor has
     * no cell validator and the first item in the list is selected.
     *
     * @param parent
     *            the parent control
     * @param items
     *            the list of strings for the combo box
     */
    public StringComboBoxCellEditor(Composite parent, String[] items)
    {
        this(parent, items, defaultStyle);
    }

    /**
     * Creates a new cell editor with a combo containing the given list of
     * choices and parented under the given control. The cell editor value is
     * the zero-based index of the selected item. Initially, the cell editor has
     * no cell validator and the first item in the list is selected.
     *
     * @param parent
     *            the parent control
     * @param items
     *            the list of strings for the combo box
     * @param style
     *            the style bits
     * @since 2.1
     */
    public StringComboBoxCellEditor(Composite parent, String[] items, int style)
    {
        super(parent, style);
        setItems(items);
    }

    /**
     * Returns the list of choices for the combo box
     *
     * @return the list of choices for the combo box
     */
    public String[] getItems()
    {
        return this.items;
    }

    /**
     * Sets the list of choices for the combo box
     *
     * @param items
     *            the list of choices for the combo box
     */
    public void setItems(String[] items)
    {
        Assert.isNotNull(items);
        this.items = items;
        populateComboBoxItems();
    }

    /*
     * (non-Javadoc) Method declared on CellEditor.
     */
    protected Control createControl(Composite parent)
    {

        comboBox = new CCombo(parent, getStyle());
        comboBox.setFont(parent.getFont());

        populateComboBoxItems();

        comboBox.addKeyListener(new KeyAdapter()
        {
            // hook key pressed - see PR 14201
            public void keyPressed(KeyEvent e)
            {
                keyReleaseOccured(e);
            }
        });

        comboBox.addSelectionListener(new SelectionAdapter()
        {
            public void widgetDefaultSelected(SelectionEvent event)
            {
                applyEditorValueAndDeactivate();
            }

            public void widgetSelected(SelectionEvent event)
            {
                selectionValue = comboBox.getText();
            }
        });

        comboBox.addTraverseListener(new TraverseListener()
        {
            public void keyTraversed(TraverseEvent e)
            {
                if (e.detail == SWT.TRAVERSE_ESCAPE || e.detail == SWT.TRAVERSE_RETURN)
                {
                    e.doit = false;
                }
            }
        });

        comboBox.addFocusListener(new FocusAdapter()
        {
            public void focusLost(FocusEvent e)
            {
                StringComboBoxCellEditor.this.focusLost();
            }
        });
        return comboBox;
    }

    /**
     * The <code>ComboBoxCellEditor</code> implementation of this
     * <code>CellEditor</code> framework method returns the zero-based index of
     * the current selection.
     *
     * @return the zero-based index of the current selection wrapped as an
     *         <code>Integer</code>
     */
    protected Object doGetValue()
    {
        // int selectionIndex = selection;
        // if (selectionIndex >= 0) {
        // return getItems()[selectionIndex];
        // }
        // else if (getControl() instanceof CCombo) {
        // // retrieve the actual text as the list of valid items doesn't
        // // contain the value
        // return ((CCombo) getControl()).getText();
        // }
        return selectionValue;
    }

    /*
     * (non-Javadoc) Method declared on CellEditor.
     */
    protected void doSetFocus()
    {
        comboBox.setFocus();
    }

    /**
     * The <code>ComboBoxCellEditor</code> implementation of this
     * <code>CellEditor</code> framework method sets the minimum width of the
     * cell. The minimum width is 10 characters if <code>comboBox</code> is not
     * <code>null</code> or <code>disposed</code> else it is 60 pixels to make
     * sure the arrow button and some text is visible. The list of CCombo will
     * be wide enough to show its longest item.
     */
    public LayoutData getLayoutData()
    {
        LayoutData layoutData = super.getLayoutData();
        if ((comboBox == null) || comboBox.isDisposed())
        {
            layoutData.minimumWidth = 60;
        }
        else
        {
            // make the comboBox 10 characters wide
            GC gc = new GC(comboBox);
            layoutData.minimumWidth = (gc.getFontMetrics().getAverageCharWidth() * 10) + 10;
            gc.dispose();
        }
        return layoutData;
    }

    /**
     * The <code>ComboBoxCellEditor</code> implementation of this
     * <code>CellEditor</code> framework method accepts a zero-based index of a
     * selection.
     *
     * @param value
     *            the zero-based index of the selection wrapped as an
     *            <code>Integer</code>
     */
    protected void doSetValue(Object value)
    {
        if (fSettingValue || selectionValue == null)
        {
            return;
        }
        fSettingValue = true;
        selectionValue = value.toString();
        if ((getControl() instanceof CCombo) && !selectionValue.equals(((CCombo) getControl()).getText()))
        {
            // update the Text widget
            ((CCombo) getControl()).setText(selectionValue);
        }
        fSettingValue = false;
    }

    /**
     * Updates the list of choices for the combo box for the current control.
     */
    private void populateComboBoxItems()
    {
        if (comboBox != null && items != null)
        {
            comboBox.removeAll();
            for (int i = 0; i < items.length; i++)
            {
                comboBox.add(items[i], i);
            }

            setValueValid(true);
            selectionValue = "";
        }
    }

    /**
     * Applies the currently selected value and deactivates the cell editor
     */
    void applyEditorValueAndDeactivate()
    {
        // must set the selection before getting value
        selectionValue = comboBox.getText();
        Object newValue = doGetValue();
        markDirty();
        boolean isValid = isCorrect(newValue);
        setValueValid(isValid);

        if (!isValid)
        {
            // Since we don't have a valid index, assume we're using an
            // 'edit'
            // combo so format using its text value
            setErrorMessage(MessageFormat.format(getErrorMessage(), new Object[] { comboBox.getText() }));
        }

        fireApplyEditorValue();
        deactivate();
    }

    /*
     * (non-Javadoc)
     *
     * @see org.eclipse.jface.viewers.CellEditor#focusLost()
     */
    protected void focusLost()
    {
        if (isActivated())
        {
            applyEditorValueAndDeactivate();
        }
    }

    /*
     * (non-Javadoc)
     *
     * @see
     * org.eclipse.jface.viewers.CellEditor#keyReleaseOccured(org.eclipse.swt
     * .events.KeyEvent)
     */
    protected void keyReleaseOccured(KeyEvent keyEvent)
    {
        if (keyEvent.character == '\u001b')
        { // Escape character
            fireCancelEditor();
        }
        else if (keyEvent.character == '\t')
        { // tab key
            applyEditorValueAndDeactivate();
        }
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值