[dali_2.3.33] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / widget-application-impl.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 // CLASS HEADER
19 #include <dali/integration-api/debug.h>
20 #include <dali/internal/system/common/widget-application-impl.h>
21
22 namespace Dali
23 {
24 namespace Internal
25 {
26 namespace Adaptor
27 {
28 // factory function, must be implemented
29 namespace WidgetApplicationFactory
30 {
31 /**
32  * Create a new widget application
33  * @param[in]  argc         A pointer to the number of arguments
34  * @param[in]  argv         A pointer to the argument list
35  * @param[in]  stylesheet   The path to user defined theme file
36  * @param[in]  windowData   The window data
37  */
38 WidgetApplicationPtr Create(int* argc, char** argv[], const std::string& stylesheet, const WindowData& windowData);
39
40 } // namespace WidgetApplicationFactory
41
42 WidgetApplicationPtr WidgetApplication::New(
43   int*               argc,
44   char**             argv[],
45   const std::string& stylesheet,
46   const WindowData&  windowData)
47 {
48   // WidgetApplicationPtr //widgetApplication( new WidgetApplication (argc, argv, stylesheet ) );
49   return WidgetApplicationFactory::Create(argc, argv, stylesheet, windowData);
50 }
51
52 WidgetApplication::WidgetApplication(int* argc, char** argv[], const std::string& stylesheet, const WindowData& windowData)
53 : Application(argc, argv, stylesheet, Framework::WIDGET, false, windowData)
54 {
55   DALI_LOG_ERROR("WidgetApplication is not implemented in UBUNTU profile.\n");
56 }
57
58 WidgetApplication::~WidgetApplication()
59 {
60 }
61
62 void WidgetApplication::RegisterWidgetCreatingFunction(const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction)
63 {
64 }
65
66 } // namespace Adaptor
67
68 } // namespace Internal
69
70 } // namespace Dali