2ebb28620282d1592e0068198ab2829add41970e
[platform/core/uifw/dali-demo.git] / examples / text-label-multi-language / text-label-multi-language-example.cpp
1 /*
2  * Copyright (c) 2020 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-toolkit/devel-api/controls/table-view/table-view.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 /**
36  * @brief The main class of the demo.
37  */
38 class TextLabelMultiLanguageExample : public ConnectionTracker
39 {
40 public:
41
42   TextLabelMultiLanguageExample( Application& application )
43   : mApplication( application ),
44     mLastPoint( 0.f )
45   {
46     // Connect to the Application's Init signal
47     mApplication.InitSignal().Connect( this, &TextLabelMultiLanguageExample::Create );
48   }
49
50   ~TextLabelMultiLanguageExample()
51   {
52     // Nothing to do here.
53   }
54
55   /**
56    * One-time setup in response to Application InitSignal.
57    */
58   void Create( Application& application )
59   {
60     Window window = application.GetWindow();
61
62     window.KeyEventSignal().Connect(this, &TextLabelMultiLanguageExample::OnKeyEvent);
63     window.SetBackgroundColor( Color::WHITE );
64
65     mTableView = Toolkit::TableView::New( NUMBER_OF_LANGUAGES, 1 );
66     mTableView.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
67     mTableView.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::HEIGHT );
68     mTableView.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
69     mTableView.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
70     mTableView.TouchSignal().Connect( this, &TextLabelMultiLanguageExample::OnTouch );
71     window.Add( mTableView );
72
73     for( unsigned int index = 0u; index < NUMBER_OF_LANGUAGES; ++index )
74     {
75       const Language& language = LANGUAGES[index];
76
77       TextLabel label = TextLabel::New();
78       label.SetProperty( TextLabel::Property::MULTI_LINE, true );
79
80       const std::string text = language.languageName + " " + language.languageRomanName + " " + language.text;
81       label.SetProperty( TextLabel::Property::TEXT, text );
82
83       mTableView.SetFitHeight( index );
84       mTableView.AddChild( label, Toolkit::TableView::CellPosition( index, 0 ) );
85     }
86   }
87
88   bool OnTouch( Actor actor, const TouchEvent& event )
89   {
90     if( 1u == event.GetPointCount() )
91     {
92       const PointState::Type state = event.GetState( 0 );
93
94       // Clamp to integer values; this is to reduce flicking due to pixel misalignment
95       const float localPoint = static_cast<float>( static_cast<int>( event.GetLocalPosition( 0 ).y ) );
96
97       if( PointState::DOWN == state )
98       {
99         mLastPoint = localPoint;
100         mAnimation = Animation::New( 0.25f );
101       }
102       else if( PointState::MOTION == state )
103       {
104         if( mAnimation )
105         {
106           mAnimation.AnimateBy( Property(mTableView, Actor::Property::POSITION), Vector3( 0.f, localPoint - mLastPoint, 0.f ), AlphaFunction::LINEAR );
107           mAnimation.Play();
108           mLastPoint = localPoint;
109         }
110       }
111     }
112
113     return true;
114   }
115
116   /**
117    * Main key event handler
118    */
119   void OnKeyEvent(const KeyEvent& event)
120   {
121     if(event.GetState() == KeyEvent::DOWN)
122     {
123       if( IsKey( event, DALI_KEY_ESCAPE) || IsKey( event, DALI_KEY_BACK ) )
124       {
125         mApplication.Quit();
126       }
127     }
128   }
129
130 private:
131
132   Application&   mApplication;
133   TableView      mTableView;
134   Animation      mAnimation;
135   float          mLastPoint;
136 };
137
138 int DALI_EXPORT_API main( int argc, char **argv )
139 {
140   Application application = Application::New( &argc, &argv, DEMO_THEME_PATH );
141   TextLabelMultiLanguageExample test( application );
142   application.MainLoop();
143   return 0;
144 }