fe5ab5e35a4ab4b8bdc7fedd78d1c17cda06ca33
[platform/core/uifw/dali-adaptor.git] / dali / internal / clipboard / generic / clipboard-impl-generic.cpp
1 /*
2  * Copyright (c) 2019 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/clipboard/common/clipboard-impl.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/system/common/singleton-service-impl.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 namespace Adaptor
31 {
32
33 struct Clipboard::Impl
34 {
35 };
36
37 Clipboard::Clipboard( Impl* impl )
38 : mImpl( impl )
39 {
40 }
41
42 Clipboard::~Clipboard()
43 {
44 }
45
46 Dali::Clipboard Clipboard::Get()
47 {
48   Dali::Clipboard clipboard;
49
50   Dali::SingletonService service( SingletonService::Get() );
51   if ( service )
52   {
53     // Check whether the singleton is already created
54     Dali::BaseHandle handle = service.GetSingleton( typeid( Dali::Clipboard ) );
55     if(handle)
56     {
57       // If so, downcast the handle
58       clipboard = Dali::Clipboard( dynamic_cast< Clipboard* >( handle.GetObjectPtr() ) );
59     }
60     else
61     {
62       Clipboard::Impl* impl( new Clipboard::Impl() );
63       clipboard = Dali::Clipboard( new Clipboard(impl) );
64       service.Register( typeid(Dali::Clipboard), clipboard );
65     }
66   }
67
68   return clipboard;
69 }
70
71 bool Clipboard::SetItem(const std::string &itemData )
72 {
73   return true;
74 }
75
76 void Clipboard::RequestItem()
77 {
78 }
79
80 unsigned int Clipboard::NumberOfItems()
81 {
82   return 0u;
83 }
84
85 void Clipboard::ShowClipboard()
86 {
87 }
88
89 void Clipboard::HideClipboard(bool skipFirstHide)
90 {
91 }
92
93 bool Clipboard::IsVisible() const
94 {
95   return false;
96 }
97
98 char* Clipboard::ExcuteBuffered( bool type, void *event )
99 {
100   return NULL;
101 }
102
103 } // namespace Adaptor
104
105 } // namespace Internal
106
107 } // namespace Dali