X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fscroll-connector.h;h=986f12ff1e8cb3bf01103cb71b3797b528b3722b;hb=refs%2Fchanges%2F86%2F35786%2F2;hp=578756c2b1ecfdbff6c8ecc39464111e3acc0830;hpb=57869973578f6a0b0f836d396c7232ddb8302c6b;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/scrollable/scroll-connector.h b/dali-toolkit/public-api/controls/scrollable/scroll-connector.h index 578756c..986f12f 100644 --- a/dali-toolkit/public-api/controls/scrollable/scroll-connector.h +++ b/dali-toolkit/public-api/controls/scrollable/scroll-connector.h @@ -19,7 +19,7 @@ */ // EXTERNAL INCLUDES -#include +#include namespace Dali { @@ -50,6 +50,12 @@ class ScrollConnector; * The overshoot property is intended for implementing 'end of list' style indicators. This property is expected to be in the range * -1 to 1, where -1 shows an attempt the scroll beyond the minimum limit, and 1 shows an attempt the scroll beyond the maximum limit. * Zero indicates normal scrolling i.e. when overshoot indicators should be hidden. + * + * Signals + * | %Signal Name | Method | + * |-------------------------|------------------------------------| + * | domain-changed | @ref DomainChangedSignal() | + * | scroll-position-changed | @ref ScrollPositionChangedSignal() | */ class DALI_IMPORT_API ScrollConnector : public BaseHandle { @@ -62,10 +68,7 @@ public: static const Property::Index OVERSHOOT; ///< The index of the "overshoot" property // Signals - static const char* const DOMAIN_CHANGED_SIGNAL_NAME; ///< "domain-changed" signal name typedef Signal< void ( float min, float max, float size ) > DomainChangedSignalType; - - static const char* const SCROLL_POSITION_CHANGED_SIGNAL_NAME; ///< "scroll-position-changed" signal name typedef Signal< void ( float position ) > ScrollPositionChangedSignalType; /** @@ -158,7 +161,7 @@ public: * @brief Retrieve the object which provides the "scroll-position" property. * @return The scroll-position object. */ - Constrainable GetScrollPositionObject() const; + Handle GetScrollPositionObject() const; public: // Not intended for application developers