Enlightenment CVS committal Author : ningerso Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/bin Modified Files: Ewl_Test.h main.c Log Message: Use explicit includes for the tests to reduce overall build time and the number of tests recompiled on header changes. =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/bin/Ewl_Test.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Ewl_Test.h 14 Mar 2007 00:09:38 -0000 1.7 +++ Ewl_Test.h 4 Jun 2007 18:46:31 -0000 1.8 @@ -2,7 +2,7 @@ #ifndef EWL_TEST_H #define EWL_TEST_H -#include <Ewl.h> +#include "ewl_base.h" /** * @enum Ewl_Test_Type =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/bin/main.c,v retrieving revision 1.63 retrieving revision 1.64 diff -u -3 -r1.63 -r1.64 --- main.c 29 Mar 2007 23:16:00 -0000 1.63 +++ main.c 4 Jun 2007 18:46:31 -0000 1.64 @@ -1,6 +1,17 @@ /* vim: set sw=8 ts=8 sts=8 noexpandtab: */ #include "Ewl_Test.h" #include "ewl_test_private.h" +#include "ewl_io_manager.h" +#include "ewl_label.h" +#include "ewl_menu.h" +#include "ewl_menubar.h" +#include "ewl_notebook.h" +#include "ewl_progressbar.h" +#include "ewl_scrollpane.h" +#include "ewl_statusbar.h" +#include "ewl_text.h" +#include "ewl_tree2.h" + #include <stdio.h> #include <string.h> #include <stdlib.h> @@ -22,7 +33,7 @@ static char *ewl_test_about_body = "The EWL Test application services two purposes\n" "The first is to allow us to test the different\n" - "pices of EWL as we develop and work on them.\n\n" + "pieces of EWL as we develop and work on them.\n\n" "The second piece is to allow deveopers to see\n" "tutorials and source listings for the different\n" "widgets in the system.\n\n" @@ -995,9 +1006,11 @@ ewl_window_name_set(EWL_WINDOW(win), "ewl_test"); ewl_callback_append(win, EWL_CALLBACK_DELETE_WINDOW, ewl_test_cb_delete_window, NULL); + ewl_object_size_request(EWL_OBJECT(win), 400, 400); + ewl_object_fill_policy_set(EWL_OBJECT(win), EWL_FLAG_FILL_ALL); ewl_widget_show(win); - vbox = ewl_vbox_new(); + vbox = ewl_scrollpane_new(); ewl_container_child_append(EWL_CONTAINER(win), vbox); ewl_widget_show(vbox); ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs