Add AllowTextPrediction/IsTextPredictionAllowed api
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / physical-keyboard.cpp
1 /*
2  * Copyright (c) 2015 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/physical-keyboard.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/input/common/physical-keyboard-impl.h>
23
24 namespace Dali
25 {
26
27 PhysicalKeyboard::PhysicalKeyboard()
28 {
29 }
30
31 PhysicalKeyboard::~PhysicalKeyboard()
32 {
33 }
34
35 PhysicalKeyboard PhysicalKeyboard::Get()
36 {
37   // Get the physical keyboard handle
38   PhysicalKeyboard handle = Internal::Adaptor::PhysicalKeyboard::Get();
39
40   // If it's not been created then create one
41   if ( !handle )
42   {
43     handle = Internal::Adaptor::PhysicalKeyboard::New();
44   }
45
46   return handle;
47 }
48
49 bool PhysicalKeyboard::IsAttached() const
50 {
51   return GetImplementation( *this ).IsAttached();
52 }
53
54 PhysicalKeyboard::PhysicalKeyboardSignalType& PhysicalKeyboard::StatusChangedSignal()
55 {
56   return GetImplementation( *this ).StatusChangedSignal();
57 }
58
59 PhysicalKeyboard::PhysicalKeyboard( Internal::Adaptor::PhysicalKeyboard *impl )
60 : BaseHandle(impl)
61 {
62 }
63
64 } // namespace Dali