bf5bd78e7654b711cf0682f4770edec3d781a898
[platform/core/uifw/dali-adaptor.git] / dali / internal / clipboard / generic / clipboard-impl-generic.cpp
1 /*
2  * Copyright (c) 2023 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/devel-api/common/singleton-service.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28 namespace Adaptor
29 {
30 struct Clipboard::Impl
31 {
32   Dali::Clipboard::DataSentSignalType     mDataSentSignal;
33   Dali::Clipboard::DataReceivedSignalType mDataReceivedSignal;
34 };
35
36 Clipboard::Clipboard(Impl* impl)
37 : mImpl(impl)
38 {
39 }
40
41 Clipboard::~Clipboard()
42 {
43 }
44
45 Dali::Clipboard Clipboard::Get()
46 {
47   Dali::Clipboard clipboard;
48
49   Dali::SingletonService service(SingletonService::Get());
50   if(service)
51   {
52     // Check whether the singleton is already created
53     Dali::BaseHandle handle = service.GetSingleton(typeid(Dali::Clipboard));
54     if(handle)
55     {
56       // If so, downcast the handle
57       clipboard = Dali::Clipboard(dynamic_cast<Clipboard*>(handle.GetObjectPtr()));
58     }
59     else
60     {
61       Clipboard::Impl* impl(new Clipboard::Impl());
62       clipboard = Dali::Clipboard(new Clipboard(impl));
63       service.Register(typeid(Dali::Clipboard), clipboard);
64     }
65   }
66
67   return clipboard;
68 }
69
70 bool Clipboard::IsAvailable()
71 {
72   Dali::SingletonService service(SingletonService::Get());
73   if(service)
74   {
75     Dali::BaseHandle handle = service.GetSingleton(typeid(Dali::Clipboard));
76     if(handle)
77     {
78       return true;
79     }
80   }
81   return false;
82 }
83
84 Dali::Clipboard::DataSentSignalType& Clipboard::DataSentSignal()
85 {
86   return mImpl->mDataSentSignal;
87 }
88
89 Dali::Clipboard::DataReceivedSignalType& Clipboard::DataReceivedSignal()
90 {
91   return mImpl->mDataReceivedSignal;
92 }
93
94 bool Clipboard::SetData(const Dali::Clipboard::ClipData& clipData)
95 {
96   return true;
97 }
98
99 uint32_t Clipboard::GetData(const std::string &mimeType)
100 {
101   return 0u;
102 }
103
104 size_t Clipboard::NumberOfItems()
105 {
106   return 0u;
107 }
108
109 void Clipboard::ShowClipboard()
110 {
111 }
112
113 void Clipboard::HideClipboard(bool skipFirstHide)
114 {
115 }
116
117 bool Clipboard::IsVisible() const
118 {
119   return false;
120 }
121
122 bool Clipboard::OnReceiveData()
123 {
124   return false;
125 }
126
127 } // namespace Adaptor
128
129 } // namespace Internal
130
131 } // namespace Dali