[4.0] PixelBuffer::Rotate() amendments.
[platform/core/uifw/dali-adaptor.git] / adaptors / 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 "widget-application-impl.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 WidgetApplication::New(
32   int* argc,
33   char **argv[],
34   const std::string& stylesheet)
35 {
36   WidgetApplicationPtr widgetApplication( new WidgetApplication (argc, argv, stylesheet ) );
37   return widgetApplication;
38 }
39
40 WidgetApplication::WidgetApplication( int* argc, char** argv[], const std::string& stylesheet )
41 :Application(argc, argv, stylesheet, Dali::WidgetApplication::OPAQUE, PositionSize(), Framework::NORMAL)
42 {
43   DALI_LOG_ERROR("WidgetApplication is not implemented in UBUNTU profile.\n");
44 }
45
46 WidgetApplication::~WidgetApplication()
47 {
48 }
49
50
51 void WidgetApplication::RegisterWidgetCreatingFunction( const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction )
52 {
53 }
54
55 } // namespace Adaptor
56
57 } // namespace Internal
58
59 } // namespace Dali