[dali_2.0.8] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / macos / widget-application-impl-mac.h
1 #ifndef DALI_INTERNAL_WIDGET_APPLICATION_IMPL_WIN_H
2 #define DALI_INTERNAL_WIDGET_APPLICATION_IMPL_WIN_H
3
4 /*
5  * Copyright (c) 2018 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 WidgetApplicationCocoa class.
38  */
39 class WidgetApplicationCocoa : public WidgetApplication
40 {
41 public:
42
43   typedef std::pair<
44     const std::string,
45     Dali::WidgetApplication::CreateWidgetFunction
46   > CreateWidgetFunctionPair;
47
48   typedef std::vector< CreateWidgetFunctionPair > CreateWidgetFunctionContainer;
49
50   /**
51    * Create a new widget application
52    * @param[in]  argc         A pointer to the number of arguments
53    * @param[in]  argv         A pointer to the argument list
54    * @param[in]  stylesheet   The path to user defined theme file
55    */
56   static WidgetApplicationPtr New(
57     int* argc,
58     char **argv[],
59     const std::string& stylesheet
60   );
61
62 public:
63
64   /**
65    * @copydoc Dali::WidgetApplication::RegisterWidgetCreator()
66    */
67   void RegisterWidgetCreatingFunction(
68     const std::string& widgetName,
69     Dali::WidgetApplication::CreateWidgetFunction createFunction
70   ) override;
71
72 protected:
73
74   /**
75    * Private Constructor
76    * @param[in]  argc         A pointer to the number of arguments
77    * @param[in]  argv         A pointer to the argument list
78    * @param[in]  stylesheet   The path to user defined theme file
79    */
80   WidgetApplicationCocoa( int* argc, char **argv[], const std::string& stylesheet );
81
82   /**
83    * Destructor
84    */
85   virtual ~WidgetApplicationCocoa();
86
87   WidgetApplicationCocoa(const Application&) = delete;
88   WidgetApplicationCocoa& operator=(Application&) = delete;
89 };
90
91 } // namespace Adaptor
92
93 } // namespace Internal
94
95 } // namespace Dali
96
97 #endif // DALI_INTERNAL_WIDGET_APPLICATION_IMPL_UBUNTU_H