1 #ifndef __DALI_INTERNAL_CUSTOM_OBJECT_H__
2 #define __DALI_INTERNAL_CUSTOM_OBJECT_H__
5 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/internal/event/common/object-impl.h>
35 class CustomObject : public Object
40 * Create a new custom object.
41 * @return A pointer to the newly allocated object.
43 static CustomObject* New();
46 * @copydoc Dali::Internal::Object::GetSceneObject()
48 virtual const SceneGraph::PropertyOwner* GetSceneObject() const;
51 * @copydoc Dali::Internal::Object::GetSceneObjectAnimatableProperty()
53 virtual const SceneGraph::PropertyBase* GetSceneObjectAnimatableProperty( Property::Index index ) const;
56 * @copydoc Dali::Internal::Object::GetSceneObjectInputProperty()
58 virtual const PropertyInputImpl* GetSceneObjectInputProperty( Property::Index index ) const;
61 * @copydoc Dali::Internal::Object::GetDefaultPropertyCount()
63 virtual unsigned int GetDefaultPropertyCount() const;
66 * @copydoc Dali::Internal::Object::GetDefaultPropertyIndices()
68 virtual void GetDefaultPropertyIndices( Property::IndexContainer& indices ) const;
71 * @copydoc Dali::Internal::Object::GetDefaultPropertyName()
73 virtual const char* GetDefaultPropertyName(Property::Index index) const;
76 * @copydoc Dali::Internal::Object::GetDefaultPropertyIndex()
78 virtual Property::Index GetDefaultPropertyIndex(const std::string& name) const;
81 * @copydoc Dali::Internal::Object::IsDefaultPropertyWritable()
83 virtual bool IsDefaultPropertyWritable(Property::Index index) const;
86 * @copydoc Dali::Internal::Object::IsDefaultPropertyAnimatable()
88 virtual bool IsDefaultPropertyAnimatable(Property::Index index) const;
91 * @copydoc Dali::Internal::Object::IsDefaultPropertyAConstraintInput()
93 virtual bool IsDefaultPropertyAConstraintInput( Property::Index index ) const;
96 * @copydoc Dali::Internal::Object::GetDefaultPropertyType()
98 virtual Property::Type GetDefaultPropertyType(Property::Index index) const;
101 * @copydoc Dali::Internal::Object::SetDefaultProperty()
103 virtual void SetDefaultProperty(Property::Index index, const Property::Value& propertyValue);
106 * @copydoc Dali::Internal::Object::GetDefaultProperty()
108 virtual Property::Value GetDefaultProperty( Property::Index index ) const;
111 * @copydoc Dali::Internal::Object::GetDefaultPropertyCurrentValue()
113 virtual Property::Value GetDefaultPropertyCurrentValue( Property::Index index ) const;
118 * A reference counted object may only be deleted by calling Unreference()
120 virtual ~CustomObject();
123 * Private constructor; see also CustomObject::New()
128 CustomObject(const CustomObject&);
131 CustomObject& operator=(const CustomObject& rhs);
135 SceneGraph::PropertyOwner* mUpdateObject;
138 } // namespace Internal
142 #endif // __DALI_INTERNAL_CUSTOM_OBJECT_H__