Merge "Added nested TableView KeyboardFocus support" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-label-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_LABEL_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 // INTERNAL INCLUDES
22 #include <dali-toolkit/public-api/controls/control-impl.h>
23 #include <dali-toolkit/public-api/controls/text-controls/text-label.h>
24 #include <dali-toolkit/internal/text/text-control-interface.h>
25 #include <dali-toolkit/internal/text/text-controller.h>
26 #include <dali-toolkit/internal/text/text-scroller-interface.h>
27 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
28 #include <dali-toolkit/internal/text/text-scroller.h>
29
30 namespace Dali
31 {
32
33 namespace Toolkit
34 {
35
36 namespace Internal
37 {
38
39 /**
40  * @brief A control which renders a short text string.
41  */
42 class TextLabel : public Control, public Text::ControlInterface, public Text::ScrollerInterface
43 {
44 public:
45
46   /**
47    * @copydoc Dali::Toollkit::TextLabel::New()
48    */
49   static Toolkit::TextLabel New();
50
51   // Properties
52
53   /**
54    * @brief Called when a property of an object of this type is set.
55    *
56    * @param[in] object The object whose property is set.
57    * @param[in] index The property index.
58    * @param[in] value The new property value.
59    */
60   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
61
62   /**
63    * @brief Called to retrieve a property of an object of this type.
64    *
65    * @param[in] object The object whose property is to be retrieved.
66    * @param[in] index The property index.
67    * @return The current value of the property.
68    */
69   static Property::Value GetProperty( BaseObject* object, Property::Index index );
70
71 private: // From Control
72
73   /**
74    * @copydoc Control::OnInitialize()
75    */
76   virtual void OnInitialize();
77
78   /**
79    * @copydoc Control::OnStyleChange()
80    */
81   virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change );
82
83   /**
84    * @copydoc Control::OnRelayout()
85    */
86   virtual void OnRelayout( const Vector2& size, RelayoutContainer& container );
87
88   /**
89    * @copydoc Control::GetNaturalSize()
90    */
91   virtual Vector3 GetNaturalSize();
92
93   /**
94    * @copydoc Control::GetHeightForWidth()
95    */
96   virtual float GetHeightForWidth( float width );
97
98 // From ControlInterface
99
100   /**
101    * @copydoc Text::ControlInterface::RequestTextRelayout()
102    */
103   virtual void RequestTextRelayout();
104
105 private: // from TextScroller
106
107   /**
108    * @copydoc Text::ScrollerInterface::ScrollingFinished()
109    */
110   virtual void ScrollingFinished();
111
112 private: // Implementation
113
114   /**
115    * Construct a new TextLabel.
116    */
117   TextLabel();
118
119   /**
120    * A reference counted object may only be deleted by calling Unreference()
121    */
122   virtual ~TextLabel();
123
124 private:
125
126   // Undefined copy constructor and assignment operators
127   TextLabel(const TextLabel&);
128   TextLabel& operator=(const TextLabel& rhs);
129
130   // Connection needed to re-render text, when a Text Label returns to the stage
131   void OnStageConnect( Dali::Actor actor );
132
133   /**
134    * @brief Render view, create and attach actor(s) to this Text Label
135    */
136   void RenderText();
137
138   /**
139    * @brief Set up Autoscrolling
140    */
141   void SetUpAutoScrolling();
142
143 private: // Data
144
145   Text::ControllerPtr mController;
146   Text::RendererPtr mRenderer;
147   Text::TextScrollerPtr mTextScroller;
148   Actor mRenderableActor;
149   int mRenderingBackend;
150   bool mHasBeenStaged:1;
151 };
152
153 } // namespace Internal
154
155 // Helpers for public-api forwarding methods
156
157 inline Toolkit::Internal::TextLabel& GetImpl( Toolkit::TextLabel& textLabel )
158 {
159   DALI_ASSERT_ALWAYS(textLabel);
160
161   Dali::RefObject& handle = textLabel.GetImplementation();
162
163   return static_cast<Toolkit::Internal::TextLabel&>(handle);
164 }
165
166 inline const Toolkit::Internal::TextLabel& GetImpl( const Toolkit::TextLabel& textLabel )
167 {
168   DALI_ASSERT_ALWAYS(textLabel);
169
170   const Dali::RefObject& handle = textLabel.GetImplementation();
171
172   return static_cast<const Toolkit::Internal::TextLabel&>(handle);
173 }
174
175 } // namespace Toolkit
176
177 } // namespace Dali
178
179 #endif // DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H