Revert "[3.0] Exclude internal tag module in Public API reference"
[platform/core/uifw/dali-core.git] / dali / public-api / object / type-info.h
index 52c04c6..fbdcfab 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_TYPE_INFO_H__
 
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2015 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.
 
 // INTERNAL INCLUDES
 #include <dali/public-api/object/base-handle.h>
+#include <dali/public-api/common/vector-wrapper.h>
 
-namespace Dali DALI_IMPORT_API
+namespace Dali
 {
+/**
+ * @addtogroup dali_core_object
+ * @{
+ */
 
 class ConnectionTrackerInterface;
 class FunctorDelegate;
@@ -38,17 +43,19 @@ namespace Internal DALI_INTERNAL
  * their actions and signals.
  *
  * See TypeRegistry for methods of type registration and TypeInfo retrieval.
+ * @SINCE_1_0.0
  */
-class TypeInfo : public BaseHandle
+class DALI_IMPORT_API TypeInfo : public BaseHandle
 {
 public:
-  typedef BaseHandle (*CreateFunction)(); ///< Function signature for creating an instance of the associated object type.
+  typedef BaseHandle (*CreateFunction)(); ///< Function signature for creating an instance of the associated object type. @SINCE_1_0.0
 
-  typedef bool (*ActionFunction)(BaseObject*, const std::string&, const std::vector<Property::Value>&); ///< Function signature for creating scriptable actions
+  typedef bool (*ActionFunction)(BaseObject*, const std::string&, const Property::Map&); ///< Function signature for creating scriptable actions @SINCE_1_0.0
 
   /**
    * @brief Connects a callback function with the object's signals.
    *
+   * @SINCE_1_0.0
    * @param[in] object The object providing the signal.
    * @param[in] tracker Used to disconnect the signal.
    * @param[in] signalName The signal to connect to.
@@ -56,92 +63,142 @@ public:
    * @return True if the signal was connected.
    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
    */
-  typedef bool (*SignalConnectorFunctionV2)(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
+  typedef bool (*SignalConnectorFunction)(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
 
   /**
    * @brief Callback to set an event-thread only property.
    *
-   * @see PropertyRegistration.
+   * @SINCE_1_0.0
    * @param[in] object The object whose property should be set.
    * @param[in] index The index of the property being set.
    * @param[in] value The new value of the property for the object specified.
+   * @see PropertyRegistration.
    */
   typedef void (*SetPropertyFunction)( BaseObject* object, Property::Index index, const Property::Value& value );
 
   /**
    * @brief Callback to get the value of an event-thread only property.
    *
-   * @see PropertyRegistration.
+   * @SINCE_1_0.0
    * @param[in] object The object whose property value is required.
    * @param[in] index The index of the property required.
    * @return The current value of the property for the object specified.
+   * @see PropertyRegistration.
    */
   typedef Property::Value (*GetPropertyFunction)( BaseObject* object, Property::Index index );
 
-  typedef std::vector<std::string> NameContainer; ///< Container of names for signals and actions
-
   /**
    * @brief Allows the creation of an empty TypeInfo handle.
+   * @SINCE_1_0.0
    */
   TypeInfo();
 
   /**
-   * @brief destructor.
+   * @brief Destructor
+   *
+   * This is non-virtual since derived Handle types must not contain data or virtual methods.
+   * @SINCE_1_0.0
    */
-  virtual ~TypeInfo();
+  ~TypeInfo();
 
   /**
-   * @copydoc Dali::BaseHandle::operator=
+   * @brief This copy constructor is required for (smart) pointer semantics.
+   *
+   * @SINCE_1_0.0
+   * @param [in] handle A reference to the copied handle
    */
-  using BaseHandle::operator=;
+  TypeInfo(const TypeInfo& handle);
+
+  /**
+   * @brief This assignment operator is required for (smart) pointer semantics.
+   *
+   * @SINCE_1_0.0
+   * @param [in] rhs  A reference to the copied handle
+   * @return A reference to this
+   */
+  TypeInfo& operator=(const TypeInfo& rhs);
 
   /**
    * @brief Retrieve the type name for this type.
    *
+   * @SINCE_1_0.0
    * @return string name
    */
-  const std::string& GetName();
+  const std::string& GetName() const;
 
   /**
    * @brief Retrieve the base type name for this type.
    *
+   * @SINCE_1_0.0
    * @return string of base name
    */
-  const std::string& GetBaseName();
+  const std::string& GetBaseName() const;
 
   /**
    * @brief Create an object from this type.
    *
+   * @SINCE_1_0.0
    * @return the BaseHandle for the newly created object
    */
-  BaseHandle CreateInstance();
+  BaseHandle CreateInstance() const;
 
   /**
    * @brief Retrieve the creator function for this type.
    *
+   * @SINCE_1_0.0
    * @return the creator function
    */
-  CreateFunction GetCreator();
+  CreateFunction GetCreator() const;
+
+  /**
+   * @brief Retrieve the number of actions for this type.
+   *
+   * @SINCE_1_0.0
+   * @return The count
+   */
+  size_t GetActionCount() const;
+
+  /**
+   * @brief Retrieve the action name for the index.
+   *
+   * @SINCE_1_0.0
+   * @param[in] index Index to lookup
+   * @return action name or empty string where index is invalid
+   */
+  std::string GetActionName(size_t index);
 
   /**
-   * @brief Retrieve the actions for this type.
+   * @brief Retrieve the number of signals for this type.
    *
-   * @return Container of action names
+   * @SINCE_1_0.0
+   * @return The count
    */
-  NameContainer GetActions();
+  size_t GetSignalCount() const;
 
   /**
-   * @brief Retrieve the signals for this type.
+   * @brief Retrieve the signal name for the index.
    *
-   * @return Container of signal names
+   * @SINCE_1_0.0
+   * @param[in] index Index to lookup
+   * @return signal name or empty string where index is invalid
    */
-  NameContainer GetSignals();
+  std::string GetSignalName(size_t index);
+
+  /**
+   * @brief Retrieve the number of event side type registered properties for this type.
+   *
+   * This count does not include all properties
+   * @SINCE_1_0.0
+   * @return The count
+   */
+  size_t GetPropertyCount() const;
 
   // Properties
 
   /**
    * @brief Retrieve all the property indices for this type.
    *
+   * @SINCE_1_0.0
    * @param[out] indices Container of property indices
    * @note The container will be cleared
    */
@@ -150,8 +207,11 @@ public:
   /**
    * @brief Given a property index, retrieve the property name associated with it.
    *
+   * @SINCE_1_0.0
    * @param[in] index The property index.
    * @return The name of the property at the given index.
+   * @exception DaliException If index is not valid.
+   *
    */
   const std::string& GetPropertyName( Property::Index index ) const;
 
@@ -160,12 +220,16 @@ public: // Not intended for application developers
   /**
    * @brief This constructor is used by Dali Get() method.
    *
+   * @SINCE_1_0.0
    * @param [in] typeInfo A pointer to a Dali resource
    */
   explicit DALI_INTERNAL TypeInfo(Internal::TypeInfo* typeInfo);
 
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // __DALI_TYPE_INFO_H__