DALi Version 2.1.5
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / visual-event-observer.h
1 #ifndef DALI_INTERNAL_TOOLKIT_VISUAL_EVENT_OBSERVER_H
2 #define DALI_INTERNAL_TOOLKIT_VISUAL_EVENT_OBSERVER_H
3
4 /*
5  * Copyright (c) 2021 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 // EXTERNAL INCLUDES
21 #include <dali/public-api/object/property-value.h>
22
23 namespace Dali
24 {
25 namespace Toolkit
26 {
27 namespace Internal
28 {
29 namespace Visual
30 {
31 class Base;
32
33 /**
34  * Observer to be informed when visuals have events.
35  */
36 class EventObserver
37 {
38 public:
39   /**
40    * Inform the observer of the object when a resource is ready.
41    * @param[in] object The connection owner
42    */
43   virtual void ResourceReady(Visual::Base& object) = 0;
44
45   /**
46    * Inform the observer of the object when an event occurs.
47    * @param[in] object The connection owner
48    * @param[in] signalId The signal to emit. See Visual to find supported signals
49    */
50   virtual void NotifyVisualEvent(Visual::Base& object, Property::Index signalId) = 0;
51
52 protected:
53   /**
54    * constructor
55    */
56   EventObserver()
57   {
58   }
59
60   /**
61    * virtual destructor
62    */
63   virtual ~EventObserver()
64   {
65   }
66
67   // Undefined copy constructor.
68   EventObserver(const EventObserver&) = delete;
69
70   // Undefined assignment operator.
71   EventObserver& operator=(const EventObserver&) = delete;
72 };
73
74 } // namespace Visual
75 } // namespace Internal
76 } // namespace Toolkit
77 } // namespace Dali
78
79 #endif // DALI_INTERNAL_TOOLKIT_VISUAL_EVENT_OBSERVER_H