Merge "(HitTest) Ensure non-renderable actors are hittable even if outside the stenci...
[platform/core/uifw/dali-core.git] / dali / public-api / animation / active-constraint.h
1 #ifndef __DALI_ACTIVE_CONSTRAINT_H__
2 #define __DALI_ACTIVE_CONSTRAINT_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 // INTERNAL INCLUDES
22 #include <dali/public-api/animation/active-constraint-declarations.h>
23 #include <dali/public-api/object/any.h>
24 #include <dali/public-api/object/handle.h>
25 #include <dali/public-api/object/property.h>
26
27 namespace Dali DALI_IMPORT_API
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 class ActiveConstraintBase;
33 }
34
35 /**
36  * @brief A constraint which is being applied to an object.
37  */
38 class DALI_IMPORT_API ActiveConstraint : public Handle
39 {
40 public:
41
42   // Default Properties
43   static const Property::Index WEIGHT; ///< Property 0, name "weight", type FLOAT
44
45   static const float FINAL_WEIGHT;   ///< 1.0f means the constraint is fully-applied, unless weight is still being animated
46   static const float DEFAULT_WEIGHT; ///< 1.0f
47
48   //Signal Names
49   static const char* const SIGNAL_APPLIED; ///< name "applied"
50
51   /**
52    * @brief Create an uninitialized Constraint; this can be initialized with Constraint::New().
53    *
54    * Calling member functions with an uninitialized Dali::Object is not allowed.
55    */
56   ActiveConstraint();
57
58   /**
59    * @brief Dali::ActiveConstraint is intended as a base class
60    *
61    * This is non-virtual since derived Handle types must not contain data or virtual methods.
62    */
63   ~ActiveConstraint();
64
65   /**
66    * @copydoc Dali::BaseHandle::operator=
67    */
68   using BaseHandle::operator=;
69
70   /**
71    * @brief Retrieve the object which this constraint is targeting.
72    *
73    * @return The target object.
74    */
75   Handle GetTargetObject();
76
77   /**
78    * @brief Retrieve the property which this constraint is targeting.
79    *
80    * @return The target property.
81    */
82   Property::Index GetTargetProperty();
83
84   /**
85    * @brief Set the weight of the constraint; this is a value clamped between 0.
86    * 0f and 1.0f.
87    * The default is 1.0f.
88    * 0.0f means the constraint has no effect, and 1.0f means the constraint is fully-applied.
89    * @note This is an asynchronous method; the value written may not match a value subsequently read with GetCurrentWeight().
90    * @param [in] weight The weight.
91    */
92   void SetWeight( float weight );
93
94   /**
95    * @brief Retrieve the current weight of the constraint.
96    *
97    * @return The current weight.
98    */
99   float GetCurrentWeight() const;
100
101   /**
102    * @brief This signal is emitted after the apply-time of the constraint has expired.
103    *
104    * @note A non-zero apply-time must have been set using Constraint::SetApplyTime().
105    * @return A signal object to Connect() with.
106    */
107   ActiveConstraintSignalV2& AppliedSignal();
108
109 public: // Not intended for use by Application developers
110
111   /**
112    * @brief This constructor is used by Dali New() methods.
113    *
114    * @param [in] constraint A pointer to a newly allocated Dali resource
115    */
116   explicit DALI_INTERNAL ActiveConstraint( Internal::ActiveConstraintBase* constraint );
117 };
118
119 } // namespace Dali
120
121 #endif // __DALI_ACTIVE_CONSTRAINT_H__