Initial copy from dali-adaptor repository
[platform/core/uifw/dali-adaptor-legacy.git] / dali / internal / system / android / widget-application-impl-android.cpp
1 /*
2  * Copyright (c) 2019 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/internal/system/android/widget-application-impl-android.h>
20 #include <dali/integration-api/debug.h>
21
22 namespace Dali
23 {
24
25 namespace Internal
26 {
27
28 namespace Adaptor
29 {
30
31 WidgetApplicationPtr WidgetApplicationAndroid::New(
32   int* argc,
33   char **argv[],
34   const std::string& stylesheet)
35 {
36   return new WidgetApplicationAndroid(argc, argv, stylesheet );
37 }
38
39 WidgetApplicationAndroid::WidgetApplicationAndroid( int* argc, char** argv[], const std::string& stylesheet )
40 : WidgetApplication(argc, argv, stylesheet)
41 {
42   DALI_LOG_ERROR("WidgetApplication is not implemented in Android profile.\n");
43 }
44
45 WidgetApplicationAndroid::~WidgetApplicationAndroid() = default;
46
47 void WidgetApplicationAndroid::RegisterWidgetCreatingFunction( const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction )
48 {
49 }
50
51 // factory function, must be implemented
52 namespace WidgetApplicationFactory
53 {
54 /**
55  * Create a new widget application
56  * @param[in]  argc         A pointer to the number of arguments
57  * @param[in]  argv         A pointer to the argument list
58  * @param[in]  stylesheet   The path to user defined theme file
59  */
60 WidgetApplicationPtr Create( int* argc, char **argv[], const std::string& stylesheet )
61 {
62   return WidgetApplicationAndroid::New( argc, argv, stylesheet );
63 }
64
65 } // namespace Factory
66
67 } // namespace Adaptor
68
69 } // namespace Internal
70
71 } // namespace Dali