Text improvement
[platform/core/uifw/dali-adaptor.git] / dali / internal / text / text-abstraction / text-renderer-impl.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/text/text-abstraction/text-renderer-impl.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/system/common/singleton-service-impl.h>
23 #include <dali/internal/text/text-abstraction/cairo-renderer.h>
24
25 namespace Dali
26 {
27
28 namespace TextAbstraction
29 {
30
31 namespace Internal
32 {
33
34 TextRenderer::TextRenderer()
35 {
36 }
37
38 TextRenderer::~TextRenderer()
39 {
40 }
41
42 TextAbstraction::TextRenderer TextRenderer::Get()
43 {
44   TextAbstraction::TextRenderer shapingHandle;
45
46   SingletonService service(SingletonService::Get());
47   if (service)
48   {
49     // Check whether the singleton is already created
50     Dali::BaseHandle handle = service.GetSingleton(typeid(TextAbstraction::TextRenderer));
51     if (handle)
52     {
53       // If so, downcast the handle
54       TextRenderer* impl = dynamic_cast< Internal::TextRenderer* >(handle.GetObjectPtr());
55       shapingHandle = TextAbstraction::TextRenderer(impl);
56     }
57     else // create and register the object
58     {
59       shapingHandle = TextAbstraction::TextRenderer(new TextRenderer);
60       service.Register(typeid(shapingHandle), shapingHandle);
61     }
62   }
63
64   return shapingHandle;
65 }
66
67 Devel::PixelBuffer TextRenderer::Render(const TextAbstraction::TextRenderer::Parameters& parameters)
68 {
69   return RenderTextCairo(parameters);
70 }
71
72 } // namespace Internal
73
74 } // namespace TextAbstraction
75
76 } // namespace Dali