Added some LayoutEngine skeleton code
[platform/core/uifw/dali-toolkit.git] / base / 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
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 private: // Implementation
90
91   /**
92    * Helper for SetProperty.
93    * @param[in] text The new "text" property value.
94    */
95   void SetText( const std::string& text );
96
97   /**
98    * Helper for SetProperty.
99    * @param[in] multiLine The new "multi-line" property value.
100    */
101   void SetMultiLine( bool multiLine );
102
103   /**
104    * Construct a new TextLabel.
105    */
106   TextLabel();
107
108   /**
109    * A reference counted object may only be deleted by calling Unreference()
110    */
111   virtual ~TextLabel();
112
113 private:
114
115   // Undefined copy constructor and assignment operators
116   TextLabel(const TextLabel&);
117   TextLabel& operator=(const TextLabel& rhs);
118
119 private: // Data
120
121   Text::ControllerPtr mController;
122   Text::RendererPtr mRenderer;
123 };
124
125 } // namespace Internal
126
127 // Helpers for public-api forwarding methods
128
129 inline Toolkit::Internal::TextLabel& GetImpl( Toolkit::TextLabel& textLabel )
130 {
131   DALI_ASSERT_ALWAYS(textLabel);
132
133   Dali::RefObject& handle = textLabel.GetImplementation();
134
135   return static_cast<Toolkit::Internal::TextLabel&>(handle);
136 }
137
138 inline const Toolkit::Internal::TextLabel& GetImpl( const Toolkit::TextLabel& textLabel )
139 {
140   DALI_ASSERT_ALWAYS(textLabel);
141
142   const Dali::RefObject& handle = textLabel.GetImplementation();
143
144   return static_cast<const Toolkit::Internal::TextLabel&>(handle);
145 }
146
147 } // namespace Toolkit
148
149 } // namespace Dali
150
151 #endif // __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__