Enlightenment CVS committal Author : dj2 Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: ewl_box.c ewl_box.h ewl_button.c ewl_cell.c ewl_check.c ewl_checkbutton.c ewl_colordialog.c ewl_colorpicker.c ewl_combo.c ewl_container.c ewl_datepicker.c ewl_embed.c ewl_iconbox.c ewl_model.c Log Message: doxy++ =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_box.c,v retrieving revision 1.29 retrieving revision 1.30 diff -u -3 -r1.29 -r1.30 --- ewl_box.c 24 May 2006 02:55:15 -0000 1.29 +++ ewl_box.c 26 May 2006 15:35:02 -0000 1.30 @@ -349,7 +349,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* +/** + * @internal + * @param w: The widget to configure + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Configures the box + * * Box layout algorithm: * 1. Setup variables orientation dependant pointers so that the algorithm is * independant of orientation. @@ -361,7 +368,7 @@ * 4. Layout the position of all children based on the sizes accepted. */ void -ewl_box_configure_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_box_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Box *b; @@ -433,6 +440,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to configure + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Configure a homegeneous box + */ void ewl_box_configure_homogeneous_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -754,8 +769,12 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * When a child gets added to the box update it's size. +/** + * @internal + * @param c: The container + * @param w: The widget that was added + * @return Returns no value + * @brief When a child gets added to the box update it's size. */ void ewl_box_child_show_cb(Ewl_Container *c, Ewl_Widget *w) @@ -803,9 +822,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container + * @param w: UNUSED + * @return Returns no value + * @brief Update the container when a widget is shown in homegeneous mode + */ void -ewl_box_child_homogeneous_show_cb(Ewl_Container * c, - Ewl_Widget * w __UNUSED__) +ewl_box_child_homogeneous_show_cb(Ewl_Container *c, + Ewl_Widget *w __UNUSED__) { int numc; int size, space = 0; @@ -833,8 +859,15 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container + * @param w: The widget that was hidden + * @return Returns no value + * @brief When a child is hidden update the container + */ void -ewl_box_child_hide_cb(Ewl_Container * c, Ewl_Widget * w) +ewl_box_child_hide_cb(Ewl_Container *c, Ewl_Widget *w) { int space = 0; Ewl_Box *b = EWL_BOX(c); =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_box.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ewl_box.h 15 Mar 2006 04:03:48 -0000 1.12 +++ ewl_box.h 26 May 2006 15:35:02 -0000 1.13 @@ -51,23 +51,23 @@ Ewl_Widget *ewl_box_new(void); Ewl_Widget *ewl_hbox_new(void); Ewl_Widget *ewl_vbox_new(void); -int ewl_box_init(Ewl_Box * box); -void ewl_box_orientation_set(Ewl_Box * b, Ewl_Orientation o); -Ewl_Orientation ewl_box_orientation_get(Ewl_Box * b); -void ewl_box_spacing_set(Ewl_Box * b, int spacing); +int ewl_box_init(Ewl_Box *box); +void ewl_box_orientation_set(Ewl_Box *b, Ewl_Orientation o); +Ewl_Orientation ewl_box_orientation_get(Ewl_Box *b); +void ewl_box_spacing_set(Ewl_Box *b, int spacing); void ewl_box_homogeneous_set(Ewl_Box *b, unsigned int h); /* * Internally used callbacks, override at your own risk. */ -void ewl_box_child_resize_cb(Ewl_Container * c, Ewl_Widget * w, +void ewl_box_child_resize_cb(Ewl_Container *c, Ewl_Widget *w, int size, Ewl_Orientation o); -void ewl_box_child_show_cb(Ewl_Container * c, Ewl_Widget * w); -void ewl_box_child_hide_cb(Ewl_Container * c, Ewl_Widget * w); -void ewl_box_child_homogeneous_show_cb(Ewl_Container * c, - Ewl_Widget * w); +void ewl_box_child_show_cb(Ewl_Container *c, Ewl_Widget *w); +void ewl_box_child_hide_cb(Ewl_Container *c, Ewl_Widget *w); +void ewl_box_child_homogeneous_show_cb(Ewl_Container *c, + Ewl_Widget *w); -void ewl_box_configure_cb(Ewl_Widget * w, void *ev_data, +void ewl_box_configure_cb(Ewl_Widget *w, void *ev_data, void *user_data); void ewl_box_configure_homogeneous_cb(Ewl_Widget *w, void *ev_data, void *user_data); =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_button.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -3 -r1.33 -r1.34 --- ewl_button.c 13 Apr 2006 20:37:22 -0000 1.33 +++ ewl_button.c 26 May 2006 15:35:02 -0000 1.34 @@ -393,6 +393,14 @@ DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Key_Down data + * @param data: UNUSED + * @return Returns no value + * @brief The key event callback for the button + */ void ewl_button_cb_key_down(Ewl_Widget *w, void *ev, void *data __UNUSED__) { =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_cell.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -3 -r1.10 -r1.11 --- ewl_cell.c 16 Feb 2006 21:52:42 -0000 1.10 +++ ewl_cell.c 26 May 2006 15:35:02 -0000 1.11 @@ -59,6 +59,14 @@ DRETURN_INT(TRUE, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The configure callback for the cell widget + */ void ewl_cell_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -80,6 +88,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to show + * @return Returns no value + * @brief Update the container when a child widget is shown + */ void ewl_cell_child_show_cb(Ewl_Container *c, Ewl_Widget *w) { @@ -108,6 +123,15 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget that was resized + * @param size: UNUSED + * @param o: UNUSED + * @return Returns no value + * @brief Callback for when a child widget is resized within the container + */ void ewl_cell_child_resize_cb(Ewl_Container *c, Ewl_Widget *w, int size __UNUSED__, Ewl_Orientation o __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_check.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- ewl_check.c 25 May 2006 18:27:18 -0000 1.9 +++ ewl_check.c 26 May 2006 15:35:02 -0000 1.10 @@ -98,6 +98,14 @@ DRETURN_INT(cb->checked, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The clicked callback for the check widget + */ void ewl_check_clicked_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -116,6 +124,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback to update the checkmark + */ void ewl_check_update_check_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_checkbutton.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- ewl_checkbutton.c 13 Apr 2006 20:37:22 -0000 1.11 +++ ewl_checkbutton.c 26 May 2006 15:35:02 -0000 1.12 @@ -150,6 +150,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The clicked callback for the checkbutton + */ void ewl_checkbutton_clicked_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_colordialog.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -3 -r1.22 -r1.23 --- ewl_colordialog.c 15 Feb 2006 18:25:05 -0000 1.22 +++ ewl_colordialog.c 26 May 2006 15:35:02 -0000 1.23 @@ -284,6 +284,14 @@ DRETURN_INT(mode, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: The colourdialog + * @return Returns no value + * @brief The button click callback + */ void ewl_colordialog_cb_button_click(Ewl_Widget *w, void *ev __UNUSED__, void *data) { @@ -299,6 +307,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: UNUSED + * @return Returns no value + * @brief The delete window callback + */ void ewl_colordialog_cb_delete_window(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_colorpicker.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- ewl_colorpicker.c 19 May 2006 16:26:52 -0000 1.21 +++ ewl_colorpicker.c 26 May 2006 15:35:02 -0000 1.22 @@ -495,6 +495,14 @@ DRETURN_INT(cp->mode, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: The colorpicker + * @return Returns no value + * @brief Callback for when the square spectrum changes values + */ void ewl_colorpicker_cb_square_change(Ewl_Widget *w, void *ev __UNUSED__, void *data) @@ -516,6 +524,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: The colorpicker + * @return Returns no value + * @brief Callback for a vertical spectrum value change + */ void ewl_colorpicker_cb_vertical_change(Ewl_Widget *w, void *ev __UNUSED__, void *data) @@ -580,6 +596,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: The colorpicker + * @return Returns no value + * @brief The callback for a spinner change + */ void ewl_colorpicker_cb_spinner_change(Ewl_Widget *w, void *ev __UNUSED__, void *data) { @@ -650,6 +674,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: The colorpicker widget + * @return Returns no value + * @brief Callback for a radio button change + */ void ewl_colorpicker_cb_radio_change(Ewl_Widget *w, void *ev __UNUSED__, void *data) { @@ -668,6 +700,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: UNUSED + * @param data: The colorpicker + * @return Returns no value + * @brief Callback for when a user clicks on the previous colour + */ void ewl_colorpicker_cb_previous_clicked(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, void *data) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_combo.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -3 -r1.27 -r1.28 --- ewl_combo.c 25 May 2006 05:49:35 -0000 1.27 +++ ewl_combo.c 26 May 2006 15:35:02 -0000 1.28 @@ -324,6 +324,14 @@ DRETURN_INT(combo->editable, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: UNUSED + * @return Returns no value + * @brief The configure callback + */ void ewl_combo_cb_configure(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) @@ -349,6 +357,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: The event data + * @param data: The combo box + * @return Returns no value + * @brief Callback for when the button to expand the combo is pressed + */ void ewl_combo_cb_decrement_clicked(Ewl_Widget *w __UNUSED__, void *ev, void *data) { @@ -406,6 +422,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: UNUSED + * @param data: The combo widget + * @return Returns no value + * @brief Callback for when the button to close the combo is clicked + */ void ewl_combo_cb_increment_clicked(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, void *data) @@ -427,6 +451,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: UNUSED + * @param data: The combo widget + * @return Returns no value + * @brief Callback for when a combo item is clicked + */ void ewl_combo_cb_item_clicked(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, void *data) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_container.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -3 -r1.41 -r1.42 --- ewl_container.c 25 May 2006 17:56:08 -0000 1.41 +++ ewl_container.c 26 May 2006 15:35:02 -0000 1.42 @@ -1228,9 +1228,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * When reparenting a container, it's children need the updated information - * about the container, such as the evas. +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief When reparenting a container, it's children need the updated + * information about the container, such as the evas. */ void ewl_container_reparent_cb(Ewl_Widget *w, void *ev_data __UNUSED__, @@ -1256,8 +1261,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for when the container is obscured + */ void -ewl_container_obscure_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_container_obscure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Embed *e; @@ -1293,8 +1306,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for when the container is revealed + */ void -ewl_container_reveal_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_container_reveal_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Embed *e; @@ -1334,8 +1355,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * This is the default action to be taken by containers, it involves +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief This is the default action to be taken by containers, it involves * creating and showing a clip box, as well as clipping the clip box to parent * clip boxes. */ @@ -1373,6 +1399,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The configure callback + */ void ewl_container_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1395,6 +1429,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for when the container is unrealized + */ void ewl_container_unrealize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_datepicker.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ewl_datepicker.c 21 May 2006 03:51:41 -0000 1.12 +++ ewl_datepicker.c 26 May 2006 15:35:02 -0000 1.13 @@ -80,6 +80,14 @@ DRETURN_INT(TRUE, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The destroy callback + */ void ewl_datepicker_destroy_cb(Ewl_Widget *w, void *ev __UNUSED__, void *user_data __UNUSED__) @@ -97,6 +105,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The configure callback + */ void ewl_datepicker_configure_cb(Ewl_Widget *w, void *ev __UNUSED__, void *user_data __UNUSED__) @@ -110,6 +126,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: UNUSED + * @param user_data: The datepicker + * @return Returns no value + * @brief Callback for when the datepicker calendar window value changes + */ void ewl_datepicker_value_changed_cb(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, void *user_data) @@ -130,6 +154,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Realize callback + */ void ewl_datepicker_realize_cb(Ewl_Widget *w, void *ev __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_embed.c,v retrieving revision 1.62 retrieving revision 1.63 diff -u -3 -r1.62 -r1.63 --- ewl_embed.c 25 May 2006 17:56:08 -0000 1.62 +++ ewl_embed.c 26 May 2006 15:35:02 -0000 1.63 @@ -1521,6 +1521,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for the realize event + */ void ewl_embed_realize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1585,6 +1593,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for the unrealize event + */ void ewl_embed_unrealize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1610,6 +1626,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The configure callback + */ void ewl_embed_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1668,6 +1692,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Callback for when the embed loses focus + */ void ewl_embed_focus_out_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1690,6 +1722,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The destroy callback + */ void ewl_embed_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_iconbox.c,v retrieving revision 1.116 retrieving revision 1.117 diff -u -3 -r1.116 -r1.117 --- ewl_iconbox.c 21 May 2006 07:18:50 -0000 1.116 +++ ewl_iconbox.c 26 May 2006 15:35:02 -0000 1.117 @@ -1508,10 +1508,10 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/** +/* * @param ib: The iconbox * @return Returns no value - * @brief Initialize the icon box + * @brief Initialize the icon box */ void ewl_iconbox_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_model.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- ewl_model.c 20 Apr 2006 13:59:18 -0000 1.8 +++ ewl_model.c 26 May 2006 15:35:02 -0000 1.9 @@ -188,6 +188,7 @@ /** * @param data: The ecore_list to get the data from * @param row: The row to get the data from + * @param col: UNUSED * @return Returns the data at the given row * @brief This will return the @a row data element from the list */ ------------------------------------------------------- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Click to learn more http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs