| 265 | } |
| 266 | |
| 267 | void ButtonWidget_Add(void* screen, struct ButtonWidget* w, int minWidth, Widget_LeftClick onClick) { |
| 268 | ButtonWidget_Init(w, minWidth, onClick); |
| 269 | AddWidget(screen, w); |
| 270 | } |
| 271 | |
| 272 | void ButtonWidget_Set(struct ButtonWidget* w, const cc_string* text, struct FontDesc* font) { |
| 273 | struct DrawTextArgs args; |
no test coverage detected