X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Ftext-controls%2Ftext-selection-popup.h;h=fd473ad1e3f86d95e20832d5bce2c5c4f287d602;hb=refs%2Fchanges%2F00%2F44400%2F3;hp=292d5c52e49c89c3494a53a9bb7dd5eb4e4d1263;hpb=c8bceb828f2e65e82dd0f22bdb964ab7e04882a0;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h b/dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h index 292d5c5..fd473ad 100644 --- a/dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h +++ b/dali-toolkit/devel-api/controls/text-controls/text-selection-popup.h @@ -27,6 +27,8 @@ namespace Dali namespace Toolkit { +class TextSelectionPopupCallbackInterface; + namespace Internal DALI_INTERNAL { class TextSelectionPopup; @@ -84,21 +86,21 @@ public: POPUP_PASTE_BUTTON_ICON_IMAGE, ///< name "popup-paste-button-image", The image to use as the popup paste icon, type STRING POPUP_SELECT_BUTTON_ICON_IMAGE, ///< name "popup-select-button-image", The image to use as the popup select icon, type STRING POPUP_SELECT_ALL_BUTTON_ICON_IMAGE, ///< name "popup-select-all-button-image", The image to use as the popup select all icon, type STRING + POPUP_DIVIDER_COLOR, ///< name "popup-divider-color", The color of the divider between options, type VECTOR4 + POPUP_ICON_COLOR, ///< name "popup-icon-color", The color of the icons (if supplied), type VECTOR4 + POPUP_PRESSED_COLOR, ///< name "popup-pressed-color", The color of the option when pressed, type VECTOR4 + POPUP_PRESSED_IMAGE ///< name "popup-pressed-image", The image to use for the option when pressed, type STRING }; }; /** - * Create the TextSelectionPopup control. - * @return A handle to the TextSelectionPopup control. - */ - static TextSelectionPopup New(); - - /** * Create the TextSelectionPopup control with the given set of buttons. * @param[in] enabledButtons The given set of buttons to enable + * @param[in] callbackInterface The text popup callback interface which receives the button click callbacks. * @return A handle to the TextSelectionPopup control. */ - static TextSelectionPopup New( Buttons enabledButtons ); + static TextSelectionPopup New( Buttons enabledButtons, + TextSelectionPopupCallbackInterface* callbackInterface ); /** * @brief Creates an empty handle. @@ -138,6 +140,18 @@ public: */ static TextSelectionPopup DownCast( BaseHandle handle ); + /** + * @brief Raises the toolbar's layer above the given @e target layer. + * + * @param[in] target The layer to get above of. + */ + void RaiseAbove( Layer target ); + + /** + * @brief Show the Popup + */ + void ShowPopup(); + public: // Not intended for application developers /**