Dropdown with lemur

Interesting, I really only write because I’m bored. Lately I’ve been weight lifting to occupy my time. My ass has never looked better.

2 Likes

I can’t create a combobox
To create i need a button ,textfield and a listbox
Sorry is not a dropdown but a combobox

1 Like

i have implemented a simple dropdown:

import com.jme3.math.Vector3f;
import com.simsilica.lemur.Axis;
import com.simsilica.lemur.Button;
import com.simsilica.lemur.FillMode;
import com.simsilica.lemur.GuiGlobals;
import com.simsilica.lemur.HAlignment;
import com.simsilica.lemur.Label;
import com.simsilica.lemur.ListBox;
import com.simsilica.lemur.Panel;
import com.simsilica.lemur.VAlignment;
import com.simsilica.lemur.component.BoxLayout;
import com.simsilica.lemur.core.GuiControl;
import com.simsilica.lemur.core.VersionedList;
import com.simsilica.lemur.core.VersionedReference;
import com.simsilica.lemur.event.PopupState;
import com.simsilica.lemur.list.SelectionModel;
import com.simsilica.lemur.style.ElementId;
import java.util.Set;

public class Dropdown<T> extends Panel {

    public static final String ELEMENT_ID = "dropdown";
    private boolean popupShown;
    private final Label chosenElement;
    private final Button collapseButton;
    private final ListBox<T> listBox;
    private VersionedReference<Set<Integer>> selectionRef;

    public Dropdown() {
        this(null);
    }

    public Dropdown(String style) {
        this(true, new ElementId(ELEMENT_ID), style);
    }

    public Dropdown(ElementId elementId, String style) {
        this(true, elementId, style);
    }

    @Override
    public void updateLogicalState(float tpf) {
        super.updateLogicalState(tpf);
        if (selectionRef.update()) {
            resetOpen();
        }
    }

    protected Dropdown(boolean applyStyles, ElementId elementId, String style) {
        super(false, elementId, style);
        BoxLayout layout = new BoxLayout(Axis.X, FillMode.None);
        getControl(GuiControl.class).setLayout(layout);
        this.collapseButton = new Button("v", elementId.child("button"), style);
        this.chosenElement = new Label("", elementId.child("selection"), style);
        layout.addChild(collapseButton);
        layout.addChild(chosenElement);
        collapseButton.setTextVAlignment(VAlignment.Center);
        collapseButton.addClickCommands((s) -> {
            resetOpen();
        });
        chosenElement.setTextHAlignment(HAlignment.Center);
        chosenElement.setTextVAlignment(VAlignment.Center);
        listBox = new ListBox<>(new VersionedList<>(), elementId.child("popup"), style);

        this.selectionRef = listBox.getSelectionModel().createReference();
        if (applyStyles) {
            GuiGlobals.getInstance().getStyles().applyStyles(this, elementId, style);
        }
    }

    protected void resetOpen() {
        final PopupState popupState = GuiGlobals.getInstance().getPopupState();
        if (popupShown) {
            if (popupState.isPopup(listBox)) {
                popupState.closePopup(listBox);
            }
            popupShown = false;
        } else {
            Vector3f preferredSize = new Vector3f(Math.max(getSize().x, 100f), 100f, 1);
            listBox.setSize(preferredSize);
            listBox.setPreferredSize(preferredSize);
            Vector3f localTranslation = getWorldTranslation();
            listBox.setLocalTranslation(localTranslation.x, localTranslation.y - getSize().y, localTranslation.z);
            popupState.showPopup(listBox, (source) -> {
                Integer selection = listBox.getSelectionModel().getSelection();
                if (selection != null) {
                    chosenElement.setText(listBox.getModel().get(selection).toString());
                }
                popupShown = false;
            });
            GuiGlobals.getInstance().requestFocus(listBox);
            popupShown = true;
        }
    }

    public VersionedList<T> getModel() {
        return listBox.getModel();
    }

    public SelectionModel getSelectionModel() {
        return listBox.getSelectionModel();
    }

}
1 Like

Lemur now contains a drop down, it is called Selector

        VersionedList<String> items = new VersionedList<>();
        items.add("Alpha");
        items.add("Beta");
        items.add("Gamma");
        Selector<String> dropdown = new Selector<>( items );
        myWindow.addChild(dropdown);

I know I’m resurrecting an old thread, but it’s the top result on google so I wanted to make sure it contained up to date information

5 Likes