(SuperBlurView) Ensure the image can be set as a property 04/20304/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Wed, 23 Apr 2014 19:08:32 +0000 (20:08 +0100)
committerDavid Steele <david.steele@partner.samsung.com>
Thu, 1 May 2014 15:01:35 +0000 (16:01 +0100)
[Problem]  Cannot set the image on super-blur-view from scripting.
[Cause]    Image is not a property.
[Solution] Make image a property.

Change-Id: Ifc9b5996fd98f365b1ff36322021b6013ea445e4
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
capi/dali-toolkit/public-api/controls/super-blur-view/super-blur-view.h
dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp
dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.h

index 2a6b748..1533654 100644 (file)
@@ -59,6 +59,10 @@ class SuperBlurView;
 class SuperBlurView : public Control
 {
 public:
 class SuperBlurView : public Control
 {
 public:
+
+  // Properties
+  static const Property::Index PROPERTY_IMAGE;     ///< name "image",    @see SetImage,    type MAP
+
   /**
    * @brief Signal type for notifications.
    */
   /**
    * @brief Signal type for notifications.
    */
index fa98392..17f2b55 100644 (file)
@@ -16,6 +16,7 @@
 
 //EXTERNAL INCLUDES
 #include <cmath>
 
 //EXTERNAL INCLUDES
 #include <cmath>
+#include <integration-api/debug.h>
 
 // CLASS HEADER
 #include "super-blur-view-impl.h"
 
 // CLASS HEADER
 #include "super-blur-view-impl.h"
@@ -25,9 +26,6 @@ namespace //unnamed namespace
 
 using namespace Dali;
 
 
 using namespace Dali;
 
-//Type registration
-TypeRegistration mType( typeid(Toolkit::SuperBlurView), typeid(Toolkit::Control), NULL );
-
 //Todo: make these properties instead of constants
 const unsigned int GAUSSIAN_BLUR_DEFAULT_NUM_SAMPLES = 11;
 const unsigned int GAUSSIAN_BLUR_NUM_SAMPLES_INCREMENTATION = 10;
 //Todo: make these properties instead of constants
 const unsigned int GAUSSIAN_BLUR_DEFAULT_NUM_SAMPLES = 11;
 const unsigned int GAUSSIAN_BLUR_NUM_SAMPLES_INCREMENTATION = 10;
@@ -77,9 +75,27 @@ namespace Dali
 namespace Toolkit
 {
 
 namespace Toolkit
 {
 
+const Property::Index SuperBlurView::PROPERTY_IMAGE( Internal::SuperBlurView::SUPER_BLUR_VIEW_PROPERTY_START_INDEX );
+
 namespace Internal
 {
 
 namespace Internal
 {
 
+namespace
+{
+const unsigned int DEFAULT_BLUR_LEVEL(5u); ///< The default blur level when creating SuperBlurView from the type registry
+
+BaseHandle Create()
+{
+  return Toolkit::SuperBlurView::New( DEFAULT_BLUR_LEVEL );
+}
+
+// Type registration
+TypeRegistration typeRegistration( typeid(Toolkit::SuperBlurView), typeid(Toolkit::Control), Create );
+
+PropertyRegistration property1( typeRegistration, "image", Toolkit::SuperBlurView::PROPERTY_IMAGE,   Property::MAP, &SuperBlurView::SetProperty, &SuperBlurView::GetProperty );
+
+} // unnamed namespace
+
 SuperBlurView::SuperBlurView( unsigned int blurLevels )
 : ControlImpl( false ),
   mBlurLevels( blurLevels ),
 SuperBlurView::SuperBlurView( unsigned int blurLevels )
 : ControlImpl( false ),
   mBlurLevels( blurLevels ),
@@ -114,7 +130,7 @@ Toolkit::SuperBlurView SuperBlurView::New( unsigned int blurLevels )
 
 void SuperBlurView::OnInitialize()
 {
 
 void SuperBlurView::OnInitialize()
 {
-  mBlurStrengthPropertyIndex = Self().RegisterProperty( "BLUR_STRENGTH",0.f );
+  mBlurStrengthPropertyIndex = Self().RegisterProperty( "blur-strength",0.f );
 
   DALI_ASSERT_ALWAYS( mImageActors.size() == mBlurLevels+1 && "must synchronize the ImageActor group if blur levels got changed " );
   for(unsigned int i=0; i<=mBlurLevels;i++)
 
   DALI_ASSERT_ALWAYS( mImageActors.size() == mBlurLevels+1 && "must synchronize the ImageActor group if blur levels got changed " );
   for(unsigned int i=0; i<=mBlurLevels;i++)
@@ -251,6 +267,61 @@ void SuperBlurView::OnControlSizeSet( const Vector3& targetSize )
   }
 }
 
   }
 }
 
+void SuperBlurView::SetProperty( BaseObject* object, Property::Index propertyIndex, const Property::Value& value )
+{
+  Toolkit::SuperBlurView superBlurView = Toolkit::SuperBlurView::DownCast( Dali::BaseHandle( object ) );
+
+  if ( superBlurView )
+  {
+    SuperBlurView& superBlurViewImpl( GetImpl( superBlurView ) );
+
+    switch ( propertyIndex )
+    {
+      case Toolkit::SuperBlurView::PROPERTY_IMAGE:
+      {
+        Dali::Image image = Scripting::NewImage( value );
+        if ( image )
+        {
+          superBlurViewImpl.SetImage( image );
+        }
+        else
+        {
+          DALI_LOG_ERROR( "Cannot create image from property value\n" );
+        }
+        break;
+      }
+    }
+  }
+}
+
+Property::Value SuperBlurView::GetProperty( BaseObject* object, Property::Index propertyIndex )
+{
+  Property::Value value;
+
+  Toolkit::SuperBlurView pushButton = Toolkit::SuperBlurView::DownCast( Dali::BaseHandle( object ) );
+
+  if ( pushButton )
+  {
+    SuperBlurView& superBlurViewImpl( GetImpl( pushButton ) );
+
+    switch ( propertyIndex )
+    {
+      case Toolkit::SuperBlurView::PROPERTY_IMAGE:
+      {
+        Property::Map map;
+        if ( !superBlurViewImpl.mImageActors.empty() && superBlurViewImpl.mImageActors[0] )
+        {
+          Scripting::CreatePropertyMap( superBlurViewImpl.mImageActors[0], map );
+        }
+        value = Property::Value( map );
+        break;
+      }
+    }
+  }
+
+  return value;
+}
+
 } // namespace Internal
 
 } // namespace Toolkit
 } // namespace Internal
 
 } // namespace Toolkit
index 846451a..b5d35c5 100644 (file)
@@ -41,6 +41,15 @@ class SuperBlurView : public ControlImpl
 {
 public:
 
 {
 public:
 
+  // Properties
+  enum
+  {
+    SUPER_BLUR_VIEW_PROPERTY_START_INDEX = ControlImpl::CONTROL_PROPERTY_END_INDEX + 1,
+    SUPER_BLUR_VIEW_PROPERTY_END_INDEX = SUPER_BLUR_VIEW_PROPERTY_START_INDEX + 1000 ///< Reserving 1000 property indices
+  };
+
+public:
+
   /**
    * @copydoc Dali::Toolkit::SuperBlurView::New
    */
   /**
    * @copydoc Dali::Toolkit::SuperBlurView::New
    */
@@ -76,6 +85,24 @@ public:
    */
   Image GetBlurredImage( unsigned int level );
 
    */
   Image GetBlurredImage( unsigned int level );
 
+  // Properties
+
+  /**
+   * Called when a property of an object of this type is set.
+   * @param[in] object The object whose property is set.
+   * @param[in] index The property index.
+   * @param[in] value The new property value.
+   */
+  static void SetProperty( BaseObject* object, Property::Index propertyIndex, const Property::Value& value );
+
+  /**
+   * Called to retrieve a property of an object of this type.
+   * @param[in] object The object whose property is to be retrieved.
+   * @param[in] index The property index.
+   * @return The current value of the property.
+   */
+  static Property::Value GetProperty( BaseObject* object, Property::Index propertyIndex );
+
 protected:
 
   /**
 protected:
 
   /**