Added interface for queuing input events in TextController
[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) 2015 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/public-api/text/text-controller.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 namespace Internal
33 {
34
35 /**
36  * @brief A control which renders a short text string.
37  */
38 class TextLabel : public Control, public Text::ControlInterface
39 {
40 public:
41
42   // Properties
43   enum
44   {
45     TEXTLABEL_PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1,
46     TEXTLABEL_PROPERTY_END_INDEX = TEXTLABEL_PROPERTY_START_INDEX + 1000 ///< Reserving 1000 property indices
47   };
48
49   /**
50    * @copydoc Dali::Toollkit::TextLabel::New()
51    */
52   static Toolkit::TextLabel New();
53
54   /**
55    * @copydoc Dali::Toollkit::TextLabel::SetRenderer()
56    */
57   void SetRenderer( Text::RendererPtr renderer );
58
59   // Properties
60
61   /**
62    * Called when a property of an object of this type is set.
63    * @param[in] object The object whose property is set.
64    * @param[in] index The property index.
65    * @param[in] value The new property value.
66    */
67   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
68
69   /**
70    * Called to retrieve a property of an object of this type.
71    * @param[in] object The object whose property is to be retrieved.
72    * @param[in] index The property index.
73    * @return The current value of the property.
74    */
75   static Property::Value GetProperty( BaseObject* object, Property::Index index );
76
77 private: // From Control
78
79   /**
80    * @copydoc Control::OnInitialize()
81    */
82   virtual void OnInitialize();
83
84   /**
85    * @copydoc Control::OnInitialize()
86    */
87   virtual void OnRelayout( const Vector2& size, ActorSizeContainer& container );
88
89   /**
90    * @copydoc Control::GetNaturalSize()
91    */
92   virtual Vector3 GetNaturalSize();
93
94   /**
95    * @copydoc Control::GetHeightForWidth()
96    */
97   virtual float GetHeightForWidth( float width );
98
99   /**
100    * @copydoc Text::ControlInterface::RequestTextRelayout()
101    */
102   virtual void RequestTextRelayout();
103
104 private: // Implementation
105
106   /**
107    * Helper for SetProperty.
108    * @param[in] text The new "text" property value.
109    */
110   void SetText( const std::string& text );
111
112   /**
113    * Helper for SetProperty.
114    * @param[in] multiLine The new "multi-line" property value.
115    */
116   void SetMultiLine( bool multiLine );
117
118   /**
119    * Construct a new TextLabel.
120    */
121   TextLabel();
122
123   /**
124    * A reference counted object may only be deleted by calling Unreference()
125    */
126   virtual ~TextLabel();
127
128 private:
129
130   // Undefined copy constructor and assignment operators
131   TextLabel(const TextLabel&);
132   TextLabel& operator=(const TextLabel& rhs);
133
134 private: // Data
135
136   Text::ControllerPtr mController;
137   Text::RendererPtr mRenderer;
138 };
139
140 } // namespace Internal
141
142 // Helpers for public-api forwarding methods
143
144 inline Toolkit::Internal::TextLabel& GetImpl( Toolkit::TextLabel& textLabel )
145 {
146   DALI_ASSERT_ALWAYS(textLabel);
147
148   Dali::RefObject& handle = textLabel.GetImplementation();
149
150   return static_cast<Toolkit::Internal::TextLabel&>(handle);
151 }
152
153 inline const Toolkit::Internal::TextLabel& GetImpl( const Toolkit::TextLabel& textLabel )
154 {
155   DALI_ASSERT_ALWAYS(textLabel);
156
157   const Dali::RefObject& handle = textLabel.GetImplementation();
158
159   return static_cast<const Toolkit::Internal::TextLabel&>(handle);
160 }
161
162 } // namespace Toolkit
163
164 } // namespace Dali
165
166 #endif // __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__