1 #ifndef DALI_INTERNAL_EVENT_HANDLER_H
2 #define DALI_INTERNAL_EVENT_HANDLER_H
5 * Copyright (c) 2019 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <cstdint> // uint32_t
23 #include <dali/public-api/common/intrusive-ptr.h>
25 #include <dali/integration-api/events/key-event-integ.h>
26 #include <dali/integration-api/events/point.h>
27 #include <dali/integration-api/events/touch-event-combiner.h>
28 #include <dali/devel-api/adaptor-framework/clipboard.h>
29 #include <dali/devel-api/adaptor-framework/style-monitor.h>
32 #include <dali/internal/accessibility/common/accessibility-adaptor-impl.h>
33 #include <dali/internal/clipboard/common/clipboard-event-notifier-impl.h>
34 #include <dali/internal/system/common/core-event-interface.h>
35 #include <dali/internal/window-system/common/damage-observer.h>
36 #include <dali/internal/window-system/common/rotation-observer.h>
37 #include <dali/internal/window-system/common/window-base.h>
59 * The Event Handler class is responsible for setting up receiving of Ecore events and then converts them
60 * to TouchEvents when it does receive them.
62 * These TouchEvents are then passed on to Core.
64 class EventHandler : public ConnectionTracker, public Dali::RefObject
70 * @param[in] scene The scene where events will be sent to.
71 * @param[in] coreEventInterface Used to send events to Core.
72 * @param[in] damageObserver The damage observer (to pass damage events to).
74 EventHandler( Dali::Integration::Scene scene, CoreEventInterface& coreEventInterface, DamageObserver& damageObserver );
82 * Feed (Send) touch event to core and gesture manager
83 * @param[in] touchEvent The touch event holding the touch point information.
85 void FeedTouchPoint( TouchPoint& point, uint32_t timeStamp );
88 * Feed (Send) wheel event to core and gesture manager
89 * @param[in] wheelEvent The wheel event
91 void FeedWheelEvent( WheelEvent& wheelEvent );
94 * Feed (Send) key event to core
95 * @param[in] keyEvent The key event holding the key information.
97 void FeedKeyEvent( KeyEvent& keyEvent );
100 * Feed (Send) an event to core
101 * @param[in] event The event information.
103 void FeedEvent( Integration::Event& event );
106 * Called when the adaptor is paused.
111 * Called when the adaptor is resumed (from pause).
116 * Set the rotation observer (note, some adaptors may not have a rotation observer)
117 * @param[in] observer The rotation observer
119 void SetRotationObserver( RotationObserver* observer );
124 * Send touch event to core.
125 * @param[in] point The touch point information.
126 * @param[in] timeStamp The time the touch occurred.
128 void SendEvent(Integration::Point& point, uint32_t timeStamp);
131 * Send key event to core.
132 * @param[in] keyEvent The KeyEvent to send.
134 void SendEvent(Integration::KeyEvent& keyEvent);
137 * Send wheel event to core.
138 * @param[in] wheelEvent The wheel event
140 void SendWheelEvent( WheelEvent& wheelEvent );
143 * Send a style change event to the style monitor.
144 * @param[in] styleChange The style that has changed.
146 void SendEvent( StyleChange::Type styleChange );
149 * Send a window damage event to the observer.
150 * @param[in] area Damaged area.
152 void SendEvent( const DamageArea& area );
155 * Inform rotation observer of rotation prepare event
156 * @param[in] rotation The rotation event
158 void SendRotationPrepareEvent( const RotationEvent& rotation );
161 * Inform rotation observer of rotation prepare event
163 void SendRotationRequestEvent();
166 * Resets the event handler.
167 * Called when the adaptor is paused or resumed.
172 * Called when a touch event is received.
174 void OnTouchEvent( Integration::Point& point, uint32_t timeStamp );
177 * Called when a mouse wheel is received.
179 void OnWheelEvent( WheelEvent& wheelEvent );
182 * Called when a key event is received.
184 void OnKeyEvent( Integration::KeyEvent& keyEvent );
187 * Called when the window focus is changed.
189 void OnFocusChanged( bool focusIn );
192 * Called when the window is damaged.
194 void OnWindowDamaged( const DamageArea& area );
197 * Called when the source window notifies us the content in clipboard is selected.
199 void OnSelectionDataSend( void* event );
202 * Called when the source window sends us about the selected content.
204 void OnSelectionDataReceived( void* event );
207 * Called when the style is changed.
209 void OnStyleChanged( StyleChange::Type styleChange );
212 * Called when Ecore ElDBus accessibility event is received.
214 void OnAccessibilityNotification( const WindowBase::AccessibilityInfo& info );
219 * Convert touch event position
221 void ConvertTouchPosition( Integration::Point& point );
226 EventHandler( const EventHandler& eventHandler );
229 EventHandler& operator=( const EventHandler& eventHandler );
233 Dali::Integration::Scene mScene; ///< The scene the event handler is created for.
234 CoreEventInterface& mCoreEventInterface; ///< Used to send events to Core.
235 Dali::Integration::TouchEventCombiner mCombiner; ///< Combines multi-touch events.
236 Dali::StyleMonitor mStyleMonitor; ///< Handle to the style monitor, set on construction, to send font size and font change events to.
237 DamageObserver& mDamageObserver; ///< Reference to the DamageObserver, set on construction, to sent damage events to.
238 RotationObserver* mRotationObserver; ///< Pointer to rotation observer, if present.
240 Dali::AccessibilityAdaptor mAccessibilityAdaptor; ///< Pointer to the accessibility adaptor
241 Dali::ClipboardEventNotifier mClipboardEventNotifier; ///< Pointer to the clipboard event notifier
242 Dali::Clipboard mClipboard;///< Pointer to the clipboard
248 bool mPaused; ///< The paused state of the adaptor.
251 } // namespace Adaptor
253 } // namespace Internal
257 #endif // DALI_INTERNAL_EVENT_HANDLER_H