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