Revert "[Tizen] Not execute the remove callback"
[platform/core/uifw/dali-core.git] / dali / internal / event / events / multi-point-event-util.h
1 #ifndef DALI_INTERNAL_MULTI_POINT_EVENT_UTIL_H
2 #define DALI_INTERNAL_MULTI_POINT_EVENT_UTIL_H
3
4 /*
5  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23 #include <dali/internal/event/actors/actor-impl.h>
24
25 namespace Dali
26 {
27 namespace Internal
28 {
29 #if defined(DEBUG_ENABLED)
30
31 /**
32  * Prints out all the children of the given actor when debug is enabled.
33  *
34  * @param[in]  actor  The actor whose children to print.
35  * @param[in]  level  The number of " | " to put in front of the children.
36  */
37 void PrintChildren(Debug::Filter* logFilter, Dali::Actor actor, int level);
38
39 /**
40  * Prints the entire hierarchy of the scene.
41  */
42 void PrintHierarchy(Debug::Filter* logFilter);
43
44 #define PRINT_HIERARCHY(f) PrintHierarchy(f)
45
46 #else // defined(DEBUG_ENABLED)
47
48 #define PRINT_HIERARCHY(f)
49
50 #endif // defined(DEBUG_ENABLED)
51
52 /**
53  * In the hit test algorithm above we do not descend actor tree if it is insensitive, so here, we
54  * should also check if any of the actor's parents has become insensitive since we last processed
55  * it.
56  */
57 bool IsActuallySensitive(Actor* actor);
58
59 } // namespace Internal
60
61 } // namespace Dali
62
63 #endif // DALI_INTERNAL_MULTI_POINT_EVENT_UTIL_H