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.h
1 #ifndef DALI_INTERNAL_WIDGET_APPLICATION_IMPL_UBUNTU_H
2 #define DALI_INTERNAL_WIDGET_APPLICATION_IMPL_UBUNTU_H
3
4 /*
5  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/adaptor/common/application-impl.h>
23 #include <dali/internal/system/common//widget-application-impl.h>
24 #include <dali/public-api/adaptor-framework/widget-application.h>
25
26 namespace Dali
27 {
28 class Widget;
29
30 namespace Internal
31 {
32
33 namespace Adaptor
34 {
35
36 /**
37  * Implementation of the WidgetApplicationUbuntu class.
38  */
39 class WidgetApplicationUbuntu : public WidgetApplication
40 {
41 public:
42
43   typedef std::pair<const std::string, Dali::WidgetApplication::CreateWidgetFunction >  CreateWidgetFunctionPair;
44   typedef std::vector< CreateWidgetFunctionPair >   CreateWidgetFunctionContainer;
45
46   /**
47    * Create a new widget application
48    * @param[in]  argc         A pointer to the number of arguments
49    * @param[in]  argv         A pointer to the argument list
50    * @param[in]  stylesheet   The path to user defined theme file
51    */
52   static WidgetApplicationPtr New( int* argc, char **argv[], const std::string& stylesheet );
53
54 public:
55
56   /**
57    * @copydoc Dali::WidgetApplication::RegisterWidgetCreator()
58    */
59   void RegisterWidgetCreatingFunction( const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction ) override;
60
61 protected:
62
63   /**
64    * Private Constructor
65    * @param[in]  argc         A pointer to the number of arguments
66    * @param[in]  argv         A pointer to the argument list
67    * @param[in]  stylesheet   The path to user defined theme file
68    */
69   WidgetApplicationUbuntu( int* argc, char **argv[], const std::string& stylesheet );
70
71   /**
72    * Destructor
73    */
74   virtual ~WidgetApplicationUbuntu();
75
76   WidgetApplicationUbuntu(const Application&) = delete;
77   WidgetApplicationUbuntu& operator=(Application&) = delete;
78 };
79
80 } // namespace Adaptor
81
82 } // namespace Internal
83
84 } // namespace Dali
85
86 #endif // DALI_INTERNAL_WIDGET_APPLICATION_IMPL_UBUNTU_H