Changeset 92735 in webkit


Ignore:
Timestamp:
Aug 9, 2011 5:59:41 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[EFL] Sort signal comments by alphabetical order.
http://bugs.webkit.org/show_bug.cgi?id=65520

Reviewed by Kent Tamura.

Signals caused by ewk still are listed without any specific rule.
It sure isn't a nice thing to understand the signal list. So, this patch
lists signals by alphabetical order.

  • ewk/ewk_contextmenu.h:
  • ewk/ewk_frame.h:
  • ewk/ewk_view.h:
Location:
trunk/Source/WebKit/efl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r92685 r92735  
     12011-08-09  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Sort signal comments by alphabetical order.
     4        http://bugs.webkit.org/show_bug.cgi?id=65520
     5
     6        Reviewed by Kent Tamura.
     7
     8        Signals caused by ewk still are listed without any specific rule.
     9        It sure isn't a nice thing to understand the signal list. So, this patch
     10        lists signals by alphabetical order.
     11
     12        * ewk/ewk_contextmenu.h:
     13        * ewk/ewk_frame.h:
     14        * ewk/ewk_view.h:
     15
    1162011-08-09  KwangHyuk Kim  <hyuki.kim@samsung.com>
    217
  • trunk/Source/WebKit/efl/ewk/ewk_contextmenu.h

    r92473 r92735  
    2525 * The following signals (see evas_object_smart_callback_add()) are emitted:
    2626 *
    27  *  - "contextmenu,new", Ewk_Context_Menu *: a new context menu was created
    28  *    and it gives the context menu as an argument.
     27 *  - "contextmenu,customize", Eina_List *: customize context menu is taken
     28 *    and it gives a list with items of context menu as an argument.
    2929 *  - "contextmenu,free", Ewk_Context_Menu *: a context menu is freed.
    3030 *  - "contextmenu,item,appended", Ewk_Context_Menu *: a new item was added to
    3131 *    the context menu.
    32  *  - "contextmenu,customize", Eina_List *: customize context menu is taken
    33  *    and it gives a list with items of context menu as an argument.
     32 *  - "contextmenu,new", Ewk_Context_Menu *: a new context menu was created
     33 *    and it gives the context menu as an argument.
    3434 *  - "contextmenu,show", Ewk_Context_Menu *: a context menu is shown.
    3535 */
  • trunk/Source/WebKit/efl/ewk/ewk_frame.h

    r92473 r92735  
    3636 * The following signals (see evas_object_smart_callback_add()) are emitted:
    3737 *
    38  *  - "title,changed", const char*: title of the main frame was changed.
    39  *  - "uri,changed", const char*: uri of the main frame was changed.
     38 *  - "contents,size,changed", Evas_Coord[2]: reports contents size
     39 *     were changed due new layout, script actions or any other events.
     40 *  - "editorclient,contents,changed", void: reports that editor client's
     41 *    contents were changed
    4042 *  - "load,document,finished", void: frame finished loading the document.
    41  *  - "load,nonemptylayout,finished", void: frame finished first
    42  *    non-empty layout.
    43  *  - "load,started", void: frame started loading the document.
    44  *  - "load,progress", double*: load progress is changed (overall value
    45  *    from 0.0 to 1.0, connect to individual frames for fine grained).
     43 *  - "load,error", const Ewk_Frame_Load_Error*: reports load failed
     44 *    and it gives a pointer to structure defining the error as an argument.
    4645 *  - "load,finished", const Ewk_Frame_Load_Error*: reports load
    4746 *    finished and it gives @c NULL on success or pointer to
    4847 *    structure defining the error.
     48 *  - "load,firstlayout,finished", void: frame finished first layout.
     49 *  - "load,nonemptylayout,finished", void: frame finished first
     50 *    non-empty layout.
     51 *  - "load,progress", double*: load progress is changed (overall value
     52 *    from 0.0 to 1.0, connect to individual frames for fine grained).
    4953 *  - "load,provisional", void: frame started provisional load.
    50  *  - "load,firstlayout,finished", void: frame finished first layout.
    51  *  - "load,error", const Ewk_Frame_Load_Error*: reports load failed
    52  *    and it gives a pointer to structure defining the error as an argument.
    53  *  - "contents,size,changed", Evas_Coord[2]: reports contents size
    54  *     were changed due new layout, script actions or any other events.
     54 *  - "load,started", void: frame started loading the document.
    5555 *  - "navigation,first", void: first navigation was occurred.
    5656 *  - "resource,request,new", Ewk_Frame_Resource_Request*: reports that
     
    5959 *    be requested.
    6060 *  - "state,save", void: frame's state will be saved as a history item.
    61  *  - "editorclient,contents,changed", void: reports that editor client's
    62  *    contents were changed
     61 *  - "title,changed", const char*: title of the main frame was changed.
     62 *  - "uri,changed", const char*: uri of the main frame was changed.
    6363 */
    6464
  • trunk/Source/WebKit/efl/ewk/ewk_view.h

    r92039 r92735  
    4848 * The following signals (see evas_object_smart_callback_add()) are emitted:
    4949 *
    50  *  - "ready", void: page is fully loaded.
    51  *  - "title,changed", const char*: title of the main frame was changed.
    52  *  - "uri,changed", const char*: uri of the main frame was changed.
    53  *  - "load,started", void: frame started loading the document.
    54  *  - "load,progress", double*: load progress is changed (overall value
    55  *    from 0.0 to 1.0, connect to individual frames for fine grained).
     50 *  - "download,request", Ewk_Download: reports a download is being requested
     51 *  - "editorclient,contents,changed", void: reports to the view that editor
     52 *    client's contents were changed
     53 *  - "frame,created", Evas_Object*: a new frame is created.
     54 *  - "icon,received", void: main frame received an icon.
     55 *  - "inputmethod,changed", Eina_Bool: reports that input method was changed and
     56 *    it gives a boolean value whether it's enabled or not as an argument.
     57 *  - "link,hover,in", const char *link[2]: reports mouse is over a link.
     58 *    It gives the url in link[0] and link's title in link[1] as an argument.
     59 *  - "link,hover,out", void: reports mouse moved out from a link.
     60 *  - "load,error", const Ewk_Frame_Load_Error*: reports load failed
    5661 *  - "load,finished", const Ewk_Frame_Load_Error*: reports load
    5762 *    finished and it gives @c NULL on success or pointer to
    5863 *    structure defining the error.
     64 *  - "load,newwindow,show", void: reports that a new window was created and can be shown.
     65 *    and it gives a pointer to structure defining the error as an argument.
     66 *  - "load,progress", double*: load progress is changed (overall value
     67 *    from 0.0 to 1.0, connect to individual frames for fine grained).
    5968 *  - "load,provisional", void: view started provisional load.
    60  *  - "load,error", const Ewk_Frame_Load_Error*: reports load failed
    61  *    and it gives a pointer to structure defining the error as an argument.
    62  *  - "frame,created", Evas_Object*: a new frame is created.
    63  *  - "zoom,animated,end", void: requested animated zoom is finished.
    64  *  - "menubar,visible,set", Eina_Bool: sets menubar visibility.
     69 *  - "load,started", void: frame started loading the document.
    6570 *  - "menubar,visible,get", Eina_Bool *: expects a @c EINA_TRUE if menubar is
    6671 *    visible; @c EINA_FALSE, otherwise.
    67  *  - "scrollbars,visible,set", Eina_Bool: sets scrollbars visibility.
     72 *  - "menubar,visible,set", Eina_Bool: sets menubar visibility.
     73 *  - "ready", void: page is fully loaded.
    6874 *  - "scrollbars,visible,get", Eina_Bool *: expects a @c EINA_TRUE if scrollbars
    6975 *    are visible; @c EINA_FALSE, otherwise.
    70  *  - "statusbar,visible,set", Eina_Bool: sets statusbar visibility.
     76 *  - "scrollbars,visible,set", Eina_Bool: sets scrollbars visibility.
     77 *  - "statusbar,text,set", const char *: sets statusbar text.
    7178 *  - "statusbar,visible,get", Eina_Bool *: expects a @c EINA_TRUE if statusbar is
    7279 *    visible; @c EINA_FALSE, otherwise.
    73  *  - "statusbar,text,set", const char *: sets statusbar text.
    74  *  - "toolbars,visible,set", Eina_Bool: sets toolbar visibility.
     80 *  - "statusbar,visible,set", Eina_Bool: sets statusbar visibility.
     81 *  - "title,changed", const char*: title of the main frame was changed.
    7582 *  - "toolbars,visible,get", Eina_Bool *: expects a @c EINA_TRUE if toolbar
    7683 *    is visible; @c EINA_FALSE, otherwise.
    77  *  - "link,hover,in", const char *link[2]: reports mouse is over a link.
    78  *    It gives the url in link[0] and link's title in link[1] as an argument.
    79  *  - "link,hover,out", void: reports mouse moved out from a link.
     84 *  - "toolbars,visible,set", Eina_Bool: sets toolbar visibility.
    8085 *  - "popup,create", Ewk_Menu: reports that a new menu was created.
    8186 *  - "popup,willdeleted", Ewk_Menu: reports that a previously created menu
    8287 *    will be deleted.
    83  *  - "download,request", Ewk_Download: reports a download is being requested
    84  *  - "icon,received", void: main frame received an icon.
    85  *  - "viewport,changed", void: reports that viewport was changed.
    86  *  - "inputmethod,changed", Eina_Bool: reports that input method was changed and
    87  *    it gives a boolean value whether it's enabled or not as an argument.
    88  *  - "view,resized", void: view object's size was changed.
    89  *  - "load,newwindow,show", void: reports that a new window was created and can be shown.
    9088 *  - "restore", Evas_Object *: reports that view should be restored to default conditions
    9189 *    and it gives a frame that originated restore as an argument.
    9290 *  - "tooltip,text,set", const char*: sets tooltip text and displays if it is currently hidden.
    93  *  - "editorclient,contents,changed", void: reports to the view that editor
    94  *    client's contents were changed
     91 *  - "uri,changed", const char*: uri of the main frame was changed.
     92 *  - "view,resized", void: view object's size was changed.
     93 *  - "viewport,changed", void: reports that viewport was changed.
     94 *  - "zoom,animated,end", void: requested animated zoom is finished.
    9595 */
    9696
Note: See TracChangeset for help on using the changeset viewer.