[dali_2.3.25] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / pointer-constraints-event.h
1 #ifndef DALI_WINDOW_DEVEL_POINTER_CONSTRAINTS_EVENT_H
2 #define DALI_WINDOW_DEVEL_POINTER_CONSTRAINTS_EVENT_H
3
4 /*
5  * Copyright (c) 2023 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 // INTERNAL INCLUDES
22 #include <dali/public-api/dali-adaptor-common.h>
23
24 namespace Dali
25 {
26 namespace DevelWindow
27 {
28 /**
29  * @brief PointerConstraintsEvent occurs when pointer is locked/unlocked.
30  *
31  * A signal is emitted when pointer is locked/unlocked.
32  */
33 struct DALI_ADAPTOR_API PointerConstraintsEvent
34 {
35   /**
36    * @brief Constructor which creates a PointerConstraintsEvent instance
37    * @param[in] x The x coordinate relative to window where event happened
38    * @param[in] y The y coordinate relative to window where event happened
39    * @param[in] locked The status whether pointer is locked/unlocked
40    * @param[in] confined The status whether pointer is confined/unconfined
41    */
42   PointerConstraintsEvent(int32_t x, int32_t y, bool locked, bool confined)
43   : x(x),
44     y(y),
45     locked(locked),
46     confined(confined)
47   {
48   }
49
50   int32_t x;
51   int32_t y;
52   bool    locked;
53   bool    confined;
54 };
55
56 } // namespace DevelWindow
57
58 } // namespace Dali
59
60 #endif // DALI_WINDOW_DEVEL_POINTER_CONSTRAINTS_EVENT_H