phoenix::ComboBox

A drop-down list of items. Not a combo entry where a user can enter their own text into the list.

struct ComboBox : Widget {
  function<void ()> onChange;

  void append(const string& items...);
  void reset();
  unsigned selection();
  void setSelection(unsigned row);
};