2 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/internal/system/common/widget-application-impl.h>
20 #include <dali/integration-api/debug.h>
31 // factory function, must be implemented
32 namespace WidgetApplicationFactory
35 * Create a new widget application
36 * @param[in] argc A pointer to the number of arguments
37 * @param[in] argv A pointer to the argument list
38 * @param[in] stylesheet The path to user defined theme file
40 WidgetApplicationPtr Create( int* argc, char **argv[], const std::string& stylesheet );
42 } // namespace Factory
44 WidgetApplicationPtr WidgetApplication::New(
47 const std::string& stylesheet)
49 //WidgetApplicationPtr //widgetApplication( new WidgetApplication (argc, argv, stylesheet ) );
50 return WidgetApplicationFactory::Create( argc, argv, stylesheet );
53 WidgetApplication::WidgetApplication( int* argc, char** argv[], const std::string& stylesheet )
54 : Application(argc, argv, stylesheet, Dali::WidgetApplication::OPAQUE, PositionSize(), Framework::NORMAL)
56 DALI_LOG_ERROR("WidgetApplication is not implemented in UBUNTU profile.\n");
59 WidgetApplication::~WidgetApplication()
63 void WidgetApplication::RegisterWidgetCreatingFunction( const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction )
67 } // namespace Adaptor
69 } // namespace Internal