[inwin] remove docs
authorMike McCormack <mj.mccormack@samsung.com>
Mon, 7 Nov 2011 06:48:13 +0000 (15:48 +0900)
committerMike McCormack <mj.mccormack@samsung.com>
Mon, 7 Nov 2011 07:18:09 +0000 (16:18 +0900)
src/lib/elm_win.c

index 20f601a..587ac98 100644 (file)
@@ -2507,11 +2507,6 @@ _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
      }
 }
 
-/**
- * @defgroup Inwin Inwin
- *
- * An inwin is a window inside a window that is useful for a quick popup.  It does not hover.
- */
 EAPI Evas_Object *
 elm_win_inwin_add(Evas_Object *obj)
 {
@@ -2548,13 +2543,6 @@ elm_win_inwin_add(Evas_Object *obj)
    return obj2;
 }
 
-/**
- * Activates an inwin object
- *
- * @param obj The inwin to activate
- *
- * @ingroup Inwin
- */
 EAPI void
 elm_win_inwin_activate(Evas_Object *obj)
 {
@@ -2567,18 +2555,6 @@ elm_win_inwin_activate(Evas_Object *obj)
    elm_object_focus(obj);
 }
 
-/**
- * Set the content of an inwin object.
- *
- * Once the content object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_win_inwin_content_unset() function.
- *
- * @param obj The inwin object
- * @param content The object to set as content
- *
- * @ingroup Inwin
- */
 EAPI void
 elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content)
 {
@@ -2598,16 +2574,6 @@ elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content)
    _sizing_eval(obj);
 }
 
-/**
- * Get the content of an inwin object.
- *
- * Return the content object which is set for this widget.
- *
- * @param obj The inwin object
- * @return The content that is being used
- *
- * @ingroup Inwin
- */
 EAPI Evas_Object *
 elm_win_inwin_content_get(const Evas_Object *obj)
 {
@@ -2617,16 +2583,6 @@ elm_win_inwin_content_get(const Evas_Object *obj)
    return wd->content;
 }
 
-/**
- * Unset the content of an inwin object.
- *
- * Unparent and return the content object which was set for this widget.
- *
- * @param obj The inwin object
- * @return The content that was being used
- *
- * @ingroup Inwin
- */
 EAPI Evas_Object *
 elm_win_inwin_content_unset(Evas_Object *obj)
 {
@@ -2654,15 +2610,6 @@ _elm_ee_win_get(const Evas_Object *obj)
    return 0;
 }
 
-/**
- * Get the Ecore_X_Window of an Evas_Object
- *
- * @param obj The object
- *
- * @return The Ecore_X_Window of @p obj
- *
- * @ingroup Win
- */
 EAPI Ecore_X_Window
 elm_win_xwindow_get(const Evas_Object *obj)
 {