Render to Frame Buffer Object.
[platform/core/uifw/dali-adaptor.git] / adaptors / base / core-event-interface.h
1 #ifndef __DALI_INTERNAL_ADAPTOR_CORE_EVENT_INTERFACE_H__
2 #define __DALI_INTERNAL_ADAPTOR_CORE_EVENT_INTERFACE_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 namespace Dali
22 {
23
24 namespace Integration
25 {
26 struct Event;
27 }
28
29 namespace Internal
30 {
31
32 namespace Adaptor
33 {
34
35 /**
36  * This interface should be used by adaptor components to send events to Core.
37  * This is preferable to using Core directly i.e. so there is a common place for measuring performance.
38  */
39 class CoreEventInterface
40 {
41 public:
42
43   /**
44    * Queue an event with Core.
45    * @param[in] event The new event.
46    */
47   virtual void QueueCoreEvent(const Dali::Integration::Event& event) = 0;
48
49   /**
50    * Process the events queued with QueueEvent().
51    */
52   virtual void ProcessCoreEvents() = 0;
53
54 protected:
55
56   /**
57    * Protected virtual destructor
58    */
59   virtual ~CoreEventInterface() {}
60 };
61
62 } // namespace Internal
63
64 } // namespace Adaptor
65
66 } // namespace Dali
67
68 #endif // __DALI_INTERNAL_ADAPTOR_CORE_EVENT_INTERFACE_H__