| 166 | } |
| 167 | |
| 168 | void toolbar_set_title(lv_obj_t* obj, const std::string& title) { |
| 169 | auto* toolbar = reinterpret_cast<Toolbar*>(obj); |
| 170 | lv_label_set_text(toolbar->title_label, title.c_str()); |
| 171 | } |
| 172 | |
| 173 | void toolbar_set_nav_action(lv_obj_t* obj, const char* icon, lv_event_cb_t callback, void* user_data) { |
| 174 | auto* toolbar = reinterpret_cast<Toolbar*>(obj); |
no outgoing calls
no test coverage detected