phoenix::RadioBox

A groupable, mutually-exclusive radio box control.

struct RadioBox : Widget {
  function<void ()> onActivate;

  static void group(RadioBox&... items);

  bool checked();
  void setChecked();
  void setText(const string &text);
};