Changeset 94034 in webkit
- Timestamp:
- Aug 29, 2011, 6:29:59 PM (15 years ago)
- Location:
- trunk/Source/WebKit/efl
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
ewk/ewk_contextmenu.h (modified) (2 diffs)
-
ewk/ewk_cookies.cpp (modified) (1 diff)
-
ewk/ewk_cookies.h (modified) (1 diff)
-
ewk/ewk_frame.cpp (modified) (1 diff)
-
ewk/ewk_frame.h (modified) (2 diffs)
-
ewk/ewk_js.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/efl/ChangeLog
r93967 r94034 1 2011-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 1 19 2011-08-29 Ryuan Choi <ryuan.choi@samsung.com> 2 20 -
trunk/Source/WebKit/efl/ewk/ewk_contextmenu.h
r92735 r94034 193 193 * @param submenu specifies a submenu of the item 194 194 * @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 196 196 * @param enabled @c EINA_TRUE to enable the item or @c EINA_FALSE to disable 197 197 * @return the pointer to the new item on success or @c 0 on failure … … 283 283 EAPI const char *ewk_context_menu_item_title_set(Ewk_Context_Menu_Item *o, const char *title); 284 284 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 */ 285 291 EAPI 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 */ 286 300 EAPI Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item *o, Eina_Bool checked); 287 301 -
trunk/Source/WebKit/efl/ewk/ewk_cookies.cpp
r92473 r94034 166 166 } 167 167 168 /**169 * Gets the acceptance policy used in the current cookie jar.170 *171 * @return the current acceptance policy172 * @see Ewk_Cookie_Policy173 */174 168 Ewk_Cookie_Policy ewk_cookies_policy_get(void) 175 169 { -
trunk/Source/WebKit/efl/ewk/ewk_cookies.h
r92473 r94034 123 123 */ 124 124 EAPI 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 */ 125 132 EAPI Ewk_Cookie_Policy ewk_cookies_policy_get(void); 126 133 -
trunk/Source/WebKit/efl/ewk/ewk_frame.cpp
r93813 r94034 495 495 } 496 496 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 not501 * @param highlight @c EINA_TRUE if matches are highlighted, @c EINA_FALSE if not502 *503 * @return @c EINA_TRUE on success, @c EINA_FALSE on failure504 */505 497 Eina_Bool ewk_frame_text_matches_highlight_set(Evas_Object *o, Eina_Bool highlight) 506 498 { -
trunk/Source/WebKit/efl/ewk/ewk_frame.h
r92948 r94034 382 382 */ 383 383 EAPI 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);385 384 386 385 /** … … 389 388 * 390 389 * @param o frame object where to unmark matches 390 * 391 * @return @c EINA_TRUE on success, @c EINA_FALSE on failure 392 */ 393 EAPI 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 391 400 * 392 401 * @return @c EINA_TRUE on success, @c EINA_FALSE on failure -
trunk/Source/WebKit/efl/ewk/ewk_js.h
r93637 r94034 17 17 Boston, MA 02110-1301, USA. 18 18 */ 19 20 /** 21 * @file ewk_js.h 22 * @brief Allows to export objects to JavaScript API. 23 */ 19 24 20 25 #ifndef ewk_js_h
Note:
See TracChangeset
for help on using the changeset viewer.