[dali_1.0.40] Merge branch 'tizen'
[platform/core/uifw/dali-demo.git] / examples / text-label / text-label-example.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 /**
19  * @file text-label-example.cpp
20  * @brief Basic usage of TextLabel control
21  */
22
23 // EXTERNAL INCLUDES
24 #include <dali-toolkit/dali-toolkit.h>
25 #include <dali/public-api/text-abstraction/text-abstraction.h>
26
27 // INTERNAL INCLUDES
28 #include "shared/multi-language-strings.h"
29 #include "shared/view.h"
30
31 using namespace Dali;
32 using namespace Dali::Toolkit;
33 using namespace MultiLanguageStrings;
34
35 namespace
36 {
37   const char* const BACKGROUND_IMAGE = DALI_IMAGE_DIR "button-up.9.png";
38
39   const unsigned int KEY_ZERO = 10;
40   const unsigned int KEY_ONE = 11;
41   const unsigned int KEY_F = 41;
42   const unsigned int KEY_H = 43;
43   const unsigned int KEY_V = 55;
44   const unsigned int KEY_M = 58;
45   const unsigned int KEY_L = 46;
46   const unsigned int KEY_S = 39;
47   const unsigned int KEY_PLUS = 21;
48   const unsigned int KEY_MINUS = 20;
49
50   const char* H_ALIGNMENT_STRING_TABLE[] =
51   {
52     "BEGIN",
53     "CENTER",
54     "END"
55   };
56
57   const unsigned int H_ALIGNMENT_STRING_COUNT = sizeof( H_ALIGNMENT_STRING_TABLE ) / sizeof( H_ALIGNMENT_STRING_TABLE[0u] );
58
59   const char* V_ALIGNMENT_STRING_TABLE[] =
60   {
61     "TOP",
62     "CENTER",
63     "BOTTOM"
64   };
65
66   const unsigned int V_ALIGNMENT_STRING_COUNT = sizeof( V_ALIGNMENT_STRING_TABLE ) / sizeof( V_ALIGNMENT_STRING_TABLE[0u] );
67
68   int ConvertToEven(int value)
69   {
70     return (value % 2 == 0) ? value : (value + 1);
71   }
72 }
73
74 /**
75  * @brief The main class of the demo.
76  */
77 class TextLabelExample : public ConnectionTracker
78 {
79 public:
80
81   TextLabelExample( Application& application )
82   : mApplication( application ),
83     mLanguageId( 0u ),
84     mAlignment( 0u )
85   {
86     // Connect to the Application's Init signal
87     mApplication.InitSignal().Connect( this, &TextLabelExample::Create );
88   }
89
90   ~TextLabelExample()
91   {
92     // Nothing to do here.
93   }
94
95   /**
96    * One-time setup in response to Application InitSignal.
97    */
98   void Create( Application& application )
99   {
100     DemoHelper::RequestThemeChange();
101
102     Stage stage = Stage::GetCurrent();
103
104     stage.KeyEventSignal().Connect(this, &TextLabelExample::OnKeyEvent);
105     Vector2 stageSize = stage.GetSize();
106
107     mContainer = Control::New();
108     mContainer.SetName( "Container" );
109     mContainer.SetParentOrigin( ParentOrigin::CENTER );
110     mLayoutSize = Vector2(stageSize.width*0.6f, stageSize.width*0.6f);
111     mContainer.SetSize( mLayoutSize );
112     stage.Add( mContainer );
113
114     // Resize the center layout when the corner is grabbed
115     mGrabCorner = Control::New();
116     mGrabCorner.SetName( "GrabCorner" );
117     mGrabCorner.SetAnchorPoint( AnchorPoint::BOTTOM_RIGHT );
118     mGrabCorner.SetParentOrigin( ParentOrigin::BOTTOM_RIGHT );
119     mGrabCorner.SetSize( Vector2(stageSize.width*0.1f, stageSize.width*0.1f) );
120     mGrabCorner.SetZ(1.0f);
121     mGrabCorner.SetBackgroundColor( Color::YELLOW );
122     mContainer.Add( mGrabCorner );
123
124     mPanGestureDetector = PanGestureDetector::New();
125     mPanGestureDetector.Attach( mGrabCorner );
126     mPanGestureDetector.DetectedSignal().Connect( this, &TextLabelExample::OnPan );
127
128     mLabel = TextLabel::New( "A Quick Brown Fox Jumps Over The Lazy Dog" );
129     mLabel.SetName( "TextLabel" );
130     mLabel.SetAnchorPoint( AnchorPoint::TOP_LEFT );
131     mLabel.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
132     mLabel.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT );
133     mLabel.SetProperty( TextLabel::Property::MULTI_LINE, true );
134     mLabel.SetProperty( TextLabel::Property::TEXT_COLOR, Color::BLUE );
135     mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, Vector2( 1.0f, 1.0f ) );
136     mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::BLACK );
137     mLabel.SetBackgroundColor( Color::WHITE );
138     mContainer.Add( mLabel );
139
140     Property::Value labelText = mLabel.GetProperty( TextLabel::Property::TEXT );
141     std::cout << "Displaying text: \"" << labelText.Get< std::string >() << "\"" << std::endl;
142   }
143
144   // Resize the text-label with pan gesture
145   void OnPan( Actor actor, const PanGesture& gesture )
146   {
147     mLayoutSize.x += gesture.displacement.x * 2.0f;
148     mLayoutSize.y += gesture.displacement.y * 2.0f;
149
150     if( mLayoutSize.x >= 2.0f &&
151         mLayoutSize.y >= 2.0f )
152     {
153       // Avoid pixel mis-alignment issue
154       Vector2 clampedSize = Vector2( ConvertToEven(static_cast<int>(mLayoutSize.x)),
155                                      ConvertToEven(static_cast<int>(mLayoutSize.y)) );
156
157       mContainer.SetSize( clampedSize );
158     }
159   }
160
161   /**
162    * Main key event handler
163    */
164   void OnKeyEvent(const KeyEvent& event)
165   {
166     if(event.state == KeyEvent::Down)
167     {
168       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
169       {
170         mApplication.Quit();
171       }
172       else if( event.IsCtrlModifier() )
173       {
174         switch( event.keyCode )
175         {
176           // Select rendering back-end
177           case KEY_ZERO: // fall through
178           case KEY_ONE:
179           {
180             mLabel.SetProperty( TextLabel::Property::RENDERING_BACKEND, event.keyCode - 10 );
181             break;
182           }
183           case KEY_F: // Fill vertically
184           {
185             if( ResizePolicy::DIMENSION_DEPENDENCY == mLabel.GetResizePolicy(Dimension::HEIGHT) )
186             {
187               mLabel.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT );
188             }
189             else
190             {
191               mLabel.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
192             }
193             break;
194           }
195           case KEY_H: // Horizontal alignment
196           {
197             if( ++mAlignment >= H_ALIGNMENT_STRING_COUNT )
198             {
199               mAlignment = 0u;
200             }
201
202             mLabel.SetProperty( TextLabel::Property::HORIZONTAL_ALIGNMENT, H_ALIGNMENT_STRING_TABLE[ mAlignment ] );
203             break;
204           }
205           case KEY_V: // Vertical alignment
206           {
207             if( ++mAlignment >= V_ALIGNMENT_STRING_COUNT )
208             {
209               mAlignment = 0u;
210             }
211
212             mLabel.SetProperty( TextLabel::Property::VERTICAL_ALIGNMENT, V_ALIGNMENT_STRING_TABLE[ mAlignment ] );
213             break;
214           }
215           case KEY_M: // Multi-line
216           {
217             bool multiLine = mLabel.GetProperty<bool>( TextLabel::Property::MULTI_LINE );
218             mLabel.SetProperty( TextLabel::Property::MULTI_LINE, !multiLine );
219             break;
220           }
221           case KEY_L: // Language
222           {
223             const Language& language = LANGUAGES[ mLanguageId ];
224
225             mLabel.SetProperty( TextLabel::Property::TEXT, language.text );
226
227             if( ++mLanguageId >= NUMBER_OF_LANGUAGES )
228             {
229               mLanguageId = 0u;
230             }
231             break;
232           }
233           case KEY_S: // Shadow color
234           {
235             if( Color::BLACK == mLabel.GetProperty<Vector4>( TextLabel::Property::SHADOW_COLOR ) )
236             {
237               mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::RED );
238             }
239             else
240             {
241               mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::BLACK );
242             }
243             break;
244           }
245           case KEY_PLUS: // Increase shadow offset
246           {
247             mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, mLabel.GetProperty<Vector2>( TextLabel::Property::SHADOW_OFFSET ) + Vector2( 1.0f, 1.0f ) );
248             break;
249           }
250           case KEY_MINUS: // Decrease shadow offset
251           {
252             mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, mLabel.GetProperty<Vector2>( TextLabel::Property::SHADOW_OFFSET ) - Vector2( 1.0f, 1.0f ) );
253             break;
254           }
255
256         }
257       }
258     }
259   }
260
261 private:
262
263   Application& mApplication;
264
265   TextLabel mLabel;
266
267   Control mContainer;
268   Control mGrabCorner;
269
270   PanGestureDetector mPanGestureDetector;
271
272   Vector2 mLayoutSize;
273
274   unsigned int mLanguageId;
275   unsigned int mAlignment;
276 };
277
278 void RunTest( Application& application )
279 {
280   TextLabelExample test( application );
281
282   application.MainLoop();
283 }
284
285 /** Entry point for Linux & Tizen applications */
286 int main( int argc, char **argv )
287 {
288   Application application = Application::New( &argc, &argv );
289
290   RunTest( application );
291
292   return 0;
293 }