| 72 | } |
| 73 | |
| 74 | static void |
| 75 | _toggle_start_button(AppInfo *info) |
| 76 | { |
| 77 | if (!info->autoPlaying) |
| 78 | { |
| 79 | info->autoPlaying = EINA_TRUE; |
| 80 | info->view->play(); |
| 81 | elm_object_text_set(info->button, "Stop"); |
| 82 | } |
| 83 | else |
| 84 | { |
| 85 | info->autoPlaying = EINA_FALSE; |
| 86 | info->view->stop(); |
| 87 | elm_object_text_set(info->button, "Start"); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | static Eina_Bool |
| 92 | _animator_cb(void *data) |
no test coverage detected