Conversion to Apache 2.0 license
[platform/core/uifw/dali-toolkit.git] / capi / dali-toolkit / public-api / controls / cluster / cluster-style.h
index fccedc8..05ea5d2 100644 (file)
@@ -1,24 +1,25 @@
 #ifndef __DALI_TOOLKIT_CLUSTER_STYLE_H__
 #define __DALI_TOOLKIT_CLUSTER_STYLE_H__
 
-//
-// Copyright (c) 2014 Samsung Electronics Co., Ltd.
-//
-// Licensed under the Flora License, Version 1.0 (the License);
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://floralicense.org/license/
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an AS IS BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
+/*
+ * Copyright (c) 2014 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.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
 
 /**
- * @addtogroup CAPI_DALI_FRAMEWORK
+ * @addtogroup CAPI_DALI_TOOLKIT_CLUSTER_MODULE
  * @{
  */
 
@@ -43,26 +44,27 @@ class ClusterStyleRandom;
 
 class ClusterStyle;
 
-typedef IntrusivePtr<ClusterStyle> ClusterStylePtr;
+typedef IntrusivePtr<ClusterStyle> ClusterStylePtr; ///< Pointer to a Dali::Toolkit::ClusterStyle object
 
 /**
- * A ClusterStyle describes the constraints, which are imposed on the child actors in the cluster.
+ * @brief A ClusterStyle describes the constraints which are imposed on the child actors in the cluster.
  */
 class ClusterStyle : public Dali::BaseHandle
 {
 public:
 
-  static const unsigned int UNLIMITED_CHILDREN;
+  static const unsigned int UNLIMITED_CHILDREN; ///< Constant that represents an unlimited number of children.
 
 public:
 
   /**
-   * Virtual destructor.
+   * @brief Virtual destructor.
    */
   virtual ~ClusterStyle();
 
   /**
-   * Query the maximum number of children this Style can handle.
+   * @brief Query the maximum number of children this Style can handle.
+   *
    * If return value is UNLIMITED_CHILDREN, then this style has no
    * limit.
    * @return The maximum number of children.
@@ -70,7 +72,7 @@ public:
   unsigned int GetMaximumNumberOfChildren() const;
 
   /**
-   * Applies style (position) to child actor over a specified time duration.
+   * @brief Applies style (position) to child actor over a specified time duration.
    *
    * @param[in] child The child actor to apply
    * @param[in] index The style position index for the actor to transform to.
@@ -80,7 +82,8 @@ public:
   void ApplyStyle(Actor child, unsigned int index, AlphaFunction alpha, const TimePeriod& durationSeconds);
 
   /**
-   * Applies style to background actor over a specified time duration.
+   * @brief Applies style to background actor over a specified time duration.
+   *
    * @param[in] background The background actor to apply
    * @param[in] alpha The alpha function to use.
    * @param[in] durationSeconds The time period to apply this style.
@@ -88,7 +91,8 @@ public:
   void ApplyStyleToBackground(Actor background, AlphaFunction alpha, const TimePeriod& durationSeconds);
 
   /**
-   * Applies style to title actor over a specified time duration.
+   * @brief Applies style to title actor over a specified time duration.
+   *
    * @param[in] title The title actor to apply
    * @param[in] alpha The alpha function to use.
    * @param[in] durationSeconds The time period to apply this style.
@@ -98,67 +102,73 @@ public:
 protected:
 
   /**
-   * Create a new ClusterStyle; Only derived versions are instantiatable.
+   * @brief Create a new ClusterStyle; Only derived versions are instantiatable.
    */
   ClusterStyle();
 
 public: // Not intended for application developers
 
   /**
-   * This constructor is used by Dali New() methods
+   * @brief This constructor is used by Dali New() methods.
+   *
    * @param [in] internal A pointer to a newly allocated Dali resource
    */
   ClusterStyle(Internal::ClusterStyle* internal);
 };
 
 /**
- * A ClusterStyle describes the constraints, which are imposed on the child actors in the cluster.
+ * @brief A ClusterStyle describes the constraints, which are imposed on the child actors in the cluster.
  */
 class ClusterStyleStandard : public ClusterStyle
 {
 public:
 
+  /**
+   * @brief Cluster Style type.
+   */
   enum StyleType
   {
-    ClusterStyle1,
-    ClusterStyle2,
-    ClusterStyle3,
-    ClusterStyle4,
-    TotalClusterStyles
+    ClusterStyle1,     ///< Style number 1
+    ClusterStyle2,     ///< Style number 2
+    ClusterStyle3,     ///< Style number 3
+    ClusterStyle4,     ///< Style number 4
+    TotalClusterStyles ///< The number of styles
   };
 
 public:
 
   /**
-   * Create an initialized style
+   * @brief Create an initialized style.
    */
   static ClusterStyleStandard New(StyleType style);
 
 public: // Not intended for application developers
 
   /**
-   * This constructor is used by Dali New() methods
+   * @brief This constructor is used by Dali New() methods.
+   *
    * @param [in] internal A pointer to a newly allocated Dali resource
    */
   ClusterStyleStandard(Internal::ClusterStyle* internal);
 };
 
 /**
- * A ClusterStyle describes the constraints, which are imposed on the child actors in the cluster.
+ * @brief A ClusterStyle describes the constraints, which are imposed on the child actors in the cluster.
  */
 class ClusterStyleRandom : public ClusterStyle
 {
 public:
 
   /**
-   * Create an initialized style
+   * @brief Create an initialized style.
    */
   static ClusterStyleRandom New();
 
 public: // Not intended for application developers
 
   /**
-   * This constructor is used by Dali New() methods
+   * @brief This constructor is used by Dali New() methods.
+   *
    * @param [in] internal A pointer to a newly allocated Dali resource
    */
   ClusterStyleRandom(Internal::ClusterStyle* internal);