[dali_2.3.27] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / android / window-system-android.cpp
1 /*
2  * Copyright (c) 2024 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // INTERNAL HEADERS
19 #include <dali/internal/adaptor/common/framework.h>
20 #include <dali/internal/window-system/common/window-system.h>
21
22 // EXTERNAL_HEADERS
23 #include <dali/integration-api/adaptor-framework/adaptor.h>
24 #include <dali/integration-api/adaptor-framework/android/android-framework.h>
25 #include <dali/integration-api/adaptor-framework/scene-holder.h>
26 #include <dali/integration-api/debug.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 namespace WindowSystem
35 {
36 namespace
37 {
38 static bool gGeometryHittest = false;
39 }
40
41 void Initialize()
42 {
43 }
44
45 void Shutdown()
46 {
47 }
48
49 void GetScreenSize(int32_t& width, int32_t& height)
50 {
51   ANativeWindow* window = Dali::Integration::AndroidFramework::Get().GetApplicationWindow();
52   width                 = ANativeWindow_getWidth(window);
53   height                = ANativeWindow_getHeight(window);
54   DALI_LOG_WARNING("Native window width %d, height %d", width, height);
55 }
56
57 void UpdateScreenSize()
58 {
59 }
60
61 bool SetKeyboardRepeatInfo(float rate, float delay)
62 {
63   return false;
64 }
65
66 bool GetKeyboardRepeatInfo(float& rate, float& delay)
67 {
68   return false;
69 }
70
71 bool SetKeyboardHorizontalRepeatInfo(float rate, float delay)
72 {
73   return false;
74 }
75
76 bool GetKeyboardHorizontalRepeatInfo(float& rate, float& delay)
77 {
78   return false;
79 }
80
81 bool SetKeyboardVerticalRepeatInfo(float rate, float delay)
82 {
83   return false;
84 }
85
86 bool GetKeyboardVerticalRepeatInfo(float& rate, float& delay)
87 {
88   return false;
89 }
90
91 void SetGeometryHittestEnabled(bool enable)
92 {
93   DALI_LOG_RELEASE_INFO("GeometryHittest : %d \n", enable);
94   if(gGeometryHittest != enable && Dali::Adaptor::IsAvailable())
95   {
96     Dali::SceneHolderList sceneHolders = Dali::Adaptor::Get().GetSceneHolders();
97     for(auto iter = sceneHolders.begin(); iter != sceneHolders.end(); ++iter)
98     {
99       if(*iter)
100       {
101         (*iter).SetGeometryHittestEnabled(enable);
102       }
103     }
104   }
105   gGeometryHittest = enable;
106 }
107
108 bool IsGeometryHittestEnabled()
109 {
110   return gGeometryHittest;
111 }
112
113 } // namespace WindowSystem
114
115 } // namespace Adaptor
116
117 } // namespace Internal
118
119 } // namespace Dali