seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=2d849c040f81e31193736a77a6e7dd38fbb04db2

commit 2d849c040f81e31193736a77a6e7dd38fbb04db2
Author: Daniel Juyung Seo <[email protected]>
Date:   Fri Dec 27 02:51:04 2013 +0900

    entry: Sort smart callback descriptions in alphabetical order.
    
    It looks like someone was trying to order them in elm_entry.c but missed
    elm_entry.h.
---
 src/lib/elm_entry.h | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/src/lib/elm_entry.h b/src/lib/elm_entry.h
index af22ccf..353f4d9 100644
--- a/src/lib/elm_entry.h
+++ b/src/lib/elm_entry.h
@@ -207,41 +207,41 @@
  *
  * This widget emits the following signals, besides the ones sent from
  * @ref Layout:
+ * @li "aborted": The escape key was pressed on a single line entry. (since 
1.7)
+ * @li "activated": The enter key was pressed on a single line entry.
+ * @li "anchor,clicked": An anchor has been clicked. The event_info
+ * parameter for the callback will be an #Elm_Entry_Anchor_Info.
+ * @li "anchor,down": Mouse button has been pressed on an anchor. The 
event_info
+ * parameter for the callback will be an #Elm_Entry_Anchor_Info.
+ * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
+ * parameter for the callback will be an #Elm_Entry_Anchor_Info.
+ * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
+ * parameter for the callback will be an #Elm_Entry_Anchor_Info.
+ * @li "anchor,up": Mouse button has been unpressed on an anchor. The 
event_info
+ * parameter for the callback will be an #Elm_Entry_Anchor_Info.
  * @li "changed": The text within the entry was changed.
  * @li "changed,user": The text within the entry was changed because of user 
interaction.
- * @li "activated": The enter key was pressed on a single line entry.
- * @li "aborted": The escape key was pressed on a single line entry. (since 
1.7)
- * @li "press": A mouse button has been pressed on the entry.
- * @li "longpressed": A mouse button has been pressed and held for a couple
- * seconds.
  * @li "clicked": The entry has been clicked (mouse press and release).
  * @li "clicked,double": The entry has been double clicked.
  * @li "clicked,triple": The entry has been triple clicked.
+ * @li "cursor,changed": The cursor has changed position.
+ * @li "cursor,changed,manual": The cursor has changed position manually.
  * @li "focused": The entry has received focus.
  * @li "unfocused": The entry has lost focus.
- * @li "selection,paste": A paste of the clipboard contents was requested.
+ * @li "language,changed": Program language changed.
+ * @li "longpressed": A mouse button has been pressed and held for a couple
+ * @li "preedit,changed": The preedit string has changed.
+ * @li "press": A mouse button has been pressed on the entry.
+ * seconds.
+ * @li "selection,changed": The current selection has changed.
+ * @li "selection,cleared": The current selection has been cleared.
  * @li "selection,copy": A copy of the selected text into the clipboard was
  * requested.
  * @li "selection,cut": A cut of the selected text into the clipboard was
  * requested.
+ * @li "selection,paste": A paste of the clipboard contents was requested.
  * @li "selection,start": A selection has begun and no previous selection
  * existed.
- * @li "selection,changed": The current selection has changed.
- * @li "selection,cleared": The current selection has been cleared.
- * @li "cursor,changed": The cursor has changed position.
- * @li "cursor,changed,manual": The cursor has changed position manually.
- * @li "anchor,clicked": An anchor has been clicked. The event_info
- * parameter for the callback will be an #Elm_Entry_Anchor_Info.
- * @li "anchor,in": Mouse cursor has moved into an anchor. The event_info
- * parameter for the callback will be an #Elm_Entry_Anchor_Info.
- * @li "anchor,out": Mouse cursor has moved out of an anchor. The event_info
- * parameter for the callback will be an #Elm_Entry_Anchor_Info.
- * @li "anchor,up": Mouse button has been unpressed on an anchor. The 
event_info
- * parameter for the callback will be an #Elm_Entry_Anchor_Info.
- * @li "anchor,down": Mouse button has been pressed on an anchor. The 
event_info
- * parameter for the callback will be an #Elm_Entry_Anchor_Info.
- * @li "preedit,changed": The preedit string has changed.
- * @li "language,changed": Program language changed.
  * @li "text,set,done": Whole text has been set to the entry.
  *
  * Default content parts of the entry items that you can use for are:

-- 


Reply via email to