Enlightenment CVS committal Author : moom16 Project : e17 Module : proto
Dir : e17/proto/etk/src/bin Modified Files: Makefile.am etk_entry_test.c etk_test.c etk_test.h Added Files: etk_scrolled_view_test.c Log Message: * Clip the watermark in the tree theme * Rewrite the scrollbar to take profit of the drag features of edje * Add the ability to clip a widget against an evas object * Add a scrolled view!!! :) * Add a viewport to make every widgets scrollable =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/bin/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- Makefile.am 28 Oct 2005 14:06:25 -0000 1.3 +++ Makefile.am 31 Oct 2005 21:36:40 -0000 1.4 @@ -27,7 +27,8 @@ etk_canvas_test.c \ etk_colorpicker_test.c \ etk_tree_test.c \ -etk_paned_test.c +etk_paned_test.c \ +etk_scrolled_view_test.c etk_test_LDADD = $(top_builddir)/src/lib/libetk.la \ @ecore_libs@ @evas_libs@ @edje_libs@ =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/bin/etk_entry_test.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- etk_entry_test.c 16 Oct 2005 00:05:57 -0000 1.2 +++ etk_entry_test.c 31 Oct 2005 21:36:40 -0000 1.3 @@ -28,7 +28,7 @@ } win = etk_window_new(); - etk_window_title_set(ETK_WINDOW(win), _("Etk Entry test")); + etk_window_title_set(ETK_WINDOW(win), _("Etk Entry Test")); etk_signal_connect("delete_event", ETK_OBJECT(win), ETK_CALLBACK(_etk_test_entry_window_deleted_cb), win); =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/bin/etk_test.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- etk_test.c 28 Oct 2005 14:06:25 -0000 1.3 +++ etk_test.c 31 Oct 2005 21:36:40 -0000 1.4 @@ -39,6 +39,10 @@ { "Paned", etk_test_paned_window_create + }, + { + "Scrolled View", + etk_test_scrolled_view_window_create } }; static int num_tests = sizeof(tests) / sizeof (tests[0]); @@ -59,14 +63,14 @@ etk_window_title_set(ETK_WINDOW(win), _("Etk Test Application")); etk_signal_connect("destroy", ETK_OBJECT(win), ETK_CALLBACK(_etk_test_main_quit_cb), NULL); - table = etk_table_new((num_tests + 2) / 3, 3, 1); + table = etk_table_new((num_tests + 3) / 4, 4, TRUE); etk_container_add(ETK_CONTAINER(win), table); for (i = 0; i < num_tests; i++) { button = etk_button_new_with_label(_(tests[i].name)); etk_signal_connect_swapped("clicked", ETK_OBJECT(button), ETK_CALLBACK(tests[i].func), NULL); - etk_table_attach_defaults(ETK_TABLE(table), button, i / 3, i / 3, i % 3, i % 3); + etk_table_attach_defaults(ETK_TABLE(table), button, i / 4, i / 4, i % 4, i % 4); } etk_widget_show_all(win); } =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/bin/etk_test.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- etk_test.h 28 Oct 2005 14:06:25 -0000 1.4 +++ etk_test.h 31 Oct 2005 21:36:40 -0000 1.5 @@ -19,5 +19,6 @@ void etk_test_canvas_window_create(void *data); void etk_test_tree_window_create(void *data); void etk_test_paned_window_create(void *data); +void etk_test_scrolled_view_window_create(void *data); #endif ------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training Attendees Through End of 2005 Visit http://www.jboss.com/services/certification for more information _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs