(Vector) Change event processing
[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) 2018 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
32 class Base;
33
34 /**
35  * Observer to be informed when visuals have events.
36  */
37 class EventObserver
38 {
39 public:
40
41   /**
42    * Inform the observer of the object when a resource is ready.
43    * @param[in] object The connection owner
44    */
45   virtual void ResourceReady( Visual::Base& object ) = 0;
46
47   /**
48    * Inform the observer of the object when an event occurs.
49    * @param[in] object The connection owner
50    * @param[in] signalId The signal to emit. See Visual to find supported signals
51    */
52   virtual void NotifyVisualEvent( Visual::Base& object, Property::Index signalId ) = 0;
53
54 protected:
55
56   /**
57    * constructor
58    */
59   EventObserver()
60   {
61   }
62
63   /**
64    * virtual destructor
65    */
66   virtual ~EventObserver()
67   {
68   }
69
70   // Undefined copy constructor.
71   EventObserver( const EventObserver& ) = delete;
72
73   // Undefined assignment operator.
74   EventObserver& operator=( const EventObserver& ) = delete;
75 };
76
77 } // Visual
78 } // Internal
79 } // Toolkit
80 } // Dali
81
82 #endif // DALI_INTERNAL_TOOLKIT_VISUAL_EVENT_OBSERVER_H