Merge "Changes needed for https://review.tizen.org/gerrit/#/c/191202/" into devel...
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / ubuntu / widget-application-impl-ubuntu.cpp
1 /*
2  * Copyright (c) 2017 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/ubuntu/widget-application-impl-ubuntu.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 WidgetApplicationUbuntu::New(
32   int* argc,
33   char **argv[],
34   const std::string& stylesheet)
35 {
36   return new WidgetApplicationUbuntu(argc, argv, stylesheet );
37 }
38
39 WidgetApplicationUbuntu::WidgetApplicationUbuntu( int* argc, char** argv[], const std::string& stylesheet )
40 : WidgetApplication(argc, argv, stylesheet)
41 {
42   DALI_LOG_ERROR("WidgetApplication is not implemented in UBUNTU profile.\n");
43 }
44
45 WidgetApplicationUbuntu::~WidgetApplicationUbuntu()
46 {
47 }
48
49
50 void WidgetApplicationUbuntu::RegisterWidgetCreatingFunction( const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction )
51 {
52 }
53
54 // factory function, must be implemented
55 namespace WidgetApplicationFactory
56 {
57 /**
58  * Create a new widget application
59  * @param[in]  argc         A pointer to the number of arguments
60  * @param[in]  argv         A pointer to the argument list
61  * @param[in]  stylesheet   The path to user defined theme file
62  */
63 WidgetApplicationPtr Create( int* argc, char **argv[], const std::string& stylesheet )
64 {
65   return WidgetApplicationUbuntu::New( argc, argv, stylesheet );
66 }
67
68 } // namespace Factory
69
70 } // namespace Adaptor
71
72 } // namespace Internal
73
74 } // namespace Dali