Merge "[AT-SPI] Add API for blocking automatic Bridge initialization" into devel...
[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) 2021 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    */
49   static WidgetApplicationPtr New(int* argc, char** argv[], const std::string& stylesheet);
50
51 public:
52   /**
53    * @copydoc Dali::WidgetApplication::RegisterWidgetCreator()
54    */
55   void RegisterWidgetCreatingFunction(const std::string& widgetName, Dali::WidgetApplication::CreateWidgetFunction createFunction) override;
56
57 protected:
58   /**
59    * Private Constructor
60    * @param[in]  argc         A pointer to the number of arguments
61    * @param[in]  argv         A pointer to the argument list
62    * @param[in]  stylesheet   The path to user defined theme file
63    */
64   WidgetApplicationWin(int* argc, char** argv[], const std::string& stylesheet);
65
66   /**
67    * Destructor
68    */
69   virtual ~WidgetApplicationWin();
70
71   WidgetApplicationWin(const Application&) = delete;
72   WidgetApplicationWin& operator=(Application&) = delete;
73 };
74
75 } // namespace Adaptor
76
77 } // namespace Internal
78
79 } // namespace Dali
80
81 #endif // DALI_INTERNAL_WIDGET_APPLICATION_IMPL_UBUNTU_H