Merge "Fix resource package install issue." into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-model.h
1 #ifndef DALI_TOOLKIT_TEXT_MODEL_H
2 #define DALI_TOOLKIT_TEXT_MODEL_H
3
4 /*
5  * Copyright (c) 2017 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/ref-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/layouts/layout-alignment.h>
26 #include <dali-toolkit/internal/text/layouts/layout-wrap-mode.h>
27 #include <dali-toolkit/internal/text/logical-model-impl.h>
28 #include <dali-toolkit/internal/text/text-model-interface.h>
29 #include <dali-toolkit/internal/text/visual-model-impl.h>
30
31 namespace Dali
32 {
33
34 namespace Toolkit
35 {
36
37 namespace Text
38 {
39
40 // Forward declarations.
41 class Model;
42
43 typedef IntrusivePtr<Model> ModelPtr;
44
45 /**
46  * @brief Implementation class used to retrieve the text's model from the text-controller.
47  */
48 class Model : public RefObject, public ModelInterface
49 {
50
51 public: // Constructor.
52
53   /**
54    * @brief Create a new instance of a text Model.
55    *
56    * @return A pointer to a new text Model.
57    */
58   static ModelPtr New();
59
60 public:
61
62   /**
63    * @copydoc ModelInterface::GetControlSize()
64    */
65   virtual const Size& GetControlSize() const;
66
67   /**
68    * @copydoc ModelInterface::GetLayoutSize()
69    */
70   virtual const Size& GetLayoutSize() const;
71
72   /**
73    * @copydoc ModelInterface::GetScrollPosition()
74    */
75   virtual const Vector2& GetScrollPosition() const;
76
77   /**
78    * @copydoc ModelInterface::GetHorizontalAlignment()
79    */
80   virtual Layout::HorizontalAlignment GetHorizontalAlignment() const;
81
82   /**
83    * @copydoc ModelInterface::GetVerticalAlignment()
84    */
85   virtual Layout::VerticalAlignment GetVerticalAlignment() const;
86
87   /**
88    * @copydoc ModelInterface::IsTextElideEnabled()
89    */
90   virtual bool IsTextElideEnabled() const;
91
92   /**
93    * @copydoc ModelInterface::GetNumberOfLines()
94    */
95   virtual Length GetNumberOfLines() const;
96
97   /**
98    * @copydoc ModelInterface::GetLines()
99    */
100   virtual const LineRun* const GetLines() const;
101
102   /**
103    * @copydoc ModelInterface::GetNumberOfGlyphs()
104    */
105   virtual Length GetNumberOfGlyphs() const;
106
107   /**
108    * @copydoc ModelInterface::GetGlyphs()
109    */
110   virtual const GlyphInfo* const GetGlyphs() const;
111
112   /**
113    * @copydoc ModelInterface::GetLayout()
114    */
115   virtual const Vector2* const GetLayout() const;
116
117   /**
118    * @copydoc ModelInterface::GetColors()
119    */
120   virtual const Vector4* const GetColors() const;
121
122   /**
123    * @copydoc ModelInterface::GetColorIndices()
124    */
125   virtual const ColorIndex* const GetColorIndices() const;
126
127   /**
128    * @copydoc ModelInterface::GetDefaultColor()
129    */
130   virtual const Vector4& GetDefaultColor() const;
131
132 private: // Private contructors & copy operator.
133
134   /**
135    * @brief Private constructor.
136    */
137   Model();
138
139   // Undefined.
140   Model( const Model& handle );
141
142   // Undefined.
143   Model& operator=( const Model& handle );
144
145 protected:
146
147   /**
148    * @brief A reference counted object may only be deleted by calling Unreference().
149    */
150   virtual ~Model();
151
152 public:
153   LogicalModelPtr             mLogicalModel;        ///< Pointer to the logical model.
154   VisualModelPtr              mVisualModel;         ///< Pointer to the visual model.
155   /**
156    * 0,0 means that the top-left corner of the layout matches the top-left corner of the UI control.
157    * Typically this will have a negative value with scrolling occurs.
158    */
159   Vector2                     mScrollPosition;      ///< The text is offset by this position when scrolling.
160   Vector2                     mScrollPositionLast;  ///< The last offset value of mScrollPosition
161   Layout::HorizontalAlignment mHorizontalAlignment; ///< The layout's horizontal alignment.
162   Layout::VerticalAlignment   mVerticalAlignment;   ///< The layout's vertical alignment.
163   Layout::LineWrap::Mode      mLineWrapMode;        ///< The text wrap mode
164   float                       mAlignmentOffset;     ///< The alignment offset.
165   bool                        mElideEnabled:1;      ///< Whether the text's elide is enabled.
166 };
167
168 } // namespace Text
169
170 } // namespace Toolkit
171
172 } // namespace Dali
173
174 #endif // DALI_TOOLKIT_TEXT_MODEL_H