Merge "Remove obsolete and non functional SizeChanged signal from actor" into tizen
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / scrollable / scroll-view / scroll-view-constraints.h
1 #ifndef __DALI_TOOLKIT_SCROLL_VIEW_CONSTRAINTS_H__
2 #define __DALI_TOOLKIT_SCROLL_VIEW_CONSTRAINTS_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
23 // INTERNAL INCLUDES
24
25 namespace Dali
26 {
27
28 struct Vector2;
29 struct Vector3;
30 struct Vector4;
31 class PropertyInput;
32
33 namespace Toolkit
34 {
35
36 // Constraints ////////////////////////////////////////////////////////////////////////////////////
37
38 /**
39  * Useful constraints to apply to a ScrollView.
40  */
41
42 /**
43  * Move Actor constraint.
44  *
45  * Moves an Actor in accordance to scroll position.
46  */
47 DALI_IMPORT_API Vector3 MoveActorConstraint(const Vector3&    current,
48                                            const PropertyInput& scrollPositionProperty);
49
50 /**
51  * Wrap Actor constraint.
52  *
53  * Wraps an Actors position in accordance to min/max bounds of domain.
54  */
55 DALI_IMPORT_API Vector3 WrapActorConstraint(const Vector3&    current,
56                                             const PropertyInput& actorScaleProperty,
57                                             const PropertyInput& actorAnchorPointProperty,
58                                             const PropertyInput& actorSizeProperty,
59                                             const PropertyInput& scrollPositionMin,
60                                             const PropertyInput& scrollPositionMax,
61                                             const PropertyInput& scrollWrap);
62
63 } // namespace Toolkit
64
65 } // namespace Dali
66
67 #endif // __DALI_TOOLKIT_SCROLL_VIEW_CONSTRAINTS_H__