[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / windows / accessibility-adaptor-impl-win.cpp
1 /*
2  * Copyright (c) 2018 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 <dali/internal/accessibility/common/accessibility-adaptor-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/system/common/singleton-service-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 namespace Adaptor
34 {
35
36 Dali::AccessibilityAdaptor AccessibilityAdaptor::Get()
37 {
38   Dali::AccessibilityAdaptor adaptor;
39
40   Dali::SingletonService service( SingletonService::Get() );
41   if ( service )
42   {
43     // Check whether the singleton is already created
44     Dali::BaseHandle handle = service.GetSingleton( typeid( Dali::AccessibilityAdaptor ) );
45     if(handle)
46     {
47       // If so, downcast the handle
48       adaptor = Dali::AccessibilityAdaptor( dynamic_cast< AccessibilityAdaptor* >( handle.GetObjectPtr() ) );
49     }
50     else
51     {
52       adaptor = Dali::AccessibilityAdaptor( new AccessibilityAdaptor() );
53       service.Register( typeid( adaptor ), adaptor );
54     }
55   }
56
57   return adaptor;
58 }
59
60 void AccessibilityAdaptor::OnDestroy()
61 {
62   // Nothing to do here
63 }
64
65 } // namespace Adaptor
66
67 } // namespace Internal
68
69 } // namespace Dali