Merge remote-tracking branch 'origin/tizen' into new_text
[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_H = 43;
42   const unsigned int KEY_V = 55;
43   const unsigned int KEY_M = 58;
44   const unsigned int KEY_L = 46;
45   const unsigned int KEY_S = 39;
46   const unsigned int KEY_PLUS = 21;
47   const unsigned int KEY_MINUS = 20;
48
49   const char* H_ALIGNMENT_STRING_TABLE[] =
50   {
51     "BEGIN",
52     "CENTER",
53     "END"
54   };
55
56   const unsigned int H_ALIGNMENT_STRING_COUNT = sizeof( H_ALIGNMENT_STRING_TABLE ) / sizeof( H_ALIGNMENT_STRING_TABLE[0u] );
57
58   const char* V_ALIGNMENT_STRING_TABLE[] =
59   {
60     "TOP",
61     "CENTER",
62     "BOTTOM"
63   };
64
65   const unsigned int V_ALIGNMENT_STRING_COUNT = sizeof( V_ALIGNMENT_STRING_TABLE ) / sizeof( V_ALIGNMENT_STRING_TABLE[0u] );
66
67   int ConvertToEven(int value)
68   {
69     return (value % 2 == 0) ? value : (value + 1);
70   }
71 }
72
73 /**
74  * @brief The main class of the demo.
75  */
76 class TextLabelExample : public ConnectionTracker
77 {
78 public:
79
80   TextLabelExample( Application& application )
81   : mApplication( application ),
82     mLanguageId( 0u ),
83     mAlignment( 0u )
84   {
85     // Connect to the Application's Init signal
86     mApplication.InitSignal().Connect( this, &TextLabelExample::Create );
87   }
88
89   ~TextLabelExample()
90   {
91     // Nothing to do here.
92   }
93
94   /**
95    * One-time setup in response to Application InitSignal.
96    */
97   void Create( Application& application )
98   {
99     DemoHelper::RequestThemeChange();
100
101     Stage stage = Stage::GetCurrent();
102
103     stage.KeyEventSignal().Connect(this, &TextLabelExample::OnKeyEvent);
104     Vector2 stageSize = stage.GetSize();
105
106     mContainer = Control::New();
107     mContainer.SetName( "Container" );
108     mContainer.SetParentOrigin( ParentOrigin::CENTER );
109     mContainer.SetResizePolicy( FIXED, ALL_DIMENSIONS );
110     mLayoutSize = Vector2(stageSize.width*0.6f, stageSize.width*0.6f);
111     mContainer.SetSize( mLayoutSize );
112     mContainer.SetBackgroundImage( ResourceImage::New( BACKGROUND_IMAGE ) );
113     mContainer.GetChildAt(0).SetZ(-1.0f);
114     stage.Add( mContainer );
115
116     // Resize the center layout when the corner is grabbed
117     mGrabCorner = Control::New();
118     mGrabCorner.SetName( "GrabCorner" );
119     mGrabCorner.SetAnchorPoint( AnchorPoint::BOTTOM_RIGHT );
120     mGrabCorner.SetParentOrigin( ParentOrigin::BOTTOM_RIGHT );
121     mGrabCorner.SetResizePolicy( FIXED, ALL_DIMENSIONS );
122     mGrabCorner.SetSize( Vector2(stageSize.width*0.1f, stageSize.width*0.1f) );
123     mGrabCorner.SetZ(1.0f);
124     mContainer.Add( mGrabCorner );
125
126     mPanGestureDetector = PanGestureDetector::New();
127     mPanGestureDetector.Attach( mGrabCorner );
128     mPanGestureDetector.DetectedSignal().Connect( this, &TextLabelExample::OnPan );
129
130     mLabel = TextLabel::New( "A Quick Brown Fox Jumps Over The Lazy Dog" );
131     mLabel.SetName( "TextLabel" );
132     mLabel.SetAnchorPoint( AnchorPoint::TOP_LEFT );
133     mLabel.SetResizePolicy( FILL_TO_PARENT, WIDTH );
134     mLabel.SetResizePolicy( DIMENSION_DEPENDENCY, HEIGHT );
135     mLabel.SetProperty( TextLabel::Property::MULTI_LINE, true );
136     mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, Vector2( 1.0f, 1.0f ) );
137     mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::BLACK );
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           case KEY_ZERO: // fall through
177           case KEY_ONE:
178           {
179             mLabel.SetProperty( TextLabel::Property::RENDERING_BACKEND, event.keyCode - 10 );
180             break;
181           }
182           case KEY_H:
183           {
184             if( ++mAlignment >= H_ALIGNMENT_STRING_COUNT )
185             {
186               mAlignment = 0u;
187             }
188
189             mLabel.SetProperty( TextLabel::Property::HORIZONTAL_ALIGNMENT, H_ALIGNMENT_STRING_TABLE[ mAlignment ] );
190             break;
191           }
192           case KEY_V:
193           {
194             if( ++mAlignment >= V_ALIGNMENT_STRING_COUNT )
195             {
196               mAlignment = 0u;
197             }
198
199             mLabel.SetProperty( TextLabel::Property::VERTICAL_ALIGNMENT, V_ALIGNMENT_STRING_TABLE[ mAlignment ] );
200             break;
201           }
202           case KEY_M:
203           {
204             bool multiLine = mLabel.GetProperty<bool>( TextLabel::Property::MULTI_LINE );
205             mLabel.SetProperty( TextLabel::Property::MULTI_LINE, !multiLine );
206             break;
207           }
208           case KEY_L:
209           {
210             const Language& language = LANGUAGES[ mLanguageId ];
211
212             mLabel.SetProperty( TextLabel::Property::TEXT, language.text );
213
214             if( ++mLanguageId >= NUMBER_OF_LANGUAGES )
215             {
216               mLanguageId = 0u;
217             }
218             break;
219           }
220           case KEY_S:
221           {
222             if( Color::BLACK == mLabel.GetProperty<Vector4>( TextLabel::Property::SHADOW_COLOR ) )
223             {
224               mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::RED );
225             }
226             else
227             {
228               mLabel.SetProperty( TextLabel::Property::SHADOW_COLOR, Color::BLACK );
229             }
230             break;
231           }
232           case KEY_PLUS:
233           {
234             mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, mLabel.GetProperty<Vector2>( TextLabel::Property::SHADOW_OFFSET ) + Vector2( 1.0f, 1.0f ) );
235             break;
236           }
237           case KEY_MINUS:
238           {
239             mLabel.SetProperty( TextLabel::Property::SHADOW_OFFSET, mLabel.GetProperty<Vector2>( TextLabel::Property::SHADOW_OFFSET ) - Vector2( 1.0f, 1.0f ) );
240             break;
241           }
242
243         }
244       }
245     }
246   }
247
248 private:
249
250   Application& mApplication;
251
252   TextLabel mLabel;
253
254   Control mContainer;
255   Actor mGrabCorner;
256
257   PanGestureDetector mPanGestureDetector;
258
259   Vector2 mLayoutSize;
260
261   unsigned int mLanguageId;
262   unsigned int mAlignment;
263 };
264
265 void RunTest( Application& application )
266 {
267   TextLabelExample test( application );
268
269   application.MainLoop();
270 }
271
272 /** Entry point for Linux & Tizen applications */
273 int main( int argc, char **argv )
274 {
275   Application application = Application::New( &argc, &argv );
276
277   RunTest( application );
278
279   return 0;
280 }