20f87986c12cc43fbde761b2c7d69c1b033453b8
[platform/core/uifw/dali-adaptor.git] / adaptors / common / callback-manager.h
1 #ifndef __DALI_INTERNAL_CALLBACK_MANAGER_H__
2 #define __DALI_INTERNAL_CALLBACK_MANAGER_H__
3
4 /*
5  * Copyright (c) 2014 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/signals/callback.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace Adaptor
32 {
33
34 /**
35  * Abstract interface to install call backs in to an applications main loop.
36  */
37 class CallbackManager
38 {
39
40 public:
41
42     /**
43      * Create a new call back interface
44      */
45     static CallbackManager* New();
46
47     /**
48      * Virtual destructor
49      */
50     virtual ~CallbackManager() {}
51
52     /**
53      * Adds a call back to be run on idle.
54      * Must be call from main thread only.
55      * @param callback custom call back function
56      * @param priority call back priority
57      * @return true on success
58      */
59     virtual bool AddIdleCallback( CallbackBase* callback ) = 0;
60
61     /**
62      * Starts the callback manager.
63      */
64     virtual void Start() = 0;
65
66     /**
67      * Stop the callback manager and can remove all pending callbacks synchronously.
68      * This call will synchronise with the main loop and not return
69      * until all call backs have been deleted.
70      */
71     virtual void Stop() = 0;
72
73 protected:
74
75     /**
76      * constructor
77      */
78     CallbackManager() {}
79
80 private:
81
82     // Undefined copy constructor.
83     CallbackManager( const CallbackManager& );
84
85     // Undefined assignment operator.
86     CallbackManager& operator=( const CallbackManager& );
87
88 };
89
90 } // namespace Adaptor
91
92 } // namespace Internal
93
94 } // namespace Dali
95
96 #endif // __DALI_INTERNAL_CALLBACK_MANAGER_H__