Use WindowData in the constructors of Application and Window
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / macos / widget-application-impl-mac.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/macos/widget-application-impl-mac.h>
21
22 namespace Dali
23 {
24 namespace Internal
25 {
26 namespace Adaptor
27 {
28 WidgetApplicationPtr WidgetApplicationCocoa::New(
29   int*               argc,
30   char**             argv[],
31   const std::string& stylesheet,
32   const WindowData&  windowData)
33 {
34   return new WidgetApplicationCocoa(argc, argv, stylesheet, windowData);
35 }
36
37 WidgetApplicationCocoa::WidgetApplicationCocoa(
38   int*               argc,
39   char**             argv[],
40   const std::string& stylesheet,
41   const WindowData&  windowData)
42 : WidgetApplication(argc, argv, stylesheet, windowData)
43 {
44   DALI_LOG_ERROR("WidgetApplication is not implemented in MACOS profile.\n");
45 }
46
47 WidgetApplicationCocoa::~WidgetApplicationCocoa()
48 {
49 }
50
51 void WidgetApplicationCocoa::RegisterWidgetCreatingFunction(
52   const std::string&                            widgetName,
53   Dali::WidgetApplication::CreateWidgetFunction createFunction)
54 {
55 }
56
57 // factory function, must be implemented
58 namespace WidgetApplicationFactory
59 {
60 /**
61  * Create a new widget application
62  * @param[in]  argc         A pointer to the number of arguments
63  * @param[in]  argv         A pointer to the argument list
64  * @param[in]  stylesheet   The path to user defined theme file
65  * @param[in]  windowData   The window data
66  */
67 WidgetApplicationPtr Create(int* argc, char** argv[], const std::string& stylesheet, const WindowData& windowData)
68 {
69   return WidgetApplicationCocoa::New(argc, argv, stylesheet, windowData);
70 }
71
72 } // namespace WidgetApplicationFactory
73
74 } // namespace Adaptor
75
76 } // namespace Internal
77
78 } // namespace Dali