Merge branch 'master' into tizen
[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 namespace Internal
32 {
33 namespace Adaptor
34 {
35 class Timer;
36 }
37 }
38
39 class Timer : public BaseHandle
40 {
41 public:
42   typedef SignalV2< bool () > TimerSignalV2;
43   Timer();
44   static Timer New( unsigned int milliSec );
45   Timer( const Timer& timer );
46   Timer& operator=( const Timer& timer );
47   virtual ~Timer();
48   static Timer DownCast( BaseHandle handle );
49   using BaseHandle::operator=;
50   void Start();
51   void Stop();
52   void SetInterval( unsigned int milliSec );
53   unsigned int GetInterval() const;
54   bool IsRunning() const;
55   TimerSignalV2& TickSignal();
56 private:
57   Timer(Internal::Adaptor::Timer* timer);
58 };
59
60 } // namespace Dali
61
62 #endif // __DALI_TOOLKIT_TOOLKIT_TIMER_H__