adds standard long button to current group.
| 1966 | |
| 1967 | // adds standard long button to current group. |
| 1968 | void newuiSheet::AddLongButton(const char *title, int16_t id, int16_t flags) { |
| 1969 | newuiSheet::t_gadget_desc *gadget = AddGadget(id, GADGET_LBUTTON, title); |
| 1970 | gadget->parm.i = flags; |
| 1971 | } |
| 1972 | |
| 1973 | // adds checkbox to current group. initial state of checkbox can be set. |
| 1974 | bool *newuiSheet::AddCheckBox(const char *title, bool init_state, int16_t id) { |
no outgoing calls
no test coverage detected