adds a radio button to current group. initial state of radio may be set
| 2006 | |
| 2007 | // adds a radio button to current group. initial state of radio may be set |
| 2008 | void newuiSheet::AddLongRadioButton(const char *title, int16_t id) { |
| 2009 | newuiSheet::t_gadget_desc *gadget = AddGadget(id, GADGET_LRADIO, title); |
| 2010 | gadget->parm.i = -1; |
| 2011 | } |
| 2012 | |
| 2013 | // adds a slider, set the range for it too. |
| 2014 | int16_t *newuiSheet::AddSlider(const char *title, int16_t range, int16_t init_pos, tSliderSettings *settings, int16_t id) { |
no outgoing calls
no test coverage detected