29abb84d035cd0144565e9b5f8c551dcafb597c0
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / toolkit-timer.h
1 #ifndef __DALI_TOOLKIT_TOOLKIT_TIMER_H__
2 #define __DALI_TOOLKIT_TOOLKIT_TIMER_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // EXTERNAL INCLUDES
21 #include <string>
22
23 // PUBLIC INCLUDES
24 #define __DALI_TIMER_H__
25 #include <dali/public-api/object/base-handle.h>
26 #include <dali/public-api/signals/dali-signal-v2.h>
27
28 namespace Dali
29 {
30
31 class Timer : public BaseHandle
32 {
33 public:
34   typedef SignalV2< bool () > TimerSignalV2;
35   static Timer New( unsigned int milliSec );
36   Timer();
37   Timer( const Timer& timer );
38   Timer& operator=( const Timer& timer );
39   virtual ~Timer();
40   static Timer DownCast( BaseHandle handle );
41   using BaseHandle::operator=;
42   void Start();
43   void Stop();
44   void SetInterval( unsigned int milliSec );
45   unsigned int GetInterval() const;
46   bool IsRunning() const;
47   TimerSignalV2& TickSignal();
48 private:
49   Dali::Timer::TimerSignalV2 mTickSignal;
50   unsigned int mInterval;
51   bool mIsRunning;
52 };
53
54 } // namespace Dali
55
56 #endif // __DALI_TOOLKIT_TOOLKIT_TIMER_H__