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:
- change tabs to spaces (Ewl uses an 8 space indent now instead of a tab)

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/box/ewl_box_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ewl_box_test.c      26 Feb 2008 04:24:10 -0000      1.2
+++ ewl_box_test.c      6 May 2008 20:09:01 -0000       1.3
@@ -1,4 +1,4 @@
-/* vim: set sw=8 ts=8 sts=8 noexpandtab: */
+/* vim: set sw=8 ts=8 sts=8 expandtab: */
 #include "Ewl_Test.h"
 #include "ewl_test_private.h"
 #include "ewl_box.h"
@@ -14,315 +14,315 @@
 void
 test_info(Ewl_Test *test)
 {
-       test->name = "Box";
-       test->tip = "Defines the Ewl_Box class used for\n"
-               "laying out Ewl_Widget's in a horizontal\n"
-               "or vertical line.";
-       test->filename = __FILE__;
-       test->func = create_test;
-       test->type = EWL_TEST_TYPE_CONTAINER;
+        test->name = "Box";
+        test->tip = "Defines the Ewl_Box class used for\n"
+               "laying out Ewl_Widget's in a horizontal\n"
+               "or vertical line.";
+        test->filename = __FILE__;
+        test->func = create_test;
+        test->type = EWL_TEST_TYPE_CONTAINER;
 }
 
 static int
 create_test(Ewl_Container *box)
 {
-       Ewl_Widget *vbox[2], *hbox[3];
-       Ewl_Widget *vbox_button[2][3];
-       Ewl_Widget *hbox_button[2][3];
-
-       /*
-        * Create the first horizontal box, this is positioned in the upper
-        * left corner.
-        */
-       hbox[0] = ewl_hbox_new();
-       ewl_container_child_append(EWL_CONTAINER(box), hbox[0]);
-       ewl_widget_show(hbox[0]);
-
-       /******************************************************************/
-       /* Create a box for holding the horizontal alignment test buttons */
-       /******************************************************************/
-       vbox[0] = ewl_vbox_new();
-       ewl_container_child_append(EWL_CONTAINER(hbox[0]), vbox[0]);
-       ewl_widget_show(vbox[0]);
-
-       /*
-        * Create and setup the button that starts in the left position.
-        */
-       vbox_button[0][0] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[0][0]), "Left");
-       ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][0]);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][0]),
-                                 EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][0]),
-                                EWL_FLAG_ALIGN_LEFT);
-       ewl_callback_append(vbox_button[0][0], EWL_CALLBACK_CLICKED,
-                           toggle_child_horizontal_align, NULL);
-       ewl_widget_show(vbox_button[0][0]);
-
-       /*
-        * Create and setup the button that starts in the center position.
-        */
-       vbox_button[0][1] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[0][1]), "Center");
-       ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][1]);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][1]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][1]),
-                                EWL_FLAG_ALIGN_CENTER);
-       ewl_callback_append(vbox_button[0][1], EWL_CALLBACK_CLICKED,
-                           toggle_child_horizontal_align, NULL);
-       ewl_widget_show(vbox_button[0][1]);
-
-       /*
-        * Create and setup the button that starts in the right position.
-        */
-       vbox_button[0][2] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[0][2]), "Right");
-       ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][2]);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][2]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][2]),
-                                EWL_FLAG_ALIGN_RIGHT);
-       ewl_callback_append(vbox_button[0][2], EWL_CALLBACK_CLICKED,
-                           toggle_child_horizontal_align, NULL);
-       ewl_widget_show(vbox_button[0][2]);
-
-       /****************************************************************/
-       /* Create a box for holding the Fill test buttons              */
-       /****************************************************************/
-       vbox[1] = ewl_vbox_new();
-       ewl_container_child_append(EWL_CONTAINER(hbox[0]), vbox[1]);
-       ewl_widget_show(vbox[1]);
-
-       /*
-        * Create and setup a button with no filling by default.
-        */
-       vbox_button[1][0] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[1][0]), "None");
-       ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][0]);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][0]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_box_orientation_set(EWL_BOX(vbox_button[1][0]),
-                       EWL_ORIENTATION_VERTICAL);
-       
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][0])->label_object),
-                                EWL_FLAG_ALIGN_CENTER);
-       ewl_callback_append(vbox_button[1][0], EWL_CALLBACK_CLICKED,
-                           toggle_child_fill, NULL);
-       ewl_widget_show(vbox_button[1][0]);
-
-       /*
-        * Create and setup a button with filling by default.
-        */
-       vbox_button[1][1] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[1][1]), "Fill");
-       ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][1]);
-       ewl_box_orientation_set(EWL_BOX(vbox_button[1][1]),
-                      EWL_ORIENTATION_VERTICAL);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][1]),
-                                  EWL_FLAG_FILL_FILL);
-       
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][1])->label_object),
-                                EWL_FLAG_ALIGN_CENTER);
-       ewl_callback_append(vbox_button[1][1], EWL_CALLBACK_CLICKED,
-                           toggle_child_fill, NULL);
-       ewl_widget_show(vbox_button[1][1]);
-
-       /*
-        * Create and setup a button with no filling by default.
-        */
-       vbox_button[1][2] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(vbox_button[1][2]), "None");
-       ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][2]);
-       ewl_box_orientation_set(EWL_BOX(vbox_button[1][2]),
-                       EWL_ORIENTATION_VERTICAL);
-       ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][2]),
-                                  EWL_FLAG_FILL_NONE);
-       
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][2])->label_object),
-                                EWL_FLAG_ALIGN_CENTER);
-       ewl_callback_append(vbox_button[1][2], EWL_CALLBACK_CLICKED,
-                           toggle_child_fill, NULL);
-       ewl_widget_show(vbox_button[1][2]);
-
-       /****************************************************************/
-       /* Create a box for holding the vertical alignment test buttons */
-       /****************************************************************/
-       hbox[1] = ewl_hbox_new();
-       ewl_container_child_append(EWL_CONTAINER(box), hbox[1]);
-       ewl_widget_show(hbox[1]);
-
-       /*
-        * Create and setup a button with top alignment by default.
-        */
-       hbox_button[0][0] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[0][0]), "Top");
-       ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][0]);
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][0]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][0]),
-                                EWL_FLAG_ALIGN_TOP);
-       ewl_callback_append(hbox_button[0][0], EWL_CALLBACK_CLICKED,
-                           toggle_child_vertical_align, NULL);
-       ewl_widget_show(hbox_button[0][0]);
-
-       /*
-        * Create and setup a button with center alignment by default.
-        */
-       hbox_button[0][1] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[0][1]), "Center");
-       ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][1]);
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][1]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][1]),
-                                EWL_FLAG_ALIGN_CENTER);
-       ewl_callback_append(hbox_button[0][1], EWL_CALLBACK_CLICKED,
-                           toggle_child_vertical_align, NULL);
-       ewl_widget_show(hbox_button[0][1]);
-
-       /*
-        * Create and setup a button with bottom alignment by default.
-        */
-       hbox_button[0][2] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[0][2]), "Bottom");
-       ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][2]);
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][2]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][2]),
-                                EWL_FLAG_ALIGN_BOTTOM);
-       ewl_callback_append(hbox_button[0][2], EWL_CALLBACK_CLICKED,
-                           toggle_child_vertical_align, NULL);
-       ewl_widget_show(hbox_button[0][2]);
-
-       /****************************************************************/
-       /* Create a box for holding the Shrink test buttons          */
-       /****************************************************************/
-       hbox[2] = ewl_hbox_new();
-       ewl_container_child_append(EWL_CONTAINER(box), hbox[2]);
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox[2]), EWL_FLAG_FILL_HFILL);
-       ewl_widget_show(hbox[2]);
-
-       /*
-        * Create and setup a button with no filling by default.
-        */
-       hbox_button[1][0] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[1][0]),
-                            "Shrink This Box To Fit It's Parent");
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][0]),
-                                  EWL_FLAG_FILL_HSHRINK);
-       ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][0]);
-       ewl_callback_append(hbox_button[1][0], EWL_CALLBACK_CLICKED,
-                           toggle_child_shrink, NULL);
-       ewl_widget_show(hbox_button[1][0]);
-
-       /*
-        * Create and setup a button with shrinking by default.
-        */
-       hbox_button[1][1] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[1][1]),
-                            "Shrink This Box To Fit It's Parent");
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][1]),
-                                  EWL_FLAG_FILL_HSHRINK);
-       ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][1]);
-       ewl_callback_append(hbox_button[1][1], EWL_CALLBACK_CLICKED,
-                           toggle_child_shrink, NULL);
-       ewl_widget_show(hbox_button[1][1]);
-
-       /*
-        * Create and setup a button with no filling by default.
-        */
-       hbox_button[1][2] = ewl_button_new();
-       ewl_button_label_set(EWL_BUTTON(hbox_button[1][2]),
-                            "Don't shrink this box at all");
-       ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][2]),
-                                  EWL_FLAG_FILL_NONE);
-       ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][2]);
-       ewl_callback_append(hbox_button[1][2], EWL_CALLBACK_CLICKED,
-                           toggle_child_shrink, NULL);
-       ewl_widget_show(hbox_button[1][2]);
+        Ewl_Widget *vbox[2], *hbox[3];
+        Ewl_Widget *vbox_button[2][3];
+        Ewl_Widget *hbox_button[2][3];
+
+        /*
+         * Create the first horizontal box, this is positioned in the upper
+         * left corner.
+         */
+        hbox[0] = ewl_hbox_new();
+        ewl_container_child_append(EWL_CONTAINER(box), hbox[0]);
+        ewl_widget_show(hbox[0]);
+
+        /******************************************************************/
+        /* Create a box for holding the horizontal alignment test buttons */
+        /******************************************************************/
+        vbox[0] = ewl_vbox_new();
+        ewl_container_child_append(EWL_CONTAINER(hbox[0]), vbox[0]);
+        ewl_widget_show(vbox[0]);
+
+        /*
+         * Create and setup the button that starts in the left position.
+         */
+        vbox_button[0][0] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[0][0]), "Left");
+        ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][0]);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][0]),
+                                 EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][0]),
+                                EWL_FLAG_ALIGN_LEFT);
+        ewl_callback_append(vbox_button[0][0], EWL_CALLBACK_CLICKED,
+                           toggle_child_horizontal_align, NULL);
+        ewl_widget_show(vbox_button[0][0]);
+
+        /*
+         * Create and setup the button that starts in the center position.
+         */
+        vbox_button[0][1] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[0][1]), "Center");
+        ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][1]);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][1]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][1]),
+                                EWL_FLAG_ALIGN_CENTER);
+        ewl_callback_append(vbox_button[0][1], EWL_CALLBACK_CLICKED,
+                           toggle_child_horizontal_align, NULL);
+        ewl_widget_show(vbox_button[0][1]);
+
+        /*
+         * Create and setup the button that starts in the right position.
+         */
+        vbox_button[0][2] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[0][2]), "Right");
+        ewl_container_child_append(EWL_CONTAINER(vbox[0]), vbox_button[0][2]);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[0][2]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(vbox_button[0][2]),
+                                EWL_FLAG_ALIGN_RIGHT);
+        ewl_callback_append(vbox_button[0][2], EWL_CALLBACK_CLICKED,
+                           toggle_child_horizontal_align, NULL);
+        ewl_widget_show(vbox_button[0][2]);
+
+        /****************************************************************/
+        /* Create a box for holding the Fill test buttons             */
+        /****************************************************************/
+        vbox[1] = ewl_vbox_new();
+        ewl_container_child_append(EWL_CONTAINER(hbox[0]), vbox[1]);
+        ewl_widget_show(vbox[1]);
+
+        /*
+         * Create and setup a button with no filling by default.
+         */
+        vbox_button[1][0] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[1][0]), "None");
+        ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][0]);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][0]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_box_orientation_set(EWL_BOX(vbox_button[1][0]),
+                       EWL_ORIENTATION_VERTICAL);
+        
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][0])->label_object),
+                                EWL_FLAG_ALIGN_CENTER);
+        ewl_callback_append(vbox_button[1][0], EWL_CALLBACK_CLICKED,
+                           toggle_child_fill, NULL);
+        ewl_widget_show(vbox_button[1][0]);
+
+        /*
+         * Create and setup a button with filling by default.
+         */
+        vbox_button[1][1] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[1][1]), "Fill");
+        ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][1]);
+        ewl_box_orientation_set(EWL_BOX(vbox_button[1][1]),
+                      EWL_ORIENTATION_VERTICAL);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][1]),
+                                  EWL_FLAG_FILL_FILL);
+        
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][1])->label_object),
+                                EWL_FLAG_ALIGN_CENTER);
+        ewl_callback_append(vbox_button[1][1], EWL_CALLBACK_CLICKED,
+                           toggle_child_fill, NULL);
+        ewl_widget_show(vbox_button[1][1]);
+
+        /*
+         * Create and setup a button with no filling by default.
+         */
+        vbox_button[1][2] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(vbox_button[1][2]), "None");
+        ewl_container_child_append(EWL_CONTAINER(vbox[1]), vbox_button[1][2]);
+        ewl_box_orientation_set(EWL_BOX(vbox_button[1][2]),
+                       EWL_ORIENTATION_VERTICAL);
+        ewl_object_fill_policy_set(EWL_OBJECT(vbox_button[1][2]),
+                                  EWL_FLAG_FILL_NONE);
+        
ewl_object_alignment_set(EWL_OBJECT(EWL_BUTTON(vbox_button[1][2])->label_object),
+                                EWL_FLAG_ALIGN_CENTER);
+        ewl_callback_append(vbox_button[1][2], EWL_CALLBACK_CLICKED,
+                           toggle_child_fill, NULL);
+        ewl_widget_show(vbox_button[1][2]);
+
+        /****************************************************************/
+        /* Create a box for holding the vertical alignment test buttons */
+        /****************************************************************/
+        hbox[1] = ewl_hbox_new();
+        ewl_container_child_append(EWL_CONTAINER(box), hbox[1]);
+        ewl_widget_show(hbox[1]);
+
+        /*
+         * Create and setup a button with top alignment by default.
+         */
+        hbox_button[0][0] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[0][0]), "Top");
+        ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][0]);
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][0]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][0]),
+                                EWL_FLAG_ALIGN_TOP);
+        ewl_callback_append(hbox_button[0][0], EWL_CALLBACK_CLICKED,
+                           toggle_child_vertical_align, NULL);
+        ewl_widget_show(hbox_button[0][0]);
+
+        /*
+         * Create and setup a button with center alignment by default.
+         */
+        hbox_button[0][1] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[0][1]), "Center");
+        ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][1]);
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][1]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][1]),
+                                EWL_FLAG_ALIGN_CENTER);
+        ewl_callback_append(hbox_button[0][1], EWL_CALLBACK_CLICKED,
+                           toggle_child_vertical_align, NULL);
+        ewl_widget_show(hbox_button[0][1]);
+
+        /*
+         * Create and setup a button with bottom alignment by default.
+         */
+        hbox_button[0][2] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[0][2]), "Bottom");
+        ewl_container_child_append(EWL_CONTAINER(hbox[1]), hbox_button[0][2]);
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[0][2]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_object_alignment_set(EWL_OBJECT(hbox_button[0][2]),
+                                EWL_FLAG_ALIGN_BOTTOM);
+        ewl_callback_append(hbox_button[0][2], EWL_CALLBACK_CLICKED,
+                           toggle_child_vertical_align, NULL);
+        ewl_widget_show(hbox_button[0][2]);
+
+        /****************************************************************/
+        /* Create a box for holding the Shrink test buttons         */
+        /****************************************************************/
+        hbox[2] = ewl_hbox_new();
+        ewl_container_child_append(EWL_CONTAINER(box), hbox[2]);
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox[2]), EWL_FLAG_FILL_HFILL);
+        ewl_widget_show(hbox[2]);
+
+        /*
+         * Create and setup a button with no filling by default.
+         */
+        hbox_button[1][0] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[1][0]),
+                            "Shrink This Box To Fit It's Parent");
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][0]),
+                                  EWL_FLAG_FILL_HSHRINK);
+        ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][0]);
+        ewl_callback_append(hbox_button[1][0], EWL_CALLBACK_CLICKED,
+                           toggle_child_shrink, NULL);
+        ewl_widget_show(hbox_button[1][0]);
+
+        /*
+         * Create and setup a button with shrinking by default.
+         */
+        hbox_button[1][1] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[1][1]),
+                            "Shrink This Box To Fit It's Parent");
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][1]),
+                                  EWL_FLAG_FILL_HSHRINK);
+        ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][1]);
+        ewl_callback_append(hbox_button[1][1], EWL_CALLBACK_CLICKED,
+                           toggle_child_shrink, NULL);
+        ewl_widget_show(hbox_button[1][1]);
+
+        /*
+         * Create and setup a button with no filling by default.
+         */
+        hbox_button[1][2] = ewl_button_new();
+        ewl_button_label_set(EWL_BUTTON(hbox_button[1][2]),
+                            "Don't shrink this box at all");
+        ewl_object_fill_policy_set(EWL_OBJECT(hbox_button[1][2]),
+                                  EWL_FLAG_FILL_NONE);
+        ewl_container_child_append(EWL_CONTAINER(hbox[2]), hbox_button[1][2]);
+        ewl_callback_append(hbox_button[1][2], EWL_CALLBACK_CLICKED,
+                           toggle_child_shrink, NULL);
+        ewl_widget_show(hbox_button[1][2]);
 
-       return 1;
+        return 1;
 }
 
 static void
 toggle_child_fill(Ewl_Widget * w, void *ev __UNUSED__,
-                                       void *data __UNUSED__)
+                                       void *data __UNUSED__)
 {
-       unsigned int f;
+        unsigned int f;
 
-       f = ewl_object_fill_policy_get(EWL_OBJECT(w));
+        f = ewl_object_fill_policy_get(EWL_OBJECT(w));
 
-       if (f == EWL_FLAG_FILL_NONE) {
-               ewl_button_label_set(EWL_BUTTON(w), "Fill");
-               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_FILL);
-       } else {
-               ewl_button_label_set(EWL_BUTTON(w), "None");
-               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_NONE);
-       }
+        if (f == EWL_FLAG_FILL_NONE) {
+               ewl_button_label_set(EWL_BUTTON(w), "Fill");
+               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_FILL);
+        } else {
+               ewl_button_label_set(EWL_BUTTON(w), "None");
+               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_NONE);
+        }
 }
 
 static void
 toggle_child_shrink(Ewl_Widget * w, void *ev __UNUSED__,
-                                       void *data __UNUSED__)
+                                       void *data __UNUSED__)
 {
-       unsigned int f;
+        unsigned int f;
 
-       f = ewl_object_fill_policy_get(EWL_OBJECT(w));
+        f = ewl_object_fill_policy_get(EWL_OBJECT(w));
 
-       if (f == EWL_FLAG_FILL_NONE) {
-               ewl_object_fill_policy_set(EWL_OBJECT(w),
-                                          EWL_FLAG_FILL_HSHRINK);
-               ewl_button_label_set(EWL_BUTTON(w),
-                                    "Shrink This Box To Fit It's Parent");
-       } else {
-               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_NONE);
-               ewl_button_label_set(EWL_BUTTON(w),
-                                    "Don't shrink this box at all");
-       }
+        if (f == EWL_FLAG_FILL_NONE) {
+               ewl_object_fill_policy_set(EWL_OBJECT(w),
+                                          EWL_FLAG_FILL_HSHRINK);
+               ewl_button_label_set(EWL_BUTTON(w),
+                                    "Shrink This Box To Fit It's Parent");
+        } else {
+               ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_NONE);
+               ewl_button_label_set(EWL_BUTTON(w),
+                                    "Don't shrink this box at all");
+        }
 }
 
 static void
 toggle_child_horizontal_align(Ewl_Widget *w, void *ev __UNUSED__,
-                                       void *data __UNUSED__)
+                                       void *data __UNUSED__)
 {
-       unsigned int   a;
-       char        l[10];
+        unsigned int   a;
+        char       l[10];
 
-       a = ewl_object_alignment_get(EWL_OBJECT(w));
+        a = ewl_object_alignment_get(EWL_OBJECT(w));
 
-       if (a == EWL_FLAG_ALIGN_LEFT) {
-               a = EWL_FLAG_ALIGN_CENTER;
-               snprintf(l, 10, "Center");
-       } else if (a == EWL_FLAG_ALIGN_CENTER) {
-               a = EWL_FLAG_ALIGN_RIGHT;
-               snprintf(l, 10, "Right");
-       } else if (a == EWL_FLAG_ALIGN_RIGHT) {
-               a = EWL_FLAG_ALIGN_LEFT;
-               snprintf(l, 10, "Left");
-       }
+        if (a == EWL_FLAG_ALIGN_LEFT) {
+               a = EWL_FLAG_ALIGN_CENTER;
+               snprintf(l, 10, "Center");
+        } else if (a == EWL_FLAG_ALIGN_CENTER) {
+               a = EWL_FLAG_ALIGN_RIGHT;
+               snprintf(l, 10, "Right");
+        } else if (a == EWL_FLAG_ALIGN_RIGHT) {
+               a = EWL_FLAG_ALIGN_LEFT;
+               snprintf(l, 10, "Left");
+        }
 
-       ewl_button_label_set(EWL_BUTTON(w), l);
-       ewl_object_alignment_set(EWL_OBJECT(w), a);
+        ewl_button_label_set(EWL_BUTTON(w), l);
+        ewl_object_alignment_set(EWL_OBJECT(w), a);
 }
 
 static void
 toggle_child_vertical_align(Ewl_Widget *w, void *ev __UNUSED__,
-                                               void *data __UNUSED__)
+                                               void *data __UNUSED__)
 {
-       unsigned int   a;
-       char        l[10];
+        unsigned int   a;
+        char       l[10];
 
-       a = ewl_object_alignment_get(EWL_OBJECT(w));
+        a = ewl_object_alignment_get(EWL_OBJECT(w));
 
-       if (a == EWL_FLAG_ALIGN_TOP) {
-               a = EWL_FLAG_ALIGN_CENTER;
-               snprintf(l, 10, "Center");
-       } else if (a == EWL_FLAG_ALIGN_CENTER) {
-               a = EWL_FLAG_ALIGN_BOTTOM;
-               snprintf(l, 10, "Bottom");
-       } else if (a == EWL_FLAG_ALIGN_BOTTOM) {
-               a = EWL_FLAG_ALIGN_TOP;
-               snprintf(l, 10, "Top");
-       }
+        if (a == EWL_FLAG_ALIGN_TOP) {
+               a = EWL_FLAG_ALIGN_CENTER;
+               snprintf(l, 10, "Center");
+        } else if (a == EWL_FLAG_ALIGN_CENTER) {
+               a = EWL_FLAG_ALIGN_BOTTOM;
+               snprintf(l, 10, "Bottom");
+        } else if (a == EWL_FLAG_ALIGN_BOTTOM) {
+               a = EWL_FLAG_ALIGN_TOP;
+               snprintf(l, 10, "Top");
+        }
 
-       ewl_button_label_set(EWL_BUTTON(w), l);
-       ewl_object_alignment_set(EWL_OBJECT(w), a);
+        ewl_button_label_set(EWL_BUTTON(w), l);
+        ewl_object_alignment_set(EWL_OBJECT(w), a);
 }
 



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to