Use existing callback ID for recurring callbacks
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / tizen-wayland / atspi / bridge-editable-text.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/accessibility/tizen-wayland/atspi/bridge-editable-text.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/clipboard/common/clipboard-impl.h>
23
24 using namespace Dali::Accessibility;
25
26 void BridgeEditableText::RegisterInterfaces()
27 {
28   DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceEditableText};
29   AddFunctionToInterface( desc, "CopyText", &BridgeEditableText::CopyText );
30   AddFunctionToInterface( desc, "CutText", &BridgeEditableText::CutText );
31   AddFunctionToInterface( desc, "PasteText", &BridgeEditableText::PasteText );
32   dbusServer.addInterface( "/", desc, true );
33 }
34
35 EditableText* BridgeEditableText::FindSelf() const
36 {
37   auto s = BridgeBase::FindSelf();
38   assert( s );
39   auto s2 = dynamic_cast< EditableText* >( s );
40   if( !s2 )
41     throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Text interface"};
42   return s2;
43 }
44
45 DBus::ValueOrError< bool > BridgeEditableText::CopyText( int32_t startPos, int32_t endPos )
46 {
47   return FindSelf()->CopyText( startPos, endPos );
48 }
49
50 DBus::ValueOrError< bool > BridgeEditableText::CutText( int32_t startPos, int32_t endPos )
51 {
52   return FindSelf()->CutText( startPos, endPos );
53 }
54
55 DBus::ValueOrError< bool > BridgeEditableText::PasteText( int32_t pos )
56 {
57   // auto imfManager = Dali::Internal::Adaptor::ImfManager::Get();
58   // imfManager.SetCursorPosition( pos );
59   // auto clipboard = Dali::Internal::Adaptor::Clipboard::Get();
60   // clipboard.RequestItem();
61   // return true;
62   return false;
63 }