SVN revision: 79457
This commit is contained in:
Andreas Volz 2012-11-19 22:18:35 +00:00
parent db805b9b59
commit 4c5ce32c20
1 changed files with 4 additions and 5 deletions

View File

@ -25,6 +25,7 @@ namespace Elmxx {
* "anchor,clicked" - achor called was clicked | event_info = Elm_Entry_Anchor_Info * "anchor,clicked" - achor called was clicked | event_info = Elm_Entry_Anchor_Info
* "activated" - when the enter key is pressed (useful for single line) * "activated" - when the enter key is pressed (useful for single line)
*/ */
// TODO think about using exceptions where useful instead of returning empty string...
class Entry : public Object class Entry : public Object
{ {
public: public:
@ -50,7 +51,7 @@ public:
/** /**
* Retrieve the style on the top of user style stack. * Retrieve the style on the top of user style stack.
* *
* @return style on the top of user style stack if exist, otherwise NULL. * @return style on the top of user style stack if exist, otherwise empty string.
* @see pushUserTextStyle() * @see pushUserTextStyle()
*/ */
@ -172,14 +173,14 @@ public:
* Gets any selected text within the entry. * Gets any selected text within the entry.
* *
* If there's any selected text in the entry, this function returns it as * If there's any selected text in the entry, this function returns it as
* a string in markup format. NULL is returned if no selection exists or * a string in markup format. empty string is returned if no selection exists or
* if an error occurred. * if an error occurred.
* *
* The returned value points to an internal string and should not be freed * The returned value points to an internal string and should not be freed
* or modified in any way. If the @p entry object is deleted or its * or modified in any way. If the @p entry object is deleted or its
* contents are changed, the returned pointer should be considered invalid. * contents are changed, the returned pointer should be considered invalid.
* *
* @return The selected text within the entry or NULL on failure * @return The selected text within the entry or empty string on failure
* *
* @ingroup Entry * @ingroup Entry
*/ */
@ -520,8 +521,6 @@ public:
* When creating the popup hover, entry will request that it's * When creating the popup hover, entry will request that it's
* themed according to @p style. * themed according to @p style.
* *
* Setting style no @c NULL means disabling automatic hover.
*
* @param style The style to use for the underlying hover * @param style The style to use for the underlying hover
* *
* @see setStyle() * @see setStyle()