Move Clipboard to TextClipboard
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / text-clipboard-event-notifier.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/devel-api/adaptor-framework/text-clipboard-event-notifier.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/text-clipboard/common/text-clipboard-event-notifier-impl.h>
23
24 namespace Dali
25 {
26 TextClipboardEventNotifier::TextClipboardEventNotifier()
27 {
28 }
29
30 TextClipboardEventNotifier TextClipboardEventNotifier::Get()
31 {
32   return Internal::Adaptor::TextClipboardEventNotifier::Get();
33 }
34
35 TextClipboardEventNotifier::~TextClipboardEventNotifier()
36 {
37 }
38
39 const std::string& TextClipboardEventNotifier::GetContent() const
40 {
41   return Internal::Adaptor::TextClipboardEventNotifier::GetImplementation(*this).GetContent();
42 }
43
44 void TextClipboardEventNotifier::SetContent(const std::string& content)
45 {
46   Internal::Adaptor::TextClipboardEventNotifier::GetImplementation(*this).SetContent(content);
47 }
48
49 void TextClipboardEventNotifier::ClearContent()
50 {
51   Internal::Adaptor::TextClipboardEventNotifier::GetImplementation(*this).ClearContent();
52 }
53
54 void TextClipboardEventNotifier::EmitContentSelectedSignal()
55 {
56   Internal::Adaptor::TextClipboardEventNotifier::GetImplementation(*this).EmitContentSelectedSignal();
57 }
58
59 TextClipboardEventNotifier::TextClipboardEventSignalType& TextClipboardEventNotifier::ContentSelectedSignal()
60 {
61   return Internal::Adaptor::TextClipboardEventNotifier::GetImplementation(*this).ContentSelectedSignal();
62 }
63
64 TextClipboardEventNotifier::TextClipboardEventNotifier(Internal::Adaptor::TextClipboardEventNotifier* notifier)
65 : BaseHandle(notifier)
66 {
67 }
68
69 } // namespace Dali