On Tue, 2 Sep 2014 10:56:07 +0800 (CST) bray <[email protected]> said:
> Hi everyone: > > I use function(evas_object_image_file_set) to drew a lot of pictures on the > screen(EFL v.1.7.4). > > > The different callback functions are registered in different images. > such as: > evas_object_event_callback_add(btn_A, EVAS_CALLBACK_MOUSE_UP, > CicoHSControlBarTouch::TouchUpBtn_A, > NULL); > evas_object_event_callback_add(btn_B, EVAS_CALLBACK_MOUSE_UP, > CicoHSControlBarTouch::TouchUpBtn_B, > NULL); > evas_object_event_callback_add(btn_C, EVAS_CALLBACK_MOUSE_UP, > CicoHSControlBarTouch::TouchUpBtn_C, > NULL); > Node: Function (TouchUpBtn_A ) to execute appA。 Function TouchUpBtn_B > and TouchUpBtn_C have nothing to do. > > > > > I click btn_A to execute appA.when appA is loading, I click btn_B and appA is > launched. After this, no matter which button is clicked, function > TouchUpBtn_B will called. > > > Can anyone know the reason ? are those buttons image objects? (evas_object_image_add())? or something else? and it sounds to me like your button is getting stuck - maybe more down events than up events (i have seen some hw do this before where you see lots of down events like down, move, down, move, down, move, down, move, up - thats a bug in hw/driver layer and could cause issues. it also coul dbe a bug in efl.. and we may have fixed it already, but you are asking about code in a 2 year old release and we're up to 1.11 now and moving to 1.12 - so the first response is.. "can you reproduce the problem with current release versions" and then we have to worry about debugging your actual event flow if we still have the issue. -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [email protected] ------------------------------------------------------------------------------ Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ _______________________________________________ enlightenment-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-users
