X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.h;h=29352994348aea35cc591ffdaac2265f4f45e0e6;hb=08563381e540b243e31b03c45d74ce49258cd730;hp=82672e66edff971ceb59cde5777ad1c187a01e0e;hpb=1134791cdb74ee5826f0027638f1422abb16b6fc;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-controller.h b/dali-toolkit/internal/text/text-controller.h index 82672e6..2935299 100644 --- a/dali-toolkit/internal/text/text-controller.h +++ b/dali-toolkit/internal/text/text-controller.h @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -78,8 +79,7 @@ private: LAYOUT = 0x0100, UPDATE_ACTUAL_SIZE = 0x0200, REORDER = 0x0400, - ALIGNMENT = 0x0800, - RENDER = 0x1000, + ALIGN = 0x0800, ALL_OPERATIONS = 0xFFFF }; @@ -196,6 +196,20 @@ public: bool GetEnableCursorBlink() const; /** + * @brief Query the current scroll position; the UI control is responsible for moving actors to this position. + * + * @return The scroll position. + */ + const Vector2& GetScrollPosition() const; + + /** + * @brief Query the alignment offset. + * + * @return The alignmnet offset. + */ + const Vector2& GetAlignmentOffset() const; + + /** * @copydoc Control::GetNaturalSize() */ Vector3 GetNaturalSize(); @@ -212,7 +226,7 @@ public: * @param[in] size A the size of a bounding box to layout text within. * @return True if the text model or decorations were updated. */ - bool Relayout( const Vector2& size ); + bool Relayout( const Size& size ); /** * @brief Process queued events which modify the model. @@ -254,11 +268,18 @@ public: * @param[in] operations The layout operations which need to be done. * @param[out] layoutSize The size of the laid-out text. */ - bool DoRelayout( const Vector2& size, + bool DoRelayout( const Size& size, OperationsMask operations, Size& layoutSize ); /** + * @brief Calulates the alignment of the whole text inside the bounding box. + * + * @param[in] size The size of the bounding box. + */ + void CalculateTextAlignment( const Size& size ); + + /** * @brief Return the layout engine. * * @return A reference to the layout engine. @@ -300,6 +321,14 @@ public: void TapEvent( unsigned int tapCount, float x, float y ); /** + * @brief Caller by editable UI controls when a pan gesture occurs. + * + * @param[in] state The state of the gesture. + * @param[in] displacement This distance panned since the last pan gesture. + */ + void PanEvent( Gesture::State state, const Vector2& displacement ); + + /** * @copydoc Dali::Toolkit::Text::Decorator::Observer::GrabHandleEvent() */ virtual void GrabHandleEvent( GrabHandleState state, float x, float y );