Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/bin/tests/box


Modified Files:
        ewl_box_test.c 


Log Message:
- Pull the tutorials out of the src/bin/tests/*/*.c files and move them to 
doc/tutorials. This way we don't end up with any test structures showing up in 
the Ewl docs.


===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/box/ewl_box_test.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ewl_box_test.c      4 Dec 2007 05:27:57 -0000       1.1
+++ ewl_box_test.c      26 Feb 2008 04:24:10 -0000      1.2
@@ -5,38 +5,6 @@
 #include "ewl_button.h"
 #include <stdio.h>
 
-/**
- * @addtogroup Ewl_Box
- * @section box_tut Tutorial
- *
- * The Ewl_Box provides a simple linear layout container. There are a few
- * options to control the layout characteristics, but much of the layout is
- * dependent on the child widget settings. The first option encountered is the
- * orientation, which is either horizontal or vertical. Both orientations are
- * implemented within the same box widget, and is set with
- * ewl_box_orientation_set, but shortcuts exist in the form of ewl_hbox_new and
- * ewl_vbox_new. The default orientation is horizontal.
- *
- * @code
- * Ewl_Widget *box;
- * box = ewl_hbox_new();
- * ewl_widget_show(box);
- * @endcode
- *
- * After creating the box, children are added with the standard container calls
- * common to most containers. For example, a label and entry would be added as
- * follows.
- *
- * @code
- * ewl_container_child_append(EWL_CONTAINER(box), label);
- * ewl_container_child_append(EWL_CONTAINER(box), entry);
- * @endcode
- *
- * This would result in a label followed by the entry laid out horizontally.
- */
-
-
-
 static int create_test(Ewl_Container *box);
 static void toggle_child_vertical_align(Ewl_Widget *w, void *ev, void *data);
 static void toggle_child_horizontal_align(Ewl_Widget *w, void *ev, void *data);



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to