[dali_2.2.12] 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::OPAQUE ? false : true));
42
43     //Store only the value before adaptor is created
44     internal->StoreWindowPositionSize(positionSize);
45   }
46   else
47   {
48     internal = Internal::Adaptor::Application::New(argc, argv, stylesheet, windowMode, positionSize, Internal::Adaptor::Framework::NORMAL, type, false);
49   }
50   return Application(internal.Get());
51 }
52
53 bool AddIdleWithReturnValue(Application application, CallbackBase* callback)
54 {
55   return Internal::Adaptor::GetImplementation(application).AddIdle(callback, true);
56 }
57
58 std::string GetDataPath()
59 {
60   return Internal::Adaptor::Application::GetDataPath();
61 }
62
63 Application DownCast(Dali::RefObject* refObject)
64 {
65   return Application(dynamic_cast<Dali::Internal::Adaptor::Application*>(refObject));
66 }
67
68 CustomCommandReceivedSignalType& CustomCommandReceivedSignal(Application application)
69 {
70   DALI_ASSERT_ALWAYS(Adaptor::IsAvailable() && "Adaptor is not available")
71
72   Internal::Adaptor::NetworkServicePtr networkService = Internal::Adaptor::NetworkService::Get();
73
74   DALI_ASSERT_ALWAYS(networkService && "Network Service Unavailable");
75
76   return networkService->CustomCommandReceivedSignal();
77 }
78
79 int32_t GetRenderThreadId(Application application)
80 {
81   return Internal::Adaptor::GetImplementation(application).GetRenderThreadId();
82 }
83
84 } // namespace DevelApplication
85
86 } // namespace Dali
87
88 extern "C" void ApplicationPreInitialize(int* argc, char** argv[])
89 {
90   Dali::Internal::Adaptor::Application::PreInitialize(argc, argv);
91 }