(Vector) Reset the current frame when stopped
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / page-turn-view / page-turn-landscape-view-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_PAGE_TURN_LANDSCAPE_VIEW_IMPL_H__
2 #define __DALI_TOOLKIT_INTERNAL_PAGE_TURN_LANDSCAPE_VIEW_IMPL_H__
3
4 /*
5  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/devel-api/controls/page-turn-view/page-turn-landscape-view.h>
23 #include <dali-toolkit/internal/controls/page-turn-view/page-turn-view-impl.h>
24
25 namespace Dali
26 {
27
28 namespace Toolkit
29 {
30
31 namespace Internal
32 {
33
34 class PageTurnLandscapeView : public PageTurnView
35 {
36 public:
37
38   /**
39    * @copydoc Toolkit::PageTurnLandscapeView::New( PageFactory&, const Vector2& )
40    */
41   static Toolkit::PageTurnLandscapeView New( PageFactory& pageFactory, const Vector2& pageSize );
42
43 protected:
44   /**
45    * Constructor.
46    * It initializes the PageTurnPortraitView members
47    * @param[in] pageFactory The factory which provides image to PageTurnView as the page content.
48    * @param[in] pageSize The size of the page
49    */
50   PageTurnLandscapeView( PageFactory& pageFactory, const Vector2& pageSize );
51
52   /**
53    * A reference counted object may only be deleted by calling Unreference()
54    */
55   virtual ~PageTurnLandscapeView();
56
57 protected: // From PageTurnView
58
59   /**
60    * @copydoc PageTurnView::OnPageTurnViewInitialize
61    */
62   virtual void OnPageTurnViewInitialize();
63
64   /**
65    * @copydoc PageTurnView::OnAddPage
66    */
67   virtual void OnAddPage( Actor newPage, bool isLeftSide );
68
69   /**
70    * @copydoc PageTurnView::SetPanPosition
71    */
72   virtual Vector2 SetPanPosition( const Vector2& gesturePosition );
73
74   /**
75    * @copydoc PageTurnView::SetPanActor
76    */
77   virtual void SetPanActor( const Vector2& panPosition );
78
79 private:
80
81   //Undefined
82   PageTurnLandscapeView( const PageTurnLandscapeView& );
83
84   //undefined
85   PageTurnLandscapeView& operator=(const PageTurnLandscapeView& rhs);
86
87 };
88
89 } // namespace Internal
90
91 } // namespace Toolkit
92
93 } // namespace Dali
94 #endif /* __DALI_TOOLKIT_INTERNAL_PAGE_TURN_LANDSCAPE_VIEW_IMPL_H__ */