[dali_1.4.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / text-backend-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_BACKEND_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_BACKEND_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/base-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/rendering/text-backend.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Text
34 {
35
36 namespace Internal
37 {
38
39 /**
40  * Implementation of the text rendering backend
41  */
42 class Backend : public BaseObject
43 {
44 public:
45
46   /**
47    * Constructor
48    */
49   Backend();
50
51   /**
52    * Destructor
53    */
54   ~Backend();
55
56   /**
57    * @copydoc Dali::Toolkit::Text::Backend::Get()
58    */
59   static Dali::Toolkit::Text::Backend Get();
60
61   /**
62    * @copydoc Dali::Toolkit::Text::Backend::NewRenderer()
63    */
64   RendererPtr NewRenderer( unsigned int renderingType );
65
66 private:
67
68   // Undefined copy constructor.
69   Backend( const Backend& );
70
71   // Undefined assignment constructor.
72   Backend& operator=( Backend& );
73
74 private:
75
76   struct Impl;
77   Impl* mImpl;
78
79 }; // class Backend
80
81 } // namespace Internal
82
83 inline static Internal::Backend& GetImplementation(Backend& backend)
84 {
85   DALI_ASSERT_ALWAYS( backend && "backend handle is empty" );
86   BaseObject& handle = backend.GetBaseObject();
87   return static_cast<Internal::Backend&>(handle);
88 }
89
90 inline static const Internal::Backend& GetImplementation(const Backend& backend)
91 {
92   DALI_ASSERT_ALWAYS( backend && "backend handle is empty" );
93   const BaseObject& handle = backend.GetBaseObject();
94   return static_cast<const Internal::Backend&>(handle);
95 }
96
97 } // namespace Text
98
99 } // namespace Toolkit
100
101 } // namespace Dali
102
103 #endif // DALI_TOOLKIT_INTERNAL_TEXT_BACKEND_H