[dali_2.3.25] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / application-devel.cpp
1 /*
2  * Copyright (c) 2023 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 INCLUDES
19 #include <dali/devel-api/adaptor-framework/application-devel.h>
20 #include <dali/integration-api/adaptor-framework/scene-holder.h>
21 #include <dali/internal/adaptor/common/adaptor-impl.h>
22 #include <dali/internal/adaptor/common/application-impl.h>
23 #include <dali/internal/network/common/network-service-impl.h>
24
25 namespace Dali
26 {
27 namespace DevelApplication
28 {
29 Application New(int* argc, char** argv[], const std::string& stylesheet, Application::WINDOW_MODE windowMode, PositionSize positionSize, WindowType type)
30 {
31   Internal::Adaptor::ApplicationPtr internal = Internal::Adaptor::Application::GetPreInitializedApplication();
32   if(internal)
33   {
34     // Set Defaut Window type
35     internal->SetDefaultWindowType(type);
36
37     // pre-initialized application
38     internal->SetCommandLineOptions(argc, argv);
39     internal->SetStyleSheet(stylesheet);
40
41     internal->GetWindow().SetTransparency((windowMode == Application::TRANSPARENT));
42
43     // Store only the value before adaptor is created
44     internal->StoreWindowPositionSize(positionSize);
45   }
46   else
47   {
48     WindowData windowData;
49     windowData.SetPositionSize(positionSize);
50     windowData.SetTransparency(windowMode == Application::TRANSPARENT);
51     windowData.SetWindowType(type);
52
53     internal = Internal::Adaptor::Application::New(argc, argv, stylesheet, Internal::Adaptor::Framework::NORMAL, false, windowData);
54   }
55   return Application(internal.Get());
56 }
57
58 bool AddIdleWithReturnValue(Application application, CallbackBase* callback)
59 {
60   return Internal::Adaptor::GetImplementation(application).AddIdle(callback, true);
61 }
62
63 std::string GetDataPath()
64 {
65   return Internal::Adaptor::Application::GetDataPath();
66 }
67
68 Application DownCast(Dali::RefObject* refObject)
69 {
70   return Application(dynamic_cast<Dali::Internal::Adaptor::Application*>(refObject));
71 }
72
73 CustomCommandReceivedSignalType& CustomCommandReceivedSignal(Application application)
74 {
75   DALI_ASSERT_ALWAYS(Adaptor::IsAvailable() && "Adaptor is not available")
76
77   Internal::Adaptor::NetworkServicePtr networkService = Internal::Adaptor::NetworkService::Get();
78
79   DALI_ASSERT_ALWAYS(networkService && "Network Service Unavailable");
80
81   return networkService->CustomCommandReceivedSignal();
82 }
83
84 int32_t GetRenderThreadId(Application application)
85 {
86   return Internal::Adaptor::GetImplementation(application).GetRenderThreadId();
87 }
88
89 void FlushUpdateMessages(Application application)
90 {
91   Internal::Adaptor::GetImplementation(application).FlushUpdateMessages();
92 }
93
94 } // namespace DevelApplication
95
96 } // namespace Dali
97
98 extern "C" void ApplicationPreInitialize(int* argc, char** argv[])
99 {
100   Dali::Internal::Adaptor::Application::PreInitialize(argc, argv);
101 }