566027ec7ae2cb7b005c7c537b57bb1dbd5a9a7e
[platform/core/uifw/dali-adaptor.git] / dali / internal / input / common / input-method-context-impl.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 #include <dali/internal/input/common/input-method-context-impl.h>
19 #include <dali/internal/input/common/input-method-context-factory.h>
20 #include <dali/internal/system/common/locale-utils.h>
21 #include <dali/internal/system/common/singleton-service-impl.h>
22
23 namespace Dali
24 {
25 namespace Internal
26 {
27
28 namespace Adaptor
29 {
30
31 InputMethodContextPtr InputMethodContext::New( Dali::Actor actor )
32 {
33   return Dali::Internal::Adaptor::InputMethodContextFactory::CreateInputMethodContext( actor );
34 }
35
36 const std::string& InputMethodContext::GetSurroundingText() const
37 {
38   static std::string str("");
39   return str;
40 }
41
42 InputMethodContext::InputMethodContext()
43 : mBackupOperations( Operation::MAX_COUNT )
44 {
45 }
46
47 void InputMethodContext::ApplyBackupOperations()
48 {
49   // Items in mBackupOperations will be changed while the iteration
50   OperationList copiedList = mBackupOperations;
51
52   for( auto& operation : copiedList )
53   {
54     if( operation )
55     {
56       operation();
57     }
58   }
59 }
60
61 }
62 }
63 }