adds a radio button to current group. initial state of radio may be set
| 1993 | |
| 1994 | // adds a radio button to current group. initial state of radio may be set |
| 1995 | void newuiSheet::AddRadioButton(const char *title, int16_t id) { |
| 1996 | newuiSheet::t_gadget_desc *gadget = AddGadget(id, GADGET_RADIO, title); |
| 1997 | gadget->parm.i = -1; |
| 1998 | } |
| 1999 | |
| 2000 | // adds a radio button to current group. initial state of radio may be set |
| 2001 | int *newuiSheet::AddFirstLongRadioButton(const char *title, int16_t id) { |
no outgoing calls
no test coverage detected