Package org.python.pydev.utils.tablecombo

Examples of org.python.pydev.utils.tablecombo.TableCombo


    /*
     * Lazily create and return the Combo control.
     */
    protected TableCombo getComboBoxControl(Composite parent) {
        if (fCombo == null) {
            fCombo = new TableCombo(parent, SWT.READ_ONLY | SWT.BORDER);
            fCombo.setShowTableHeader(false);
            fCombo.setFont(parent.getFont());
            fCombo.defineColumns(new int[] { 100 });
            for (int i = 0; i < fEntryNamesAndValues.length; i++) {
                TableItem tableItem = new TableItem(fCombo.getTable(), SWT.NONE);
View Full Code Here

TOP

Related Classes of org.python.pydev.utils.tablecombo.TableCombo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.