Add SetWindowEffect in WindowExtension namespace.
[platform/core/uifw/dali-adaptor.git] / adaptors / common / trigger-event.h
1 #ifndef __DALI_INTERNAL_TRIGGER_EVENT_H__
2 #define __DALI_INTERNAL_TRIGGER_EVENT_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 // INTERNAL INCLUDES
26 #include <base/interfaces/trigger-event-interface.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace Adaptor
35 {
36
37 class FileDescriptorMonitor;
38
39 /**
40  * The TriggerEvent class is used to send events between threads.  For example, this can be used
41  * to wake up one thread from another thread.
42  *
43  * Typically, these should be created in the application thread.
44  *
45  * The observer will be informed whenever the event is triggered.
46  *
47  * The implementation of TriggerEvent uses an event file descriptor.
48  */
49 class TriggerEvent : public TriggerEventInterface
50 {
51 public:
52
53   /**
54    * Constructor
55    * Creates an event file descriptor and starts a GSource which reads from the file
56    * descriptor when there is data.
57    *
58    * @param[in] callback The callback to call
59    * @param[in] options Trigger event options.
60    * @note The ownership of callback is taken by this class.
61    */
62   TriggerEvent( CallbackBase* callback, TriggerEventInterface::Options options = TriggerEventInterface::NONE );
63
64   /**
65    * Destructor
66    */
67   ~TriggerEvent();
68
69 public:
70
71   /**
72    * Triggers the event.
73    *
74    * This can be called from one thread in order to wake up another thread.
75    */
76   void Trigger();
77
78 private:
79
80   /**
81    * Called when our event file descriptor has been written to.
82    */
83   void Triggered();
84
85 private:
86
87   struct Source;
88
89 private:
90
91   FileDescriptorMonitor* mFileDescriptorMonitor;
92   CallbackBase* mCallback;
93   int mFileDescriptor;
94   TriggerEventInterface::Options mOptions;
95 };
96
97 } // namespace Adaptor
98
99 } // namespace Internal
100
101 } // namespace Dali
102
103 #endif // __DALI_INTERNAL_TRIGGER_EVENT_H__