X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2FSWIG%2Fevents%2Factor-event.i;h=e92a7b0602d9b94300c7ee4e5c89736732abc54a;hb=refs%2Fchanges%2F28%2F93428%2F2;hp=1a4b05a1056f5dbe7154da48f3e0885df74e395c;hpb=0b656e1b343a93e2c9a92f50e84e3b30575a494d;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/SWIG/events/actor-event.i b/plugins/dali-swig/SWIG/events/actor-event.i index 1a4b05a..e92a7b0 100644 --- a/plugins/dali-swig/SWIG/events/actor-event.i +++ b/plugins/dali-swig/SWIG/events/actor-event.i @@ -308,7 +308,7 @@ if (_actorTouchDataEventHandler != null) { //here we send all data to user event handlers - return _actorTouchDataEventHandler(this, e, true); + return _actorTouchDataEventHandler(this, e); } return false; @@ -362,7 +362,7 @@ if (_actorHoverEventHandler != null) { //here we send all data to user event handlers - return _actorHoverEventHandler(this, e, true); + return _actorHoverEventHandler(this, e); } return false; @@ -416,7 +416,7 @@ if (_actorWheelEventHandler != null) { //here we send all data to user event handlers - return _actorWheelEventHandler(this, e, true); + return _actorWheelEventHandler(this, e); } return false; @@ -634,6 +634,16 @@ } } + public void Show() + { + SetVisible(true); + } + + public void Hide() + { + SetVisible(false); + } + %} %enddef