Supply stylesheet using Application constructor
[platform/core/uifw/dali-demo.git] / examples / text-label-multi-language / text-label-multi-language-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-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     Stage stage = Stage::GetCurrent();
61
62     stage.KeyEventSignal().Connect(this, &TextLabelMultiLanguageExample::OnKeyEvent);
63     stage.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.SetParentOrigin( ParentOrigin::TOP_LEFT );
69     mTableView.SetAnchorPoint( AnchorPoint::TOP_LEFT );
70     mTableView.TouchedSignal().Connect( this, &TextLabelMultiLanguageExample::OnTouchEvent );
71     stage.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 OnTouchEvent( Actor actor, const TouchEvent& event )
89   {
90     if( 1u == event.GetPointCount() )
91     {
92       const TouchPoint::State state = event.GetPoint(0u).state;
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.GetPoint( 0 ).local.y ) );
96
97       if( TouchPoint::Down == state )
98       {
99         mLastPoint = localPoint;
100         mAnimation = Animation::New( 0.25f );
101       }
102       else if( TouchPoint::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.state == 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 void RunTest( Application& application )
139 {
140   TextLabelMultiLanguageExample test( application );
141
142   application.MainLoop();
143 }
144
145 /** Entry point for Linux & Tizen applications */
146 int main( int argc, char **argv )
147 {
148   Application application = Application::New( &argc, &argv, DALI_DEMO_THEME_PATH );
149
150   RunTest( application );
151
152   return 0;
153 }