X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=optional%2Fdali-toolkit%2Finternal%2Fcontrols%2Fslider%2Fslider-impl.h;h=8da4de103f2bfed5fbcc1892c56018427224be57;hp=d97da6748ea31d5cdf26fc5b31f7700332c5c6e6;hb=23374ab802a79da0a932f825021e66d069b4442e;hpb=dbef36886581492c22608ec57915174c6751cbc8 diff --git a/optional/dali-toolkit/internal/controls/slider/slider-impl.h b/optional/dali-toolkit/internal/controls/slider/slider-impl.h index d97da67..8da4de1 100755 --- a/optional/dali-toolkit/internal/controls/slider/slider-impl.h +++ b/optional/dali-toolkit/internal/controls/slider/slider-impl.h @@ -112,7 +112,7 @@ public: * * @return The hit region */ - Vector2 GetHitRegion() const; + const Vector2& GetHitRegion() const; /** * Set backing region @@ -126,24 +126,17 @@ public: * * @return The backing region */ - Vector2 GetBackingRegion() const; + const Vector2& GetBackingRegion() const; /** - * Get backing scale9 border + * @brief Set the disable color. * - * @return The backing scale9 border + * @param[in] color The disable color. */ - Vector4 GetBackingScale9Border() const; + void SetDisableColor( const Vector4& color ); /** - * Get popup scale9 border - * - * @return The popup scale9 border - */ - Vector4 GetPopupScale9Border() const; - - /** - * Get disable color + * @brief Get disable color * * @return The disable color */ @@ -157,6 +150,13 @@ public: Vector4 GetPopupTextColor() const; /** + * Set the value precision to be used for numbers in the slider + * + * @param[in] precision The number of decimal places to use for printing numbers + */ + void SetValuePrecision( int precision ); + + /** * Get value precision * * @return The value precision @@ -168,7 +168,7 @@ public: * * @param[in] showPopup The show popup flag */ - void ShowPopup( bool showPopup ); + void SetShowPopup( bool showPopup ); /** * Get show value in popup @@ -182,7 +182,7 @@ public: * * @param[in] showValue The show value flag */ - void ShowValue( bool showValue ); + void SetShowValue( bool showValue ); /** * Get show value on handle @@ -206,6 +206,16 @@ public: bool IsEnabled() const; /** + * @brief Set the mark tolerance + * + * The tolerance is the percentage of the slider width for which snapping to + * marks occurs + * + * @param[in] tolerance The percentage of width for which to snap + */ + void SetMarkTolerance( float tolerance ); + + /** * Return the mark tolerance * * @return The tolerance set for snapping to marks @@ -242,6 +252,24 @@ public: static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor ); + // 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 index, 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: /** @@ -422,13 +450,6 @@ private: void CreateChildren(); /** - * Resize the hit area - * - * @param[in] size The new size of the hit area - */ - void ResizeHitRegion( const Vector2& size ); - - /** * Create value popup */ void AddPopup(); @@ -490,63 +511,70 @@ private: * * @param[in] imageName The name of the image to load and set */ - void CreateBackingImage( const std::string& imageName ); + void SetBackingImageName( const std::string& imageName ); /** - * Set the backing image to be a scale-9 image + * @brief Return the backing image file name. * - * @param[in] border The scale-9 border to use + * @return The backing image file name. */ - void SetBackingScale9( const Vector4& border ); + std::string GetBackingImageName(); /** - * Resize the backing region + * Create the image for the progress bar * - * @param[in] region The size of the region to set + * @param[in] imageName The name of the image to load and set */ - void ResizeBackingRegion( const Vector2& region ); + void SetProgressImageName( const std::string& imageName ); /** - * Size the backing region + * @brief Return the progress image name. * - * @param[in] region The size of the region to set + * @return The progress image name if it exists. */ - void SetBackingRegionSize( const Vector2& region ); + std::string GetProgressImageName(); /** - * Create the image for the progress bar + * @brief Create the image for the popup * * @param[in] imageName The name of the image to load and set */ - void CreateProgressImage( const std::string& imageName ); + void CreatePopupImage( const std::string& imageName ); /** - * Create the image for the popup + * @brief Set the popup name * - * @param[in] imageName The name of the image to load and set + * @param[in] imageName The name of the image to set */ - void CreatePopupImage( const std::string& imageName ); + void SetPopupImageName( const std::string& imageName ); /** - * Create the image for the popup arrow + * @brief Return the popup image name. * - * @param[in] imageName The name of the image to load and set + * @return The name of the popup image if it exists. */ - void CreatePopupArrowImage( const std::string& imageName ); + std::string GetPopupImageName(); /** - * Set the progress image to be a scale-9 image + * @brief Set the popup arrow image name * - * @param[in] border The scale-9 border to use + * @param[in] imageName The name of the image to set */ - void SetProgressScale9( const Vector4& border ); + void SetPopupArrowImageName( const std::string& imageName ); /** - * Set the popup image to be a scale-9 image + * @brief Return the popup arrow image name. * - * @param[in] border The scale-9 border to use + * @return The name of the popup image if it exists. */ - void SetPopupScale9( const Vector4& border ); + std::string GetPopupArrowImageName(); + + /** + * Create the image for the popup arrow + * + * @param[in] imageName The name of the image to load and set + */ + void CreatePopupArrowImage( const std::string& imageName ); /** * Set the size of the progress bar region @@ -560,7 +588,14 @@ private: * * @param[in] imageName The name of the image to load and set */ - void CreateHandleImage( const std::string& imageName ); + void SetHandleImageName( const std::string& imageName ); + + /** + * @brief Return the handle image name. + * + * @return The name of the image handle if it exists. + */ + std::string GetHandleImageName(); /** * Set the size of the handle region @@ -584,28 +619,28 @@ private: * * @param[in] color The new color */ - void UpdatePopupTextColor( const Vector4& color ); + void SetPopupTextColor( const Vector4& color ); /** * Set handle region * * @param[in] region The handle region */ - void UpdateHandleRegion( const Vector2& region ); + void SetHandleRegion( const Vector2& region ); /** * Get handle region * * @return The handle region */ - Vector2 GetHandleRegion() const; + const Vector2& GetHandleRegion() const; /** * Set the lower bound of the slider's value * * @param[in] bound The value to set for the lower bound */ - void UpdateLowerBound( float bound ); + void SetLowerBound( float bound ); /** * Get the lower bound of the slider's value @@ -619,7 +654,7 @@ private: * * @param[in] bound The value to set for the upper bound */ - void UpdateUpperBound( float bound ); + void SetUpperBound( float bound ); /** * Get the upper bound of the slider's value @@ -629,14 +664,6 @@ private: float GetUpperBound() const; private: - // From ControlImpl - - /** - * @copydoc Dali::CustomActorImpl::OnPropertySet() - */ - virtual void OnPropertySet( Property::Index index, Property::Value propertyValue ); - -private: // Undefined Slider( const Slider& ); @@ -671,38 +698,27 @@ private: MarkList mMarks; ///< List of discreet marks - // Properties - Property::Index mPropertyLowerBound; - Property::Index mPropertyUpperBound; - Property::Index mPropertyValue; - Property::Index mPropertyHitRegion; - Property::Index mPropertyBackingRegion; - Property::Index mPropertyHandleRegion; - - Property::Index mPropertyBackingImageName; - Property::Index mPropertyHandleImageName; - Property::Index mPropertyProgressImageName; - Property::Index mPropertyPopupImageName; - Property::Index mPropertyPopupArrowImageName; - - Property::Index mPropertyBackingScale9Border; - Property::Index mPropertyProgressScale9Border; - Property::Index mPropertyPopupScale9Border; + std::string mPopupImageName; ///< Image name for popup image + std::string mPopupArrowImageName; ///< Image name for popup arrow - Property::Index mPropertyDisableColor; - Property::Index mPropertyPopupTextColor; + Vector4 mDisableColor; ///< The color to tint the slider when disabled + Vector4 mPopupTextColor; ///< The color of the popup text - Property::Index mPropertyValuePrecision; + Vector2 mHitRegion; ///< Size of hit region + Vector2 mBackingRegion; ///< Size of backing region + Vector2 mHandleRegionSize; ///< Size of the handle region - Property::Index mPropertyShowPopup; - Property::Index mPropertyShowValue; + float mLowerBound; ///< Lower bound on value + float mUpperBound; ///< Upper bound on value + float mValue; ///< Current value of slider - Property::Index mPropertyEnabled; + float mMarkTolerance; ///< Tolerance in percentage of slider width for which to snap to marks - Property::Index mPropertyMarks; - Property::Index mPropertySnapToMarks; - Property::Index mPropertyMarkTolerance; + int mValuePrecision; ///< The precision to use for outputting the value + bool mShowPopup : 1, ///< Show the popup or not + mShowValue : 1, ///< Whether to display the value number or not on the handle + mSnapToMarks : 1; ///< Turn on or off snapping to marks }; } // namespace Internal