Klockwork fixes: Distance field iteration
[platform/core/uifw/dali-core.git] / dali / internal / event / text / resource / font-lookup-interface.h
1 #ifndef __DALI_INTERNAL_FONT_LOOKUP_INTERFACE_H__
2 #define __DALI_INTERNAL_FONT_LOOKUP_INTERFACE_H__
3
4 /*
5  * Copyright (c) 2014 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 // INTERNAL INCLUDES
22 #include <dali/internal/event/text/resource/font-id.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 /**
31  * Abstract interface for requesting font information given a unique font id.
32  *
33  */
34 class FontLookupInterface
35 {
36
37 public:
38
39   /**
40    * Given a font id, get the font information.
41    * @param[in] fontId font id
42    * @param[out] family font family
43    * @param[out] style font style
44    * @param[out] maxGlyphWidth maximum glyph width
45    * @param[out] maxGlyphHeight maximum glyph height
46    */
47   virtual void GetFontInformation( FontId fontId,
48                                    std::string& family,
49                                    std::string& style,
50                                    float& maxGlyphWidth,
51                                    float& maxGlyphHeight ) const = 0;
52
53
54 protected:
55
56   /**
57    * Constructor
58    */
59   FontLookupInterface()
60   {
61   }
62
63   /**
64    * Virtual Destructor.
65    */
66   virtual ~FontLookupInterface()
67   {
68   }
69
70   // Undefined copy constructor.
71   FontLookupInterface( const FontLookupInterface& );
72
73   // Undefined assignment operator.
74   FontLookupInterface& operator=( const FontLookupInterface& );
75
76 };
77
78
79 } // namespace Internal
80
81 } // namespace Dali
82
83 #endif // __DALI_INTERNAL_FONT_LOOKUP_INTERFACE_H__