Enlightenment CVS committal Author : dj2 Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: ewl_seeker.c ewl_spectrum.c ewl_spinner.c ewl_table.c ewl_text.c ewl_tree.c ewl_tree2.c ewl_widget.c ewl_window.c Log Message: doxy++ =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_seeker.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- ewl_seeker.c 8 May 2006 03:19:34 -0000 1.16 +++ ewl_seeker.c 26 May 2006 19:01:56 -0000 1.17 @@ -462,9 +462,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * On a configure event we need to adjust the seeker to fit into it's new - * coords and position as well as move the button to the correct size and +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief On a configure event we need to adjust the seeker to fit into it's + * new coords and position as well as move the button to the correct size and * position. */ void @@ -533,6 +538,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Down data + * @param user_data: UNUSED + * @return Returns no value + * @brief The button mouse down callback + */ void ewl_seeker_button_mouse_down_cb(Ewl_Widget *w, void *ev_data, void *user_data __UNUSED__) @@ -559,6 +572,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 button mouse up callback + */ void ewl_seeker_button_mouse_up_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -572,8 +593,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Move the cursor to the correct position +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Move data + * @param user_data: UNUSED + * @return Returns no value + * @brief Move the cursor to the correct position */ void ewl_seeker_mouse_move_cb(Ewl_Widget *w, void *ev_data, @@ -623,6 +649,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Down data + * @param user_data: UNUSED + * @return Returns no value + * @brief The mouse down callback + */ void ewl_seeker_mouse_down_cb(Ewl_Widget *w, void *ev_data, void *user_data __UNUSED__) @@ -681,6 +715,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 mouse up callback + */ void ewl_seeker_mouse_up_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -701,6 +743,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param p: The container to work with + * @param w: The widget to work with + * @return Returns no value + * @brief The child show callback + */ void ewl_seeker_child_show_cb(Ewl_Container *p, Ewl_Widget *w) { =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_spectrum.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- ewl_spectrum.c 21 May 2006 03:51:41 -0000 1.23 +++ ewl_spectrum.c 26 May 2006 19:01:56 -0000 1.24 @@ -300,6 +300,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 configure callback + */ void ewl_spectrum_cb_configure(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) @@ -327,6 +335,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Mouse_Down data + * @param data: UNUSED + * @return Returns no value + * @brief The mouse down callback + */ void ewl_spectrum_cb_mouse_down(Ewl_Widget *w, void *ev, void *data __UNUSED__) { @@ -348,6 +364,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Mouse_Move data + * @param data: UNUSED + * @return Returns no value + * @brief The mouse move callback + */ void ewl_spectrum_cb_mouse_move(Ewl_Widget *w, void *ev, void *data __UNUSED__) { @@ -366,8 +390,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: UNUSED + * @return Returns no value + * @brief The mouse up callback + */ void -ewl_spectrum_cb_mouse_up(Ewl_Widget *w __UNUSED__, void *ev __UNUSED__, +ewl_spectrum_cb_mouse_up(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { Ewl_Spectrum *sp; =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_spinner.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- ewl_spinner.c 12 Apr 2006 05:46:29 -0000 1.16 +++ ewl_spinner.c 26 May 2006 19:01:56 -0000 1.17 @@ -279,6 +279,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 realize callback + */ void ewl_spinner_realize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -295,6 +303,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Key_Down data + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The key down callback + */ void ewl_spinner_key_down_cb(Ewl_Widget *w, void *ev_data, void *user_data) @@ -349,6 +365,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The focus out callback + */ void ewl_spinner_focus_out_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data) @@ -373,6 +397,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Wheel data + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The mouse wheel callback + */ void ewl_spinner_wheel_cb(Ewl_Widget *w __UNUSED__, void *ev_data, void *user_data) @@ -425,6 +457,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The event data + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The increase value callback + */ void ewl_spinner_increase_value_cb(Ewl_Widget *w, void *ev_data, void *user_data) @@ -450,6 +490,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The value stop callback + */ void ewl_spinner_value_stop_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data) @@ -476,6 +524,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The event + * @param user_data: The Ewl_Spinner + * @return Returns no value + * @brief The decrease value callback + */ void ewl_spinner_decrease_value_cb(Ewl_Widget *w, void *ev_data, void *user_data) @@ -500,6 +556,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_spinner_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_table.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- ewl_table.c 17 Feb 2006 06:43:33 -0000 1.14 +++ ewl_table.c 26 May 2006 19:01:56 -0000 1.15 @@ -419,6 +419,14 @@ DRETURN_PTR(strdup(""), DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: The Ewl_Table + * @return Returns no value + * @brief The child select callback + */ void ewl_table_child_select_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data) @@ -441,6 +449,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_table_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -480,6 +496,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param p: The container to work with + * @param c: UNUSED + * @return Returns no value + * @brief The child show callback + */ void ewl_table_child_show_cb(Ewl_Container *p, Ewl_Widget *c __UNUSED__) { =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_text.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -3 -r1.102 -r1.103 --- ewl_text.c 25 May 2006 05:47:32 -0000 1.102 +++ ewl_text.c 26 May 2006 19:01:56 -0000 1.103 @@ -2530,6 +2530,14 @@ DRETURN_INT(idx, 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_text_cb_configure(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) @@ -2573,6 +2581,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 reveal callback + */ void ewl_text_cb_reveal(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { @@ -2638,6 +2654,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 obscure callback + */ void ewl_text_cb_obscure(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) @@ -2664,6 +2688,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 show callback + */ void ewl_text_cb_show(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { @@ -2683,6 +2715,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 hide callback + */ void ewl_text_cb_hide(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { @@ -2699,6 +2739,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 destroy callback + */ void ewl_text_cb_destroy(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { @@ -2729,6 +2777,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Mouse_Down + * @param data: UNUSED + * @return Returns no value + * @brief The mouse down callback + */ void ewl_text_cb_mouse_down(Ewl_Widget *w, void *ev, void *data __UNUSED__) { @@ -2792,6 +2848,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Mouse_Up data + * @param data: UNUSED + * @return Returns no value + * @brief The mouse up callback + */ void ewl_text_cb_mouse_up(Ewl_Widget *w, void *ev, void *data __UNUSED__) { @@ -2824,6 +2888,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: The Ewl_Event_Mouse_Move data + * @param data: UNUSED + * @return Returns no value + * @brief The mouse move callback + */ void ewl_text_cb_mouse_move(Ewl_Widget *w, void *ev, void *data __UNUSED__) { @@ -2849,6 +2921,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to work with + * @return Returns no value + * @brief The child add callback + */ void ewl_text_cb_child_add(Ewl_Container *c, Ewl_Widget *w) { @@ -2872,6 +2951,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to work with + * @param idx: UNUSED + * @return Returns no value + * @brief The child del callback + */ void ewl_text_cb_child_del(Ewl_Container *c, Ewl_Widget *w, int idx __UNUSED__) { @@ -2965,6 +3052,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 trigger destroy callback + */ void ewl_text_trigger_cb_destroy(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -3585,6 +3680,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: The event data + * @param data: The Ewl_Text_Trigger + * @return Returns no value + * @brief The trigger mouse in callback + */ void ewl_text_trigger_cb_mouse_in(Ewl_Widget *w __UNUSED__, void *ev, void *data) { @@ -3600,6 +3703,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: The event data + * @param data: The Ewl_Text_Trigger + * @return Returns no value + * @brief The trigger mouse out callback + */ void ewl_text_trigger_cb_mouse_out(Ewl_Widget *w __UNUSED__, void *ev, void *data) { @@ -3615,6 +3726,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: The event data + * @param data: The Ewl_Text_Trigger + * @return Returns no value + * @brief The trigger mouse up callback + */ void ewl_text_trigger_cb_mouse_up(Ewl_Widget *w __UNUSED__, void *ev, void *data) { @@ -3630,6 +3749,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev: The event data + * @param data: The Ewl_Text_Trigger + * @return Returns no value + * @brief The trigger mouse down callback + */ void ewl_text_trigger_cb_mouse_down(Ewl_Widget *w __UNUSED__, void *ev, void *data) { =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_tree.c,v retrieving revision 1.36 retrieving revision 1.37 diff -u -3 -r1.36 -r1.37 --- ewl_tree.c 25 May 2006 18:27:18 -0000 1.36 +++ ewl_tree.c 26 May 2006 19:01:56 -0000 1.37 @@ -726,6 +726,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_tree_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -757,6 +765,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 header configure callback + */ void ewl_tree_header_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -772,6 +788,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_tree_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -788,6 +812,12 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @return Returns no value + * @brief The child resize callback + */ void ewl_tree_child_resize_cb(Ewl_Container *c) { @@ -1023,6 +1053,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 tree node configure callback + */ void ewl_tree_node_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1071,6 +1109,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 tree node destroy callback + */ void ewl_tree_node_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1094,6 +1140,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: The Ewl_Tree_Node + * @return Returns no value + * @brief The tree node toggle callback + */ void ewl_tree_node_toggle_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data) @@ -1117,6 +1171,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: UNUSED + * @return Returns no value + * @brief The child add callback + */ void ewl_tree_node_child_add_cb(Ewl_Container *c, Ewl_Widget *w __UNUSED__) { @@ -1141,6 +1202,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to work with + * @param idx: UNUSED + * @return Returns no value + * @brief The child del callback + */ void ewl_tree_node_child_del_cb(Ewl_Container *c, Ewl_Widget *w, int idx __UNUSED__) { @@ -1153,6 +1222,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: UNUSED + * @return Returns no value + * @brief The tree node child show callback + */ void ewl_tree_node_child_show_cb(Ewl_Container *c, Ewl_Widget *w __UNUSED__) { @@ -1189,6 +1265,13 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to work with + * @return Returns no value + * @brief The tree node child hide callback + */ void ewl_tree_node_child_hide_cb(Ewl_Container *c, Ewl_Widget *w) { @@ -1221,6 +1304,15 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: The widget to work with + * @param size: UNUSED + * @param o: UNUSED + * @return Returns no value + * @brief The tree node resize callback + */ void ewl_tree_node_resize_cb(Ewl_Container *c, Ewl_Widget *w, int size __UNUSED__, Ewl_Orientation o __UNUSED__) @@ -1236,6 +1328,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Down data + * @param user_data: UNUSED + * @return Returns no value + * @brief The tree row select callback + */ void ewl_tree_row_select_cb(Ewl_Widget *w, void *ev_data, void *user_data __UNUSED__) @@ -1265,6 +1365,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 tree node hide callback + */ void ewl_tree_row_hide_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -1288,6 +1396,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: The user data + * @return Returns no value + * @brief The tree hscroll callback + */ void ewl_tree_hscroll_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_tree2.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- ewl_tree2.c 20 May 2006 08:14:54 -0000 1.18 +++ ewl_tree2.c 26 May 2006 19:01:56 -0000 1.19 @@ -443,6 +443,14 @@ DRETURN_INT(tree2->dirty, DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev: UNUSED + * @param data: UNUSED + * @return Returns no value + * @brief The destroy callback + */ void ewl_tree2_cb_destroy(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) { @@ -460,6 +468,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 configure callback + */ void ewl_tree2_cb_configure(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__) @@ -498,6 +514,15 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param c: The container to work with + * @param w: UNUSED + * @param size: UNUSED + * @param o: UNUSED + * @return Returns no value + * @brief The child resize callback + */ void ewl_tree2_cb_child_resize(Ewl_Container *c, Ewl_Widget *w __UNUSED__, int size __UNUSED__, =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_widget.c,v retrieving revision 1.81 retrieving revision 1.82 diff -u -3 -r1.81 -r1.82 --- ewl_widget.c 25 May 2006 18:27:18 -0000 1.81 +++ ewl_widget.c 26 May 2006 19:01:56 -0000 1.82 @@ -2017,13 +2017,18 @@ DRETURN_PTR(ol, DLEVEL_STABLE) } -/* - * Perform the series of operations common to every widget when +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param data: UNUSED + * @return Returns no value + * @brief Perform the series of operations common to every widget when * they are destroyed. This should ALWAYS be the the last callback * in the chain. */ void -ewl_widget_destroy_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *data __UNUSED__) { DENTER_FUNCTION(DLEVEL_STABLE); @@ -2086,11 +2091,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Every widget must show it's fx_clip_box to be seen +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Every widget must show it's fx_clip_box to be seen */ void -ewl_widget_show_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_show_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Container *pc; @@ -2115,11 +2125,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Every widget must hide it's fx_clip_box in order to hide +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Every widget must hide it's fx_clip_box in order to hide */ void -ewl_widget_hide_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_hide_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Container *pc; @@ -2145,16 +2160,20 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Request a new set of evas objects now that we're back on screen +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Request a new set of evas objects now that we're back on screen */ -void ewl_widget_reveal_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +void +ewl_widget_reveal_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Embed *emb; - /* printf("Revealing %s\n", w->appearance); */ - DENTER_FUNCTION(DLEVEL_STABLE); DCHECK_PARAM_PTR("w", w); @@ -2197,10 +2216,6 @@ if (!w->theme_object) { w->theme_object = edje_object_add(emb->evas); evas_object_repeat_events_set(w->theme_object, 1); - /* - printf("Created edje %d: %s\n", ++edjes, - w->bit_group); - */ } /* @@ -2260,11 +2275,11 @@ /* * Create clip box if necessary */ - if (!w->fx_clip_box && !ewl_object_flags_get(EWL_OBJECT(w), EWL_FLAG_VISIBLE_NOCLIP)) { + if (!w->fx_clip_box && !ewl_object_flags_get(EWL_OBJECT(w), + EWL_FLAG_VISIBLE_NOCLIP)) { w->fx_clip_box = ewl_embed_object_request(emb, "rectangle"); if (!w->fx_clip_box) { w->fx_clip_box = evas_object_rectangle_add(emb->evas); - /* printf("Created rectangle %d\n", ++rects); */ } evas_object_pass_events_set(w->fx_clip_box, TRUE); } @@ -2310,10 +2325,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Give up unnecessary objects when we're offscreen +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Give up unnecessary objects when we're offscreen */ -void ewl_widget_obscure_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +void +ewl_widget_obscure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Embed *emb; @@ -2364,11 +2385,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Perform the basic operations necessary for realizing a widget +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Perform the basic operations necessary for realizing a widget */ void -ewl_widget_realize_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_realize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { int l = 0, r = 0, t = 0, b = 0; @@ -2493,11 +2519,16 @@ DRETURN(DLEVEL_STABLE); } -/* - * Perform the basic operations necessary for unrealizing a widget +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Perform the basic operations necessary for unrealizing a widget */ void -ewl_widget_unrealize_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_unrealize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { DENTER_FUNCTION(DLEVEL_STABLE); @@ -2547,11 +2578,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Perform the basic operations necessary for configuring a widget +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Perform the basic operations necessary for configuring a widget */ void -ewl_widget_configure_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Embed *emb; @@ -2589,11 +2625,16 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } -/* - * Perform the basic operations necessary for reparenting a widget +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief Perform the basic operations necessary for reparenting a widget */ void -ewl_widget_reparent_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_reparent_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { Ewl_Container *pc; @@ -2613,8 +2654,16 @@ } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The enable callback + */ void -ewl_widget_enable_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_enable_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { DENTER_FUNCTION(DLEVEL_STABLE); @@ -2626,8 +2675,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 The disable callback + */ void -ewl_widget_disable_cb(Ewl_Widget * w, void *ev_data __UNUSED__, +ewl_widget_disable_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) { DENTER_FUNCTION(DLEVEL_STABLE); @@ -2639,6 +2696,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 focus in callback + */ void ewl_widget_focus_in_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2655,6 +2720,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 focus out callback + */ void ewl_widget_focus_out_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2671,6 +2744,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 mouse in callback + */ void ewl_widget_mouse_in_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2687,6 +2768,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 mouse out callback + */ void ewl_widget_mouse_out_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2703,6 +2792,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Down data + * @param user_data: UNUSED + * @return Returns no value + * @brief The mouse down callback + */ void ewl_widget_mouse_down_cb(Ewl_Widget *w, void *ev_data, void *user_data __UNUSED__) @@ -2723,6 +2820,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Up data + * @param user_data: UNUSED + * @return Returns no value + * @brief The mouse up callback + */ void ewl_widget_mouse_up_cb(Ewl_Widget *w, void *ev_data, void *user_data __UNUSED__) @@ -2761,6 +2866,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 mouse move callback + */ void ewl_widget_mouse_move_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2844,6 +2957,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: The widget to work with + * @param ev_data: The Ewl_Event_Mouse_Down data + * @param user_data: UNUSED + * @return Returns no value + * @brief The mouse down callback + */ void ewl_widget_drag_down_cb(Ewl_Widget *w, void *ev_data , void *user_data __UNUSED__) @@ -2870,6 +2991,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The drag move callback + */ void ewl_widget_drag_move_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -2901,6 +3030,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param w: UNUSED + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The drag up callback + */ void ewl_widget_drag_up_cb(Ewl_Widget *w __UNUSED__, void *ev_data __UNUSED__, void *user_data __UNUSED__) =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_window.c,v retrieving revision 1.44 retrieving revision 1.45 diff -u -3 -r1.44 -r1.45 --- ewl_window.c 22 May 2006 19:11:37 -0000 1.44 +++ ewl_window.c 26 May 2006 19:01:56 -0000 1.45 @@ -612,6 +612,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 realize callback + */ void ewl_window_realize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -793,6 +801,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 postrealize callback + */ void ewl_window_postrealize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -808,6 +824,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 realize transient callback + */ void ewl_window_realize_transient_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data) @@ -835,6 +859,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 unrealize callback + */ void ewl_window_unrealize_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -866,6 +898,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 show callback + */ void ewl_window_show_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -917,6 +957,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 expose callback + */ void ewl_window_expose_cb(Ewl_Widget *w, void *ev __UNUSED__, void *user_data __UNUSED__) @@ -948,6 +996,14 @@ DLEAVE_FUNCTION(DLEVEL_STABLE); } +/** + * @internal + * @param widget: The widget to work with + * @param ev_data: UNUSED + * @param user_data: UNUSED + * @return Returns no value + * @brief The hide callback + */ void ewl_window_hide_cb(Ewl_Widget *widget, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -975,6 +1031,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_window_destroy_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) @@ -997,6 +1061,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_window_configure_cb(Ewl_Widget *w, void *ev_data __UNUSED__, void *user_data __UNUSED__) ------------------------------------------------------- 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