Hello,
My game implment code to show quick panel like this:
ad->conform = elm_conformant_add(ad->win);
elm_win_indicator_mode_set(ad->win, ELM_WIN_INDICATOR_SHOW);
elm_win_indicator_opacity_set(ad->win, ELM_WIN_INDICATOR_OPAQUE);
evas_object_size_hint_weight_set(ad->conform, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(ad->win, ad->conform);
evas_object_show(ad->conform);
Evas_Object *vbox;
vbox = elm_box_add(ad->conform);
elm_object_content_set(ad->conform, vbox);
I want to pause my game when the quick panel was showed(user scroll down at the top).
Please tell me how cacth this event.
thanks a lot.