⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 94034 in webkit


Ignore:
Timestamp:
Aug 29, 2011, 6:29:59 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Add missing API documentation.
https://bugs.webkit.org/show_bug.cgi?id=66927

Patch by Grzegorz Czajkowski <g.czajkowski@samsung.com> on 2011-08-29
Reviewed by Kent Tamura.

Adds missing documentation for ewk_context_menu_item_checked_get/set.
Moves API documentation from cpp to the headers.
Adds brief and file commands for ewk_js.h.

  • ewk/ewk_contextmenu.h:
  • ewk/ewk_cookies.cpp:
  • ewk/ewk_cookies.h:
  • ewk/ewk_frame.cpp:
  • ewk/ewk_frame.h:
  • ewk/ewk_js.h:
Location:
trunk/Source/WebKit/efl
Files:
7 edited

Legend:

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

    r93967 r94034  
     12011-08-29  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
     2
     3        [EFL] Add missing API documentation.
     4        https://bugs.webkit.org/show_bug.cgi?id=66927
     5
     6        Reviewed by Kent Tamura.
     7
     8        Adds missing documentation for ewk_context_menu_item_checked_get/set.
     9        Moves API documentation from cpp to the headers.
     10        Adds brief and file commands for ewk_js.h.
     11
     12        * ewk/ewk_contextmenu.h:
     13        * ewk/ewk_cookies.cpp:
     14        * ewk/ewk_cookies.h:
     15        * ewk/ewk_frame.cpp:
     16        * ewk/ewk_frame.h:
     17        * ewk/ewk_js.h:
     18
    1192011-08-29  Ryuan Choi  <ryuan.choi@samsung.com>
    220
  • trunk/Source/WebKit/efl/ewk/ewk_contextmenu.h

    r92735 r94034  
    193193 * @param submenu specifies a submenu of the item
    194194 * @param title specifies a title of the item
    195  * @param checked
     195 * @param checked @c EINA_TRUE if the item should be toggled or @c EINA_FALSE if not
    196196 * @param enabled @c EINA_TRUE to enable the item or @c EINA_FALSE to disable
    197197 * @return the pointer to the new item on success or @c 0 on failure
     
    283283EAPI const char                 *ewk_context_menu_item_title_set(Ewk_Context_Menu_Item *o, const char *title);
    284284
     285/**
     286 * Queries if the item is toggled.
     287 *
     288 * @param o the item to query if the item is toggled
     289 * @return @c EINA_TRUE if the item is toggled or @c EINA_FALSE if not or on failure
     290 */
    285291EAPI Eina_Bool                   ewk_context_menu_item_checked_get(Ewk_Context_Menu_Item *o);
     292
     293/**
     294 * Sets if the item should be toggled.
     295 *
     296 * @param o the item to be toggled
     297 * @param checked @c EINA_TRUE if the item should be toggled or @c EINA_FALSE if not
     298 * @return @c EINA_TRUE on success or @c EINA_FALSE on failure
     299 */
    286300EAPI Eina_Bool                   ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item *o, Eina_Bool checked);
    287301
  • trunk/Source/WebKit/efl/ewk/ewk_cookies.cpp

    r92473 r94034  
    166166}
    167167
    168 /**
    169  * Gets the acceptance policy used in the current cookie jar.
    170  *
    171  * @return the current acceptance policy
    172  * @see Ewk_Cookie_Policy
    173  */
    174168Ewk_Cookie_Policy ewk_cookies_policy_get(void)
    175169{
  • trunk/Source/WebKit/efl/ewk/ewk_cookies.h

    r92473 r94034  
    123123 */
    124124EAPI void               ewk_cookies_policy_set(Ewk_Cookie_Policy p);
     125
     126/**
     127 * Gets the acceptance policy used in the current cookie jar.
     128 *
     129 * @return the current acceptance policy
     130 * @see Ewk_Cookie_Policy
     131 */
    125132EAPI Ewk_Cookie_Policy  ewk_cookies_policy_get(void);
    126133
  • trunk/Source/WebKit/efl/ewk/ewk_frame.cpp

    r93813 r94034  
    495495}
    496496
    497 /**
    498  * Sets whether matches marked with ewk_frame_text_matches_mark() should be highlighted.
    499  *
    500  * @param o frame object where to set if matches are highlighted or not
    501  * @param highlight @c EINA_TRUE if matches are highlighted, @c EINA_FALSE if not
    502  *
    503  * @return @c EINA_TRUE on success, @c EINA_FALSE on failure
    504  */
    505497Eina_Bool ewk_frame_text_matches_highlight_set(Evas_Object *o, Eina_Bool highlight)
    506498{
  • trunk/Source/WebKit/efl/ewk/ewk_frame.h

    r92948 r94034  
    382382 */
    383383EAPI unsigned int ewk_frame_text_matches_mark(Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
    384 EAPI Eina_Bool    ewk_frame_text_matches_unmark_all(Evas_Object *o);
    385384
    386385/**
     
    389388 *
    390389 * @param o frame object where to unmark matches
     390 *
     391 * @return @c EINA_TRUE on success, @c EINA_FALSE on failure
     392 */
     393EAPI Eina_Bool    ewk_frame_text_matches_unmark_all(Evas_Object *o);
     394
     395/**
     396 * Sets whether matches marked with ewk_frame_text_matches_mark() should be highlighted.
     397 *
     398 * @param o frame object where to set if matches are highlighted or not
     399 * @param highlight @c EINA_TRUE if matches are highlighted, @c EINA_FALSE if not
    391400 *
    392401 * @return @c EINA_TRUE on success, @c EINA_FALSE on failure
  • trunk/Source/WebKit/efl/ewk/ewk_js.h

    r93637 r94034  
    1717    Boston, MA 02110-1301, USA.
    1818*/
     19
     20/**
     21 * @file    ewk_js.h
     22 * @brief   Allows to export objects to JavaScript API.
     23 */
    1924
    2025#ifndef ewk_js_h
Note: See TracChangeset for help on using the changeset viewer.