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