X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-selectable-control-interface.h;h=931cf6b38198fcdd00d780a71dd7403aae2d2034;hb=ba1c6fea08ea39ca92356ae4b39a952919398e7e;hp=3d5feef1df3826d30c9b761fc09a7225308f2a6c;hpb=699c8c5f00b8ea4bba12b4e6e6f91b022cb261b4;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-selectable-control-interface.h b/dali-toolkit/internal/text/text-selectable-control-interface.h index 3d5feef..931cf6b 100644 --- a/dali-toolkit/internal/text/text-selectable-control-interface.h +++ b/dali-toolkit/internal/text/text-selectable-control-interface.h @@ -72,6 +72,16 @@ public: * @return The seletced text. */ virtual string GetSelectedText() const = 0; + + /** + * @brief Called when the selection has been changed. + * + * @param oldStart the selection handles start position before the change. + * @param oldEnd the selection handles end position before the change. + * @param newStart the selection handles start position after the change. + * @param newEnd the selection handles end position after the change. + */ + virtual void SelectionChanged(uint32_t oldStart, uint32_t oldEnd, uint32_t newStart, uint32_t newEnd) = 0; }; } // namespace Text