License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / event / animation / constraint-source-impl.h
1 #ifndef __DALI_INTERNAL_CONSTRAINT_SOURCE_H__
2 #define __DALI_INTERNAL_CONSTRAINT_SOURCE_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/common/vector-wrapper.h>
23 #include <dali/public-api/animation/constraint-source.h>
24 #include <dali/internal/event/common/proxy-object.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 struct Source;
33 typedef std::vector<Source> SourceContainer;
34 typedef SourceContainer::iterator SourceIter;
35
36 /**
37  * The source of an input property for a constraint.
38  */
39 struct Source
40 {
41   /**
42    * Default constructor
43    */
44   Source()
45   : sourceType( OBJECT_PROPERTY ),
46     propertyIndex( Property::INVALID_INDEX ),
47     object( NULL )
48   {
49   }
50
51   /**
52    * Create a constraint source from a public handle.
53    * The internal proxy object is not referenced by the Internal::Source; therefore
54    * the owner of this object is responsible for observing the ProxyObject's lifetime.
55    */
56   Source( Dali::ConstraintSource& source )
57   : sourceType( source.sourceType ),
58     propertyIndex( source.propertyIndex ),
59     object( NULL )
60   {
61     if ( source.object )
62     {
63       object = &dynamic_cast< ProxyObject& > ( GetImplementation(source.object) );
64     }
65   }
66
67   SourceType sourceType; ///< The source type
68
69   Property::Index propertyIndex; ///< The index of the source property
70
71   ProxyObject* object; ///< The target object; only valid if sourceType == OBJECT_PROPERTY
72 };
73
74 } // namespace Internal
75
76 } // namespace Dali
77
78 #endif // __DALI_INTERNAL_CONSTRAINT_SOURCE_H__