a0a29b0688b5dbd7166f2318d19a0c38d3cd6529
[platform/core/uifw/dali-toolkit.git] / optional / dali-toolkit / public-api / controls / view / view.h
1 #ifndef __DALI_TOOLKIT_VIEW_H__
2 #define __DALI_TOOLKIT_VIEW_H__
3
4 /*
5  * Copyright (c) 2014 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/actors/image-actor.h>
23 #include <dali/public-api/adaptor-framework/orientation.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/public-api/controls/control.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal DALI_INTERNAL
35 {
36 // Forward declarations
37 class View;
38 }
39
40 /**
41  * View provides a container where different Dali::Layer instances and a background could be added. It
42  * also provides a View::OrientationChanged() method which could be connected to the Dali::Orientation::SignalChange() signal.
43  * This method rotates all layers accordingly with the given orientation, it emits an OrientationAnimationStartsSignal signal just before the rotation animation starts.
44  *
45  * By default view anchor point and parent origin are centered, the size is full screen and is got directly from the Dali::Stage. However, by passing \e false to the
46  * Toolkit::View::New() method a custom size could be specified, and after initialization, anchor point and parent origin could be updated.
47  *
48  * If a background is set, a background layer will be created and dropped to the bottom.
49  *
50  * Use example (application is a Dali::Application object):
51  * \code{.cpp}
52  * Stage stage = Stage::GetCurrent();
53  *
54  * // Create default View. By default it gets the stage size.
55  * Toolkit::View view = Toolkit::View::New();
56  *
57  * // Add the view to the stage before setting the background.
58  * stage.Add( view );
59  *
60  * // Set background image. BACKGROUND_IMAGE is a string with the background image file path.
61  * Image backgroundImage = Image::New( BACKGROUND_IMAGE );
62  * ImageActor backgroundImageActor = ImageActor::New( backgroundImage );
63  * mView.SetBackground( backgroundImageActor );
64  *
65  * // Connects the orientation signal with the View::OrientationChanged method.
66  * application.GetOrientation().ChangedSignal().Connect( &view, &Toolkit::View::OrientationChanged );
67  *
68  * // Create a content layer.
69  * Layer contentLayer = Layer::New();
70  * contentLayer.SetAnchorPoint( AnchorPoint::CENTER );
71  * contentLayer.SetParentOrigin( ParentOrigin::CENTER );
72  * contentLayer.ApplyConstraint( ParentConstraint::Size::New( ParentSize() ) );
73  * view.AddContentLayer( contentLayer );
74  * \endcode
75  */
76 class DALI_IMPORT_API View : public Control
77 {
78 public:
79   //Signal Names
80   static const char* const SIGNAL_ORIENTATION_ANIMATION_START;
81
82 public:
83
84   /**
85    * Create a View handle; this can be initialised with View::New()
86    * Calling member functions with an uninitialised handle is not allowed.
87    */
88   View();
89
90   /**
91    * Copy constructor. Creates another handle that points to the same real object
92    * @param handle to copy from
93    */
94   View( const View& handle );
95
96   /**
97    * Assignment operator. Changes this handle to point to another real object
98    */
99   View& operator=( const View& handle );
100
101   /**
102    * @brief Destructor
103    *
104    * This is non-virtual since derived Handle types must not contain data or virtual methods.
105    */
106   ~View();
107
108   /**
109    * Create an initialized View.
110    * @param fullscreen If true, the view's size is going to be set with the Dali::Stage size. Otherwise a size must be provided. By default fullscreen is set to true.
111    * @return A handle to a newly allocated Dali resource.
112    */
113   static View New( bool fullscreen = true );
114
115   /**
116    * Downcast an Object handle to View. If handle points to a View the
117    * downcast produces valid handle. If not the returned handle is left uninitialized.
118    * @param[in] handle Handle to an object
119    * @return handle to a View or an uninitialized handle
120    */
121   static View DownCast( BaseHandle handle );
122
123   /**
124    * Returns a content layer.
125    * @param index to the layer container.
126    * @return A Layer handle if it exists, otherwise it returns an uninitialized handle.
127    */
128   Layer GetContentLayer( unsigned int index ) const;
129
130   /**
131    * Adds a new layer in the view.
132    * @pre layer must be initialized.
133    * @param layer A Layer handle.
134    * @return the an index that can be used to access the layer stores in the view.
135    */
136   unsigned int AddContentLayer( Layer layer );
137
138   /**
139    * Removes a layer from the view.
140    * @param layer The layer to be removed.
141    */
142   void RemoveContentLayer( Layer layer );
143
144   /**
145    * Returns the background layer.
146    * @return the background layer or an empty handle if any background has been set before.
147    */
148   Layer GetBackgroundLayer() const;
149
150   /**
151    * Sets a background image.
152    *
153    * It creates a background layer the first time this method is called and it is dropped to the bottom.
154    * Any previous set background will be replaced by the new one.
155    *
156    * @pre View must be on stage before calling SetBackground.
157    * @param image An image actor.
158    */
159   void SetBackground( ImageActor image );
160
161   /**
162    * Sets the angle values for portrait, landscape, portrait inverse and landscape inverse.
163    *
164    * These angles are used to rotate the views.
165    * By default, orientation angles are initialized as follows: portrait 0, landscape 90, portrait inverse 180, landscape inverse 270.
166    *
167    * @param portrait angle in degrees.
168    * @param landscale angle in degrees.
169    * @param portraitInverse angle in degrees.
170    * @param landscapeInverse angle in degrees.
171    */
172   void SetOrientationFunction( Degree portrait, Degree landscale, Degree portraitInverse, Degree landscapeInverse );
173
174   /**
175    * It rotates all layers to the new given orientation.
176    *
177    * @param orientation The new orientation.
178    */
179   void OrientationChanged( Orientation orientation );
180
181   /**
182    * Enables or disables the view's rotation when device orientation changes.
183    * @param enabled Whether auto-rotate should be enabled or disabled. By default is enabled.
184    */
185   void SetAutoRotate( bool enabled );
186
187 public: //Signals
188
189   // Orientation change animation starts.
190   typedef SignalV2< void ( View, Animation&, const Orientation& ) > OrientationAnimationStartedSignalV2;
191
192   /**
193    * Signal emitted just before the rotate animation starts when the device orientation changes.
194    */
195   OrientationAnimationStartedSignalV2& OrientationAnimationStartedSignal();
196
197 public: // Not intended for application developers
198
199   /**
200    * Creates a handle using the Toolkit::Internal implementation.
201    * @param[in]  implementation  The Control implementation.
202    */
203   DALI_INTERNAL View( Internal::View& implementation );
204
205   /**
206    * Allows the creation of this Control from an Internal::CustomActor pointer.
207    * @param[in]  internal  A pointer to the internal CustomActor.
208    */
209   explicit DALI_INTERNAL View( Dali::Internal::CustomActor* internal );
210 };
211
212 } // namespace Toolkit
213
214 } // namespace Dali
215
216 #endif // __DALI_TOOLKIT_VIEW_H__