Moved Gesture::State and -::Type to gesture-enumerations.h.
[platform/core/uifw/dali-core.git] / dali / internal / update / gestures / pan-gesture-profiling.h
1 #ifndef DALI_INTERNAL_PAN_GESTURE_PROFILING_H
2 #define DALI_INTERNAL_PAN_GESTURE_PROFILING_H
3
4 /*
5  * Copyright (c) 2019 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/public-api/math/vector2.h>
23 #include <dali/public-api/common/vector-wrapper.h>
24 #include <dali/public-api/events/gesture-enumerations.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 struct PanGestureProfiling
33 {
34   struct Position
35   {
36     Position( unsigned int time, Vector2 position, Vector2 displacement, Vector2 velocity, GestureState state )
37     : time( time ), position( position ), displacement( displacement ), velocity( velocity ), state( state )
38     {
39     }
40
41     unsigned int time;
42     Vector2 position;
43     Vector2 displacement;
44     Vector2 velocity;
45     GestureState state;
46   };
47
48   typedef std::vector< PanGestureProfiling::Position > PanPositionContainer;
49
50   void PrintData() const;
51
52   void PrintData( const PanPositionContainer& dataContainer, const char * const prefix ) const;
53
54   void ClearData();
55
56   PanPositionContainer mRawData;
57   PanPositionContainer mLatestData;
58   PanPositionContainer mAveragedData;
59 };
60
61
62 } // namespace Internal
63
64 } // namespace Dali
65
66 #endif // DALI_INTERNAL_PAN_GESTURE_PROFILING_H