X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fevent%2Fcommon%2Ftype-registry-impl.h;h=47364f3a2ba1ad9695353d295568728f531e4097;hb=1b39757683e66e76781403f4a770442203b08f7f;hp=047a77efb9a350e37f7a127e61d8c4da7e84a921;hpb=27619bbc4c1d443e89a6cdd116e544f6d9657fa4;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/event/common/type-registry-impl.h b/dali/internal/event/common/type-registry-impl.h index 047a77e..47364f3 100644 --- a/dali/internal/event/common/type-registry-impl.h +++ b/dali/internal/event/common/type-registry-impl.h @@ -2,7 +2,7 @@ #define __DALI_INTERNAL_TYPE_REGISTRY_H__ /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ */ // INTERNAL INCLUDES -#include +#include #include #include #include @@ -56,9 +56,14 @@ public: Dali::TypeInfo GetTypeInfo( const std::type_info& registerType ); /* - * @copydoc Dali::TypeRegistry::GetTypeNames + * @copydoc Dali::TypeRegistry::GetTypeNameCount */ - Dali::TypeRegistry::NameContainer GetTypeNames() const; + size_t GetTypeNameCount() const; + + /* + * @copydoc Dali::TypeRegistry::GetTypeName + */ + std::string GetTypeName(size_t index) const; /* * Register a creation function under a unique name. @@ -83,12 +88,22 @@ public: Dali::TypeInfo::CreateFunction createInstance, bool callCreateOnInit ); /* + * Register a creation function under a unique name (used by C# Custom controls). + * @param [in] name The name type to be registered (must be unique) + * @param [in] baseTypeInfo Type info for its base class + * @param [in] createInstance Instance creation function + * @return true if the name could be registered. + */ + bool Register( const std::string& name, const std::type_info& baseTypeInfo, + Dali::CSharpTypeInfo::CreateFunction createInstance ); + + /* * Register a signal connector function to a type * @param [in] typeRegistration TypeRegistration object used to register the type * @param [in] name Signal name * @param [in] func Signal connector function */ - void RegisterSignal( TypeRegistration& typeRegistration, const std::string& name, Dali::TypeInfo::SignalConnectorFunctionV2 func ); + void RegisterSignal( TypeRegistration& typeRegistration, const std::string& name, Dali::TypeInfo::SignalConnectorFunction func ); /* * Register an action function to a type @@ -111,11 +126,65 @@ public: */ bool RegisterProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type, Dali::TypeInfo::SetPropertyFunction setFunc, Dali::TypeInfo::GetPropertyFunction getFunc ); + /** + * Register an event-thread only property with a type (used by C# Custom controls) + * @param [in] objectName name of the object used to register the type + * @param [in] name Property name + * @param [in] index Property index + * @param [in] type Property type + * @param [in] setFunc The function to set the property (Can be NULL). + * @param [in] getFunc The function to get the value of a property. + * @return true if registered + */ + bool RegisterProperty( const std::string& objectName, const std::string& name, Property::Index index, Property::Type type, Dali::CSharpTypeInfo::SetPropertyFunction setFunc, Dali::CSharpTypeInfo::GetPropertyFunction getFunc ); + + + /** + * Register a scene graph only property with a type + * @param [in] registered TypeRegistration object used to register the type + * @param [in] name Property name + * @param [in] index Property index + * @param [in] type Property type + * @return true if registered + */ + bool RegisterAnimatableProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type ); + + /** + * Register a scene graph only property with a default value + * @param [in] registered TypeRegistration object used to register the type + * @param [in] name Property name + * @param [in] index Property index + * @param [in] value Property default value + * @return true if registered + */ + bool RegisterAnimatableProperty( TypeRegistration& registered, const std::string& name, Property::Index index, const Property::Value& defaultValue ); + + /** + * Register a component of a scene graph only property that supports components (i.e. Vector2, Vector3 and Vector4) + * @param [in] registered TypeRegistration object used to register the type + * @param [in] name Component name + * @param [in] index Property index + * @param [in] baseIndex Base animatable property index + * @param [in] componentIndex Component index + * @return true if registered + */ + bool RegisterAnimatablePropertyComponent( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Index baseIndex, unsigned int componentIndex ); + + /** + * Register a event-thread only property with a type and a default value + * @param [in] registered TypeRegistration object used to register the type + * @param [in] name Property name + * @param [in] index Property index + * @param [in] type Property type + * @return true if registered + */ + bool RegisterChildProperty( TypeRegistration& registered, const std::string& name, Property::Index index, Property::Type type ); + /* * @copydoc Dali::Internal::TypeInfo::DoActionTo * Walks all base types until it finds a doer. */ - bool DoActionTo( BaseObject * const object, const std::string &actionName, const std::vector &properties); + bool DoActionTo( BaseObject * const object, const std::string &actionName, const Property::Map& properties); /** * @copydoc Dali::BaseHandle::ConnectSignal() @@ -145,13 +214,11 @@ public: private: /* - * Map from type name to TypeInfo + * Mapping from type name to TypeInfo */ - typedef std::map RegistryMap; - RegistryMap mRegistryLut; + std::vector< Dali::TypeInfo > mRegistryLut; - typedef std::vector InitFunctions; - InitFunctions mInitFunctions; + std::vector< Dali::TypeInfo::CreateFunction > mInitFunctions; private: TypeRegistry();