License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / event / text / resource / glyph-load-observer.h
1 #ifndef __DALI_INTERNAL_GLYPH_LOAD_OBSERVER_H__
2 #define __DALI_INTERNAL_GLYPH_LOAD_OBSERVER_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/integration-api/resource-declarations.h> // for ResourceId
23 #include <dali/integration-api/glyph-set.h>   // for glyph set
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 /**
32  * Abstract observer class to inform the owner that some glyph have been loaded.
33  *
34  */
35 class GlyphLoadObserver
36 {
37
38 public:
39
40   /**
41    * Called when a glyphset has been loaded.
42    * The resoure id is the ticket id for the original request.
43    * @param[in] id resource id
44    * @param[in] glyphSet reference to the glyphset
45    * @param[in] complete if this is the last glyph set
46    */
47   virtual void GlyphsLoaded( Integration::ResourceId id, const Integration::GlyphSet& glyphSet, Integration::LoadStatus loadStatus  ) = 0;
48
49
50 protected:
51
52   /**
53    * Constructor
54    */
55   GlyphLoadObserver()
56   {
57
58   }
59
60   /**
61    * Destructor.
62    */
63   virtual ~GlyphLoadObserver()
64   {
65
66   }
67
68 private:
69
70   // Undefined copy constructor.
71   GlyphLoadObserver( const GlyphLoadObserver& );
72
73   // Undefined assignment operator.
74   GlyphLoadObserver& operator=( const GlyphLoadObserver& );
75
76 };
77
78
79 } // namespace Internal
80
81 } // namespace Dali
82
83 #endif // __DALI_INTERNAL_GLYPH_LOAD_OBSERVER_H__