Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-demo.git] / demo / dali-table-view.cpp
1 /*
2  * Copyright (c) 2014 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 // CLASS HEADER
19 #include "dali-table-view.h"
20 #include "examples/shared/view.h"
21
22 // EXTERNAL INCLUDES
23 #include <algorithm>
24 #include <sstream>
25 #include<unistd.h>
26
27 using namespace Dali;
28 using namespace Dali::Toolkit;
29
30 ///////////////////////////////////////////////////////////////////////////////
31
32 namespace
33 {
34
35 const std::string BUTTON_BACKWARD( "Backward" );
36 const std::string BUTTON_FORWARD( "Forward" );
37 const std::string BUTTON_QUIT( "Quit" );
38 const std::string BUTTON_OK( "Ok" );
39 const std::string BUTTON_CANCEL( "Cancel" );
40
41 const std::string DEFAULT_BACKGROUND_IMAGE_PATH( DALI_IMAGE_DIR "background-gradient.jpg" );
42 const std::string LOGO_PATH( DALI_IMAGE_DIR "dali-logo.png" );
43 const std::string DEFAULT_TOOLBAR_IMAGE_PATH( DALI_IMAGE_DIR "top-bar.png" );
44 const std::string BUTTON_BACKGROUND(DALI_IMAGE_DIR "button-background.png");
45 const std::string TILE_BACKGROUND(DALI_IMAGE_DIR "item-background.png");
46 const std::string TILE_BACKGROUND_ALPHA(DALI_IMAGE_DIR "item-background-alpha.png");
47
48 const char * const DEFAULT_TOOLBAR_TEXT( "TOUCH TO LAUNCH EXAMPLE" );
49
50 const float BUTTON_PRESS_ANIMATION_TIME = 0.25f;                ///< Time to perform button scale effect.
51 const float ROTATE_ANIMATION_TIME = 0.5f;                       ///< Time to perform rotate effect.
52 const int MAX_PAGES = 256;                                      ///< Maximum pages (arbitrary safety limit)
53 const int EXAMPLES_PER_ROW = 3;
54 const int ROWS_PER_PAGE = 3;
55 const int EXAMPLES_PER_PAGE = EXAMPLES_PER_ROW * ROWS_PER_PAGE;
56 const float LOGO_MARGIN_RATIO = 0.5f / 0.9f;
57 const float BOTTOM_PADDING_RATIO = 0.4f / 0.9f;
58 const Vector3 SCROLLVIEW_RELATIVE_SIZE(0.9f, 1.0f, 0.8f );     ///< ScrollView's relative size to its parent
59 const Vector3 TABLE_RELATIVE_SIZE(0.9f, 0.9f, 0.8f );          ///< TableView's relative size to the entire stage. The Y value means sum of the logo and table relative heights.
60 const float STENCIL_RELATIVE_SIZE = 1.0f;
61
62 const float EFFECT_SNAP_DURATION = 0.66f;                       ///< Scroll Snap Duration for Effects
63 const float EFFECT_FLICK_DURATION = 0.5f;                       ///< Scroll Flick Duration for Effects
64 const Vector3 ANGLE_CUBE_PAGE_ROTATE(Math::PI * 0.5f, Math::PI * 0.5f, 0.0f);
65
66 const int NUM_BACKGROUND_IMAGES = 20;
67 const float BACKGROUND_SWIPE_SCALE = 0.025f;
68 const float BACKGROUND_SPREAD_SCALE = 1.5f;
69 const float SCALE_MOD = 1000.0f * Math::PI * 2.0f;
70 const float SCALE_SPEED = 10.0f;
71 const float SCALE_SPEED_SIN = 0.1f;
72
73 const unsigned int BACKGROUND_ANIMATION_DURATION = 15000; // 15 secs
74
75 const float BACKGROUND_Z = -1.0f;
76 const float BACKGROUND_SIZE_SCALE = 1.0f;
77 const Vector4 BACKGROUND_COLOR( 1.0f, 1.0f, 1.0f, 1.0f );
78
79 const float BUBBLE_MIN_Z = -1.0;
80 const float BUBBLE_MAX_Z = 0.0f;
81
82 // 3D Effect constants
83 const Vector2 ANGLE_SWING_3DEFFECT( Math::PI_2 * 0.75, Math::PI_2 * 0.75f ); ///< Angle Swing in radians
84 const Vector2 POSITION_SWING_3DEFFECT( 0.55f, 0.4f );             ///< Position Swing relative to stage size.
85 const Vector3 ANCHOR_3DEFFECT_STYLE0( -105.0f, 30.0f, -240.0f ); ///< Rotation Anchor position for 3D Effect (Style 0)
86 const Vector3 ANCHOR_3DEFFECT_STYLE1( 65.0f, -70.0f, -500.0f );  ///< Rotation Anchor position for 3D Effect (Style 1)
87
88 //const std::string             DEFAULT_TEXT_STYLE_FONT_FAMILY("HelveticaNeue");
89 //const std::string             DEFAULT_TEXT_STYLE_FONT_STYLE("Regular");
90 //const Dali::Vector4           DEFAULT_TEXT_STYLE_COLOR(0.7f, 0.7f, 0.7f, 1.0f);
91
92 //const std::string             TABLE_TEXT_STYLE_FONT_FAMILY("HelveticaNeue");
93 //const std::string             TABLE_TEXT_STYLE_FONT_STYLE("Regular");
94 //const Dali::PointSize         TABLE_TEXT_STYLE_POINT_SIZE( 8.0f );
95 //const Dali::TextStyle::Weight TABLE_TEXT_STYLE_WEIGHT(Dali::TextStyle::LIGHT);
96 //const Dali::Vector4           TABLE_TEXT_STYLE_COLOR(0.0f, 0.0f, 0.0f, 1.0f);
97
98 Vector3 ScalePointSize(const Vector3& vec)
99 {
100   return Vector3( DemoHelper::ScalePointSize( vec.x ), DemoHelper::ScalePointSize( vec.y ), DemoHelper::ScalePointSize( vec.z ) );
101 }
102
103 #define DP(x) DemoHelper::ScalePointSize(x)
104
105 /**
106  * Creates the background image
107  */
108 ImageActor CreateBackground( std::string imagePath )
109 {
110   Image image = Image::New( imagePath );
111   ImageActor background = ImageActor::New( image );
112
113   background.SetAnchorPoint( AnchorPoint::CENTER );
114   background.SetParentOrigin( ParentOrigin::CENTER );
115   background.SetZ( -1.0f );
116
117   return background;
118 }
119
120 // These values depend on the tile image
121 const float IMAGE_BORDER_LEFT = 11.0f;
122 const float IMAGE_BORDER_RIGHT = IMAGE_BORDER_LEFT;
123 const float IMAGE_BORDER_TOP = IMAGE_BORDER_LEFT;
124 const float IMAGE_BORDER_BOTTOM = IMAGE_BORDER_LEFT;
125
126 /**
127  * TableViewVisibilityConstraint
128  */
129 struct TableViewVisibilityConstraint
130 {
131   bool operator()( const bool& current,
132               const PropertyInput& pagePositionProperty,
133               const PropertyInput& pageSizeProperty )
134   {
135     // Only the tableview in the current page should be visible.
136     const Vector3& pagePosition = pagePositionProperty.GetVector3();
137     const Vector3& pageSize = pageSizeProperty.GetVector3();
138     return fabsf( pagePosition.x ) < pageSize.x;
139   }
140 };
141
142 /**
143  * Constraint to wrap an actor in y that is moving vertically
144  */
145 Vector3 ShapeMovementConstraint( const Vector3& current,
146                          const PropertyInput& shapeSizeProperty,
147                          const PropertyInput& parentSizeProperty )
148 {
149   const Vector3& shapeSize = shapeSizeProperty.GetVector3();
150   const Vector3& parentSize = parentSizeProperty.GetVector3();
151
152   Vector3 pos( current );
153   if( pos.y + shapeSize.y * 0.5f < -parentSize.y * 0.5f )
154   {
155     pos.y += parentSize.y + shapeSize.y;
156   }
157
158   return pos;
159 }
160
161 /**
162  * Constraint to return a position for the background based on the scroll value
163  */
164 struct AnimScrollConstraint
165 {
166 public:
167
168   AnimScrollConstraint( const Vector3& initialPos, float scale )
169       : mInitialPos( initialPos ),
170         mScale( scale )
171   {
172
173   }
174
175   Vector3 operator()( const Vector3& current, const PropertyInput& scrollProperty )
176   {
177     float scrollPos = scrollProperty.GetVector3().x;
178
179     return mInitialPos + Vector3( -scrollPos * mScale, 0.0f, 0.0f );
180   }
181
182 private:
183   Vector3 mInitialPos;
184   float mScale;
185 };
186
187 /**
188  * Constraint to return a tracked world position added to the constant local position
189  */
190 struct TranslateLocalConstraint
191 {
192 public:
193
194   TranslateLocalConstraint( const Vector3& localPos )
195       : mLocalPos( localPos )
196   {
197   }
198
199   Vector3 operator()( const Vector3& current, const PropertyInput& pagePosProperty )
200   {
201     Vector3 worldPos = pagePosProperty.GetVector3();
202
203     return ( worldPos + mLocalPos );
204   }
205
206 private:
207   Vector3 mLocalPos;
208 };
209
210
211 bool CompareByTitle( const Example& lhs, const Example& rhs )
212 {
213   return lhs.title < rhs.title;
214 }
215
216 } // namespace
217
218 DaliTableView::DaliTableView( Application& application )
219     : mApplication( application ),
220         mScrolling( false ),
221         mBackgroundImagePath( DEFAULT_BACKGROUND_IMAGE_PATH ),
222         mSortAlphabetically( false ),
223         mBackgroundAnimsPlaying( false )
224 {
225   application.InitSignal().Connect( this, &DaliTableView::Initialize );
226 }
227
228 DaliTableView::~DaliTableView()
229 {
230 }
231
232 void DaliTableView::AddExample( Example example )
233 {
234   mExampleList.push_back( example );
235   mExampleMap[ example.name ] = example;
236 }
237
238 void DaliTableView::SetBackgroundPath( std::string imagePath )
239 {
240   mBackgroundImagePath = imagePath;
241 }
242
243 void DaliTableView::SortAlphabetically( bool sortAlphabetically )
244 {
245   mSortAlphabetically = sortAlphabetically;
246 }
247
248 void DaliTableView::Initialize( Application& application )
249 {
250   Stage::GetCurrent().KeyEventSignal().Connect( this, &DaliTableView::OnKeyEvent );
251
252   const Vector2 stageSize = Stage::GetCurrent().GetSize();
253
254   // Background
255   mBackground = CreateBackground( mBackgroundImagePath );
256   // set same size as parent actor
257   mBackground.SetSize( stageSize );
258   Stage::GetCurrent().Add( mBackground );
259
260   // Render entire content as overlays, as is all on same 2D plane.
261   mRootActor = TableView::New( 4, 1 );
262   mRootActor.SetAnchorPoint( AnchorPoint::CENTER );
263   mRootActor.SetParentOrigin( ParentOrigin::CENTER );
264   Stage::GetCurrent().Add( mRootActor );
265
266   // Toolbar at top
267   Dali::Toolkit::ToolBar toolbar;
268   Dali::Layer toolBarLayer = DemoHelper::CreateToolbar(toolbar,
269                                                        DEFAULT_TOOLBAR_IMAGE_PATH,
270                                                        DEFAULT_TOOLBAR_TEXT,
271                                                        DemoHelper::DEFAULT_VIEW_STYLE);
272
273   mRootActor.AddChild( toolBarLayer, TableView::CellPosition( 0, 0 ) );
274   const float toolbarHeight = DemoHelper::DEFAULT_VIEW_STYLE.mToolBarHeight;
275   mRootActor.SetFixedHeight( 0, toolbarHeight );
276
277   // Add logo
278   mLogo = CreateLogo( LOGO_PATH );
279   const float paddingHeight = ( ( 1.f-TABLE_RELATIVE_SIZE.y ) * stageSize.y );
280   const float logoMargin = paddingHeight * LOGO_MARGIN_RATIO;
281   const float logoHeight = mLogo.GetImage().GetHeight() + logoMargin;
282   mRootActor.SetFixedHeight( 1, logoHeight );
283
284   const float bottomMargin = paddingHeight * BOTTOM_PADDING_RATIO;
285   mButtonsPageRelativeSize = Vector3( TABLE_RELATIVE_SIZE.x, 1.f - ( toolbarHeight + logoHeight + bottomMargin) / stageSize.height, TABLE_RELATIVE_SIZE.z );
286   mRootActor.SetFixedHeight( 2, mButtonsPageRelativeSize.y * stageSize.height );
287
288   Alignment alignment = Alignment::New();
289   alignment.Add(mLogo);
290   mRootActor.AddChild( alignment, TableView::CellPosition( 1, 0 ) );
291
292   // scrollview occupying the majority of the screen
293   mScrollView = ScrollView::New();
294
295   mScrollView.SetAnchorPoint( AnchorPoint::CENTER );
296   mScrollView.SetParentOrigin( ParentOrigin::CENTER );
297   mScrollView.ApplyConstraint( Dali::Constraint::New<Dali::Vector3>( Dali::Actor::SIZE, Dali::ParentSource( Dali::Actor::SIZE ),
298                                                                      Dali::RelativeToConstraint( SCROLLVIEW_RELATIVE_SIZE ) ) );
299   mScrollView.SetAxisAutoLock( true );
300   mScrollView.ScrollCompletedSignal().Connect( this, &DaliTableView::OnScrollComplete );
301   mScrollView.ScrollStartedSignal().Connect( this, &DaliTableView::OnScrollStart );
302   mScrollView.TouchedSignal().Connect( this, &DaliTableView::OnScrollTouched );
303
304   mScrollViewLayer = Layer::New();
305   mScrollViewLayer.SetAnchorPoint( AnchorPoint::CENTER );
306   mScrollViewLayer.SetParentOrigin( ParentOrigin::CENTER );
307   mScrollViewLayer.SetDrawMode( DrawMode::OVERLAY );
308
309   // Populate background and bubbles - needs to be scrollViewLayer so scroll ends show
310   SetupBackground( mScrollView, mScrollViewLayer, stageSize );
311
312   mScrollViewLayer.Add( mScrollView );
313   mRootActor.AddChild( mScrollViewLayer, TableView::CellPosition( 2, 0 ) );
314
315   // Add scroll view effect and setup constraints on pages
316   ApplyScrollViewEffect();
317
318   // Add pages and tiles
319   Populate();
320
321   // Remove constraints for inner cube effect
322   ApplyCubeEffectToActors();
323
324   // Set initial orientation
325   unsigned int degrees = application.GetOrientation().GetDegrees();
326   Rotate( degrees );
327
328   Dali::Window winHandle = application.GetWindow();
329   winHandle.AddAvailableOrientation( Dali::Window::PORTRAIT );
330   winHandle.RemoveAvailableOrientation( Dali::Window::LANDSCAPE );
331   winHandle.AddAvailableOrientation( Dali::Window::PORTRAIT_INVERSE );
332   winHandle.RemoveAvailableOrientation( Dali::Window::LANDSCAPE_INVERSE );
333
334   Dali::Orientation orientation = winHandle.GetOrientation();
335   orientation.ChangedSignal().Connect( this, &DaliTableView::OrientationChanged );
336
337   winHandle.ShowIndicator( Dali::Window::INVISIBLE );
338
339   //
340   mAnimationTimer = Timer::New( BACKGROUND_ANIMATION_DURATION );
341   mAnimationTimer.TickSignal().Connect( this, &DaliTableView::PauseBackgroundAnimation );
342   mAnimationTimer.Start();
343   mBackgroundAnimsPlaying = true;
344
345   KeyboardFocusManager::Get().PreFocusChangeSignal().Connect( this, &DaliTableView::OnKeyboardPreFocusChange );
346   KeyboardFocusManager::Get().FocusedActorActivatedSignal().Connect( this, &DaliTableView::OnFocusedActorActivated );
347 }
348
349 void DaliTableView::ApplyCubeEffectToActors()
350 {
351   for( ActorIter pageIter = mPages.begin(); pageIter != mPages.end(); ++pageIter )
352   {
353     Actor page = *pageIter;
354
355     unsigned int numChildren = page.GetChildCount();
356     Actor pageActor = page;
357     for( unsigned int i=0; i<numChildren; ++i)
358     {
359       // Remove old effect's manual constraints.
360       Actor child = pageActor.GetChildAt(i);
361       if( child )
362       {
363         ApplyCubeEffectToActor( child );
364       }
365     }
366   }
367 }
368 void DaliTableView::Populate()
369 {
370   const Vector2 stageSize = Stage::GetCurrent().GetSize();
371
372   mTotalPages = ( mExampleList.size() + EXAMPLES_PER_PAGE - 1 ) / EXAMPLES_PER_PAGE;
373
374   // Populate ScrollView.
375   if( mExampleList.size() > 0 )
376   {
377     if( mSortAlphabetically )
378     {
379       sort( mExampleList.begin(), mExampleList.end(), CompareByTitle );
380     }
381
382     unsigned int exampleCount = 0;
383     ExampleListConstIter iter = mExampleList.begin();
384
385     for( int t = 0; t < mTotalPages; t++ )
386     {
387       // Create Table. (contains up to 9 Examples)
388       Actor page = Actor::New();
389
390       // Add tableView to container.
391       mScrollView.Add( page );
392
393       page.SetAnchorPoint( AnchorPoint::CENTER );
394       page.SetParentOrigin( ParentOrigin::CENTER );
395       page.ApplyConstraint( Constraint::New<Vector3>( Actor::SIZE, ParentSource( Actor::SIZE ), EqualToConstraint() ) );
396
397       // add cells to table
398       const float margin = 4.0f;
399
400       // Calculate the number of images going across (columns) within a page, according to the screen resolution and dpi.
401       const Size tileSize((stageSize.x * mButtonsPageRelativeSize.x / EXAMPLES_PER_ROW) - margin, (stageSize.y * mButtonsPageRelativeSize.y / ROWS_PER_PAGE) - margin );
402
403       for(int row = 0; row < ROWS_PER_PAGE; row++)
404       {
405         for(int column = 0; column < EXAMPLES_PER_ROW; column++)
406         {
407           const Example& example = ( *iter );
408
409           Actor tile = CreateTile( example.name, example.title, tileSize, true );
410           FocusManager focusManager = FocusManager::Get();
411           focusManager.SetFocusOrder( tile, ++exampleCount );
412           focusManager.SetAccessibilityAttribute( tile, Dali::Toolkit::FocusManager::ACCESSIBILITY_LABEL,
413                                                   example.title );
414           focusManager.SetAccessibilityAttribute( tile, Dali::Toolkit::FocusManager::ACCESSIBILITY_TRAIT, "Tile" );
415           focusManager.SetAccessibilityAttribute( tile, Dali::Toolkit::FocusManager::ACCESSIBILITY_HINT,
416                                                   "You can run this example" );
417
418           Vector3 position( margin * 0.5f + (tileSize.x + margin) * column - stageSize.width * mButtonsPageRelativeSize.x * 0.5f,
419                            margin * 0.5f + (tileSize.y + margin) * row - stageSize.height * mButtonsPageRelativeSize.y * 0.5f,
420                             0.0f);
421           tile.SetPosition( position + Vector3( tileSize.x, tileSize.y, 0.0f ) * 0.5f );
422           tile.SetSize( tileSize );
423           page.Add( tile );
424
425           iter++;
426
427           if( iter == mExampleList.end() )
428           {
429             break;
430           }
431         }
432
433         if( iter == mExampleList.end() )
434         {
435           break;
436         }
437       }
438
439       // Set tableview position
440       Vector3 pagePos( stageSize.x * mButtonsPageRelativeSize.x * t, 0.0f, 0.0f );
441       page.SetPosition( pagePos );
442
443       mPages.push_back( page );
444
445       if( iter == mExampleList.end() )
446       {
447         break;
448       }
449     }
450   }
451
452   // Update Ruler info.
453   mScrollRulerX = new FixedRuler( stageSize.width * mButtonsPageRelativeSize.x );
454   mScrollRulerY = new DefaultRuler();
455   mScrollRulerX->SetDomain( RulerDomain( 0.0f, mTotalPages * stageSize.width * mButtonsPageRelativeSize.x, true ) );
456   mScrollRulerY->Disable();
457   mScrollView.SetRulerX( mScrollRulerX );
458   mScrollView.SetRulerY( mScrollRulerY );
459 }
460
461 void DaliTableView::OrientationChanged( Orientation orientation )
462 {
463   // TODO: Implement if orientation change required
464 }
465
466 void DaliTableView::Rotate( unsigned int degrees )
467 {
468   // Resize the root actor
469   Vector2 stageSize = Stage::GetCurrent().GetSize();
470   Vector3 targetSize( stageSize.x, stageSize.y, 1.0f );
471
472   if( degrees == 90 || degrees == 270 )
473   {
474     targetSize = Vector3( stageSize.y, stageSize.x, 1.0f );
475   }
476
477   if( mRotateAnimation )
478   {
479     mRotateAnimation.Stop();
480     mRotateAnimation.Clear();
481   }
482
483   mRotateAnimation = Animation::New( ROTATE_ANIMATION_TIME );
484   mRotateAnimation.RotateTo( mRootActor, Degree( 360 - degrees ), Vector3::ZAXIS, AlphaFunctions::EaseOut );
485   mRotateAnimation.Resize( mRootActor, targetSize, AlphaFunctions::EaseOut );
486   mRotateAnimation.Play();
487 }
488
489 Actor DaliTableView::CreateTile( const std::string& name, const std::string& title, const Size& parentSize, bool addBackground )
490 {
491   Actor tile = Actor::New();
492   tile.SetName( name );
493   tile.SetAnchorPoint( AnchorPoint::CENTER );
494   tile.SetParentOrigin( ParentOrigin::CENTER );
495
496   Actor content = Actor::New();
497   content.SetAnchorPoint( AnchorPoint::CENTER );
498   content.SetParentOrigin( ParentOrigin::CENTER );
499   content.ApplyConstraint( Constraint::New<Vector3>( Actor::SIZE, ParentSource( Actor::SIZE ), EqualToConstraint() ) );
500   tile.Add(content);
501
502   // create background image
503   if( addBackground )
504   {
505     Image bg = Image::New( TILE_BACKGROUND );
506     ImageActor image = ImageActor::New( bg );
507     image.SetAnchorPoint( AnchorPoint::CENTER );
508     image.SetParentOrigin( ParentOrigin::CENTER );
509     // make the image 100% of tile
510     image.ApplyConstraint( Constraint::New<Vector3>( Actor::SIZE, ParentSource( Actor::SIZE ), EqualToConstraint() ) );
511     // move image back to get text appear in front
512     image.SetZ( -1 );
513     image.SetStyle( ImageActor::STYLE_NINE_PATCH );
514     image.SetNinePatchBorder( Vector4( IMAGE_BORDER_LEFT, IMAGE_BORDER_TOP, IMAGE_BORDER_RIGHT, IMAGE_BORDER_BOTTOM ) );
515
516     content.Add( image );
517
518     // Add stencil
519     ImageActor stencil = NewStencilImage();
520     stencil.ApplyConstraint( Constraint::New<Vector3>( Actor::SIZE, ParentSource( Actor::SIZE ), EqualToConstraint() ) );
521     image.Add( stencil );
522   }
523
524   // Set the tile to be keyboard focusable
525   tile.SetKeyboardFocusable(true);
526
527   // connect to the touch events
528   tile.TouchedSignal().Connect( this, &DaliTableView::OnTilePressed );
529   tile.HoveredSignal().Connect( this, &DaliTableView::OnTileHovered );
530
531   return tile;
532 }
533
534 ImageActor DaliTableView::NewStencilImage()
535 {
536   Image alpha = Image::New( TILE_BACKGROUND_ALPHA );
537
538   ImageActor stencilActor = ImageActor::New( alpha );
539   stencilActor.SetStyle( ImageActor::STYLE_NINE_PATCH );
540   stencilActor.SetNinePatchBorder( Vector4( IMAGE_BORDER_LEFT, IMAGE_BORDER_TOP, IMAGE_BORDER_RIGHT, IMAGE_BORDER_BOTTOM ) );
541
542   stencilActor.SetParentOrigin( ParentOrigin::CENTER );
543   stencilActor.SetAnchorPoint( AnchorPoint::CENTER );
544   stencilActor.SetDrawMode( DrawMode::STENCIL );
545
546   Dali::ShaderEffect shaderEffect = AlphaDiscardEffect::New();
547   stencilActor.SetShaderEffect( shaderEffect );
548
549   return stencilActor;
550 }
551
552 bool DaliTableView::OnTilePressed( Actor actor, const TouchEvent& event )
553 {
554   bool consumed = false;
555
556   const TouchPoint& point = event.GetPoint( 0 );
557   if( TouchPoint::Down == point.state )
558   {
559     mPressedActor = actor;
560     consumed = true;
561   }
562
563   // A button press is only valid if the Down & Up events
564   // both occurred within the button.
565   if( ( TouchPoint::Up == point.state ) &&
566       ( mPressedActor == actor ) )
567   {
568     std::string name = actor.GetName();
569     ExampleMapConstIter iter = mExampleMap.find( name );
570
571     FocusManager focusManager = FocusManager::Get();
572
573     if( iter != mExampleMap.end() )
574     {
575       // ignore Example button presses when scrolling or button animating.
576       if( ( !mScrolling ) && ( !mPressedAnimation ) )
577       {
578         // do nothing, until pressed animation finished.
579         consumed = true;
580       }
581     }
582
583     if( consumed )
584     {
585       mPressedAnimation = Animation::New( BUTTON_PRESS_ANIMATION_TIME );
586       mPressedAnimation.SetEndAction( Animation::Discard );
587
588       // scale the content actor within the Tile, as to not affect the placement within the Table.
589       Actor content = actor.GetChildAt(0);
590       mPressedAnimation.ScaleTo( content, Vector3( 0.9f, 0.9f, 1.0f ), AlphaFunctions::EaseInOut, 0.0f,
591                                  BUTTON_PRESS_ANIMATION_TIME * 0.5f );
592       mPressedAnimation.ScaleTo( content, Vector3::ONE, AlphaFunctions::EaseInOut, BUTTON_PRESS_ANIMATION_TIME * 0.5f,
593                                  BUTTON_PRESS_ANIMATION_TIME * 0.5f );
594       mPressedAnimation.Play();
595       mPressedAnimation.FinishedSignal().Connect( this, &DaliTableView::OnPressedAnimationFinished );
596     }
597   }
598   return consumed;
599 }
600
601 void DaliTableView::OnPressedAnimationFinished( Dali::Animation& source )
602 {
603   mPressedAnimation.Reset();
604   if( mPressedActor )
605   {
606     std::string name = mPressedActor.GetName();
607     ExampleMapConstIter iter = mExampleMap.find( name );
608
609     if( iter == mExampleMap.end() )
610     {
611       if( name == BUTTON_QUIT )
612       {
613         // Move focus to the OK button
614         FocusManager focusManager = FocusManager::Get();
615
616         // Enable the group mode and wrap mode
617         focusManager.SetGroupMode( true );
618         focusManager.SetWrapMode( true );
619       }
620     }
621     else
622     {
623       const Example& example( iter->second );
624
625       std::stringstream stream;
626       stream << DALI_EXAMPLE_BIN << example.name.c_str();
627       pid_t pid = fork();
628       if( pid == 0)
629       {
630         execlp( stream.str().c_str(), example.name.c_str(), NULL );
631         DALI_ASSERT_ALWAYS(false && "exec failed!");
632       }
633     }
634     mPressedActor.Reset();
635   }
636 }
637
638 void DaliTableView::OnScrollStart( const Dali::Vector3& position )
639 {
640   mScrolling = true;
641
642   PlayAnimation();
643 }
644
645 void DaliTableView::OnScrollComplete( const Dali::Vector3& position )
646 {
647   mScrolling = false;
648
649   // move focus to 1st item of new page
650   FocusManager focusManager = FocusManager::Get();
651   focusManager.SetCurrentFocusActor(mPages[mScrollView.GetCurrentPage()].GetChildAt(0) );
652
653   ApplyCubeEffectToActors();
654 }
655
656 bool DaliTableView::OnScrollTouched( Actor actor, const TouchEvent& event )
657 {
658   const TouchPoint& point = event.GetPoint( 0 );
659   if( TouchPoint::Down == point.state )
660   {
661     mPressedActor = actor;
662   }
663
664   return false;
665 }
666
667 void DaliTableView::ApplyScrollViewEffect()
668 {
669   // Remove old effect if exists.
670
671   if( mScrollViewEffect )
672   {
673     mScrollView.RemoveEffect( mScrollViewEffect );
674   }
675
676   // Just one effect for now
677   SetupInnerPageCubeEffect();
678
679   mScrollView.ApplyEffect( mScrollViewEffect );
680 }
681
682 void DaliTableView::SetupInnerPageCubeEffect()
683 {
684   mScrollViewEffect = ScrollViewCubeEffect::New();
685   mScrollView.SetScrollSnapDuration( EFFECT_SNAP_DURATION );
686   mScrollView.SetScrollFlickDuration( EFFECT_FLICK_DURATION );
687   mScrollView.RemoveConstraintsFromChildren();
688 }
689
690 void DaliTableView::ApplyCubeEffectToActor( Actor actor )
691 {
692   actor.RemoveConstraints();
693
694   ScrollViewCubeEffect cubeEffect = ScrollViewCubeEffect::DownCast(mScrollViewEffect);
695   cubeEffect.ApplyToActor( actor,
696                            ScalePointSize( ( rand() & 1 ) ? ANCHOR_3DEFFECT_STYLE0 : ANCHOR_3DEFFECT_STYLE1 ),
697                            ANGLE_SWING_3DEFFECT,
698                            POSITION_SWING_3DEFFECT * Vector2(Stage::GetCurrent().GetSize()));
699 }
700
701 void DaliTableView::OnKeyEvent( const KeyEvent& event )
702 {
703   if( event.state == KeyEvent::Down )
704   {
705     if ( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
706     {
707       mApplication.Quit();
708     }
709   }
710 }
711
712 Actor CreateBackgroundActor( const Vector2& size )
713 {
714   Actor layer = Actor::New();
715   layer.SetAnchorPoint( AnchorPoint::CENTER );
716   layer.SetParentOrigin( ParentOrigin::CENTER );
717   layer.SetSize( size );
718   return layer;
719 }
720
721 void DaliTableView::SetupBackground( Actor bubbleLayer, Actor backgroundLayer, const Vector2& size )
722 {
723   // Create distance field shape
724   BitmapImage distanceField;
725   Size imageSize( 512, 512 );
726   CreateShapeImage( CIRCLE, imageSize, distanceField );
727
728   // Create layers
729   Actor backgroundAnimLayer0 = CreateBackgroundActor( size );
730   Actor backgroundAnimLayer1 = CreateBackgroundActor( size );
731   Actor backgroundAnimLayer2 = CreateBackgroundActor( size );
732
733   // Add constraints
734   Constraint animConstraint0 = Constraint::New < Vector3 > ( Actor::POSITION,
735       Source( mScrollView, mScrollView.GetPropertyIndex( ScrollView::SCROLL_POSITION_PROPERTY_NAME ) ),
736       AnimScrollConstraint( backgroundAnimLayer0.GetCurrentPosition(), 0.75f ) );
737   backgroundAnimLayer0.ApplyConstraint( animConstraint0 );
738
739   Constraint animConstraint1 = Constraint::New < Vector3 > ( Actor::POSITION,
740       Source( mScrollView, mScrollView.GetPropertyIndex( ScrollView::SCROLL_POSITION_PROPERTY_NAME ) ),
741       AnimScrollConstraint( backgroundAnimLayer1.GetCurrentPosition(), 0.5f ) );
742   backgroundAnimLayer1.ApplyConstraint( animConstraint1 );
743
744   Constraint animConstraint2 = Constraint::New < Vector3 > ( Actor::POSITION,
745       Source( mScrollView, mScrollView.GetPropertyIndex( ScrollView::SCROLL_POSITION_PROPERTY_NAME ) ),
746       AnimScrollConstraint( backgroundAnimLayer2.GetCurrentPosition(), 0.25f ) );
747   backgroundAnimLayer2.ApplyConstraint( animConstraint2 );
748
749   // Background
750   ImageActor layer = Dali::Toolkit::CreateSolidColorActor( BACKGROUND_COLOR );
751   layer.SetAnchorPoint( AnchorPoint::CENTER );
752   layer.SetParentOrigin( ParentOrigin::CENTER );
753   layer.SetSize( size * BACKGROUND_SIZE_SCALE );
754   layer.SetZ( BACKGROUND_Z );
755   layer.SetPositionInheritanceMode( DONT_INHERIT_POSITION );
756   backgroundLayer.Add( layer );
757
758   // Parent the layers
759   bubbleLayer.Add( backgroundAnimLayer0 );
760   bubbleLayer.Add( backgroundAnimLayer1 );
761   bubbleLayer.Add( backgroundAnimLayer2 );
762
763   // Add all the children
764   AddBackgroundActors( backgroundAnimLayer0, NUM_BACKGROUND_IMAGES / 3, distanceField, size );
765   AddBackgroundActors( backgroundAnimLayer1, NUM_BACKGROUND_IMAGES / 3, distanceField, size );
766   AddBackgroundActors( backgroundAnimLayer2, NUM_BACKGROUND_IMAGES / 3, distanceField, size );
767 }
768
769 void DaliTableView::AddBackgroundActors( Actor layer, int count, BitmapImage distanceField, const Dali::Vector2& size )
770 {
771   for( int i = 0; i < count; ++i )
772   {
773     float randSize = Random::Range( 10.0f, 400.0f );
774     float hue = Random::Range( 0.3f, 1.0f );
775     Vector4 randColour( hue, hue*0.5, 0.0f, Random::Range( 0.3f, 0.6f ));
776
777     ImageActor dfActor = ImageActor::New( distanceField );
778     mBackgroundActors.push_back( dfActor );
779     dfActor.SetSize( Vector2( randSize, randSize ) );
780     dfActor.SetParentOrigin( ParentOrigin::CENTER );
781
782     Toolkit::DistanceFieldEffect effect = Toolkit::DistanceFieldEffect::New();
783     dfActor.SetShaderEffect( effect );
784     dfActor.SetColor( randColour );
785     effect.SetOutlineParams( Vector2( 0.55f, 0.00f ) );
786     effect.SetSmoothingEdge( 0.5f );
787     layer.Add( dfActor );
788
789     // Setup animation
790     Vector3 actorPos(
791         Random::Range( -size.x * 0.5f * BACKGROUND_SPREAD_SCALE, size.x * 0.5f * BACKGROUND_SPREAD_SCALE ),
792         Random::Range( -size.y * 0.5f - randSize, size.y * 0.5f + randSize ),
793         Random::Range( BUBBLE_MIN_Z, BUBBLE_MAX_Z ) );
794     dfActor.SetPosition( actorPos );
795
796     Constraint movementConstraint = Constraint::New < Vector3 > ( Actor::POSITION,
797         LocalSource( Actor::SIZE ),
798         ParentSource( Actor::SIZE ),
799         ShapeMovementConstraint );
800     dfActor.ApplyConstraint( movementConstraint );
801
802     // Kickoff animation
803     Animation animation = Animation::New( Random::Range( 40.0f, 200.0f ) );
804     KeyFrames keyframes = KeyFrames::New();
805     keyframes.Add( 0.0f, actorPos );
806     Vector3 toPos( actorPos );
807     toPos.y -= ( size.y + randSize );
808     keyframes.Add( 1.0f, toPos );
809     animation.AnimateBetween( Property( dfActor, Actor::POSITION ), keyframes );
810     animation.SetLooping( true );
811     animation.Play();
812     mBackgroundAnimations.push_back( animation );
813   }
814 }
815
816 void DaliTableView::CreateShapeImage( ShapeType shapeType, const Size& size, BitmapImage& distanceFieldOut )
817 {
818   // this bitmap will hold the alpha map for the distance field shader
819   distanceFieldOut = BitmapImage::New( size.width, size.height, Pixel::A8 );
820
821   // Generate bit pattern
822   std::vector< unsigned char > imageDataA8;
823   imageDataA8.reserve( size.width * size.height ); // A8
824
825   switch( shapeType )
826   {
827     case CIRCLE:
828       GenerateCircle( size, imageDataA8 );
829       break;
830     case SQUARE:
831       GenerateSquare( size, imageDataA8 );
832       break;
833     default:
834       break;
835   }
836
837   PixelBuffer* buffer = distanceFieldOut.GetBuffer();
838   if( buffer )
839   {
840     GenerateDistanceFieldMap( &imageDataA8[ 0 ], size, buffer, size, 8.0f, size );
841     distanceFieldOut.Update();
842   }
843 }
844
845 void DaliTableView::GenerateSquare( const Size& size, std::vector< unsigned char >& distanceFieldOut )
846 {
847   for( int h = 0; h < size.height; ++h )
848   {
849     for( int w = 0; w < size.width; ++w )
850     {
851       distanceFieldOut.push_back( 0xFF );
852     }
853   }
854 }
855
856 void DaliTableView::GenerateCircle( const Size& size, std::vector< unsigned char >& distanceFieldOut )
857 {
858   const float radius = size.width * 0.5f * size.width * 0.5f;
859   Vector2 center( size.width / 2, size.height / 2 );
860
861   for( int h = 0; h < size.height; ++h )
862   {
863     for( int w = 0; w < size.width; ++w )
864     {
865       Vector2 pos( w, h );
866       Vector2 dist = pos - center;
867
868       if( dist.x * dist.x + dist.y * dist.y > radius )
869       {
870         distanceFieldOut.push_back( 0x00 );
871       }
872       else
873       {
874         distanceFieldOut.push_back( 0xFF );
875       }
876     }
877   }
878 }
879
880 ImageActor DaliTableView::CreateLogo( std::string imagePath )
881 {
882   Image image = Image::New( imagePath );
883   ImageActor logo = ImageActor::New( image );
884
885   logo.SetAnchorPoint( AnchorPoint::CENTER );
886   logo.SetParentOrigin( ParentOrigin::BOTTOM_CENTER );
887
888   return logo;
889 }
890
891 bool DaliTableView::PauseBackgroundAnimation()
892 {
893   PauseAnimation();
894
895   return false;
896 }
897
898 void DaliTableView::PauseAnimation()
899 {
900   if( mBackgroundAnimsPlaying )
901   {
902     for( AnimationListIter animIter = mBackgroundAnimations.begin(); animIter != mBackgroundAnimations.end(); ++animIter )
903     {
904       Animation anim = *animIter;
905
906       anim.Pause();
907     }
908
909     mBackgroundAnimsPlaying = false;
910   }
911 }
912
913 void DaliTableView::PlayAnimation()
914 {
915   if ( !mBackgroundAnimsPlaying )
916   {
917     for( AnimationListIter animIter = mBackgroundAnimations.begin(); animIter != mBackgroundAnimations.end(); ++animIter )
918     {
919       Animation anim = *animIter;
920
921       anim.Play();
922     }
923
924     mBackgroundAnimsPlaying = true;
925   }
926
927   mAnimationTimer.SetInterval( BACKGROUND_ANIMATION_DURATION );
928 }
929
930 Dali::Actor DaliTableView::OnKeyboardPreFocusChange( Dali::Actor current, Dali::Actor proposed, Dali::Toolkit::Control::KeyboardFocusNavigationDirection direction )
931 {
932   Actor nextFocusActor = proposed;
933
934   if ( !current && !proposed  )
935   {
936     // Set the initial focus to the first tile in the current page should be focused.
937     nextFocusActor = mPages[mScrollView.GetCurrentPage()].GetChildAt(0);
938   }
939   else if( !proposed || (proposed && proposed == mScrollViewLayer) )
940   {
941     // ScrollView is being focused but nothing in the current page can be focused further
942     // in the given direction. We should work out which page to scroll to next.
943     int currentPage = mScrollView.GetCurrentPage();
944     int newPage = currentPage;
945     if( direction == Dali::Toolkit::Control::Left )
946     {
947       newPage--;
948     }
949     else if( direction == Dali::Toolkit::Control::Right )
950     {
951       newPage++;
952     }
953
954     newPage = std::max(0, std::min(static_cast<int>(mScrollRulerX->GetTotalPages() - 1), newPage));
955     if( newPage == currentPage )
956     {
957       if( direction == Dali::Toolkit::Control::Left )
958       {
959         newPage = mScrollRulerX->GetTotalPages() - 1;
960       } else if( direction == Dali::Toolkit::Control::Right )
961       {
962         newPage = 0;
963       }
964     }
965
966     // Scroll to the page in the given direction
967     mScrollView.ScrollTo(newPage);
968
969     if( direction == Dali::Toolkit::Control::Left )
970     {
971       // Work out the cell position for the last tile
972       int remainingExamples = mExampleList.size() - newPage * EXAMPLES_PER_PAGE;
973       int rowPos = (remainingExamples >= EXAMPLES_PER_PAGE) ? ROWS_PER_PAGE - 1 : ( (remainingExamples % EXAMPLES_PER_PAGE + EXAMPLES_PER_ROW) / EXAMPLES_PER_ROW - 1 );
974       int colPos = remainingExamples >= EXAMPLES_PER_PAGE ? EXAMPLES_PER_ROW - 1 : ( remainingExamples % EXAMPLES_PER_PAGE - rowPos * EXAMPLES_PER_ROW - 1 );
975
976       // Move the focus to the last tile in the new page.
977       nextFocusActor = mPages[newPage].GetChildAt(colPos * EXAMPLES_PER_ROW + rowPos);
978     }
979     else
980     {
981       // Move the focus to the first tile in the new page.
982       nextFocusActor = mPages[newPage].GetChildAt(0);
983     }
984   }
985
986   return nextFocusActor;
987 }
988
989 void DaliTableView::OnFocusedActorActivated( Dali::Actor activatedActor )
990 {
991   if(activatedActor)
992   {
993     mPressedActor = activatedActor;
994
995     // Activate the current focused actor;
996     TouchEvent touchEventUp;
997     touchEventUp.points.push_back( TouchPoint ( 0, TouchPoint::Up, 0.0f, 0.0f ) );
998     OnTilePressed(mPressedActor, touchEventUp);
999   }
1000 }
1001
1002 bool DaliTableView::OnTileHovered( Actor actor, const HoverEvent& event )
1003 {
1004   KeyboardFocusManager::Get().SetCurrentFocusActor( actor );
1005   return true;
1006 }
1007
1008