From: Hyeonmi Kim Date: Fri, 7 Jun 2013 09:34:35 +0000 (+0900) Subject: Modified N_SE-40706, N_SE-40607. X-Git-Tag: submit/tizen_2.2/20130714.153149~601^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f27cb461038f95e54e262544bc37c4470957247e;p=framework%2Fosp%2Fuifw.git Modified N_SE-40706, N_SE-40607. Change-Id: I085739d43a9c226c639c3518328494e5a0a104b2 Signed-off-by: Hyeonmi Kim --- diff --git a/src/ui/controls/FUiCtrl_GroupedListViewImpl.cpp b/src/ui/controls/FUiCtrl_GroupedListViewImpl.cpp index a635e53..720013a 100644 --- a/src/ui/controls/FUiCtrl_GroupedListViewImpl.cpp +++ b/src/ui/controls/FUiCtrl_GroupedListViewImpl.cpp @@ -155,6 +155,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchPressed(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) { @@ -200,6 +205,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchReleased(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) { @@ -245,6 +255,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchMoved(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) { diff --git a/src/ui/controls/FUiCtrl_ListViewImpl.cpp b/src/ui/controls/FUiCtrl_ListViewImpl.cpp index 0a6665f..f1c3d0a 100644 --- a/src/ui/controls/FUiCtrl_ListViewImpl.cpp +++ b/src/ui/controls/FUiCtrl_ListViewImpl.cpp @@ -153,6 +153,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchPressed(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) { @@ -198,6 +203,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchReleased(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) { @@ -243,6 +253,11 @@ public: return _UI_TOUCH_EVENT_DELIVERY_NO; } + if (__core.Equals(source)) + { + return _UI_TOUCH_EVENT_DELIVERY_NO; + } + isFiltered = __impl.OnPreviewTouchMoved(__impl, touchInfo); if (isFiltered == _UI_TOUCH_EVENT_DELIVERY_NO) {