Enlightenment CVS committal
Author : rbdpngn
Project : e17
Module : libs/ewl
Dir : e17/libs/ewl/test
Modified Files:
Makefile.am ewl_image_test.c ewl_tree_test.c
Log Message:
Remove the last remaining dependancies on ewd. Everything in CVS should be
ported to ecore now.
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/Makefile.am,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- Makefile.am 27 Jan 2004 06:10:16 -0000 1.35
+++ Makefile.am 24 Mar 2004 05:20:19 -0000 1.36
@@ -2,7 +2,7 @@
MAINTAINERCLEANFILES = Makefile.in
CFLAGS = -g -W -Wall -Wno-implicit
-INCLUDES = -I$(top_srcdir)/src @edje_cflags@ @ecore_cflags@
@evas_cflags@ @ewd_cflags@
+INCLUDES = -I$(top_srcdir)/src @edje_cflags@ @ecore_cflags@
@evas_cflags@
bin_PROGRAMS = ewl_test
@@ -31,4 +31,4 @@
ewl_tree_test.c
# ewl_test_LDFLAGS =
-ewl_test_LDADD = $(top_builddir)/src/libewl.la @edje_libs@
@ecore_libs@ @evas_libs@ @ewd_libs@
+ewl_test_LDADD = $(top_builddir)/src/libewl.la @edje_libs@
@ecore_libs@ @evas_libs@
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/ewl_image_test.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ewl_image_test.c 30 Dec 2003 18:05:22 -0000 1.16
+++ ewl_image_test.c 24 Mar 2004 05:20:19 -0000 1.17
@@ -4,7 +4,7 @@
Ewl_Widget *image_win;
Ewl_Widget *image_box;
Ewl_Widget *image;
-Ewd_DList *images;
+Ecore_DList *images;
Ewl_Widget *entry_path;
Ewl_Widget *note_box;
Ewl_Widget *note;
@@ -14,12 +14,12 @@
{
char *str;
- ewd_dlist_goto_first(images);
+ ecore_dlist_goto_first(images);
- while ((str = ewd_dlist_remove_last(images)) != NULL)
+ while ((str = ecore_dlist_remove_last(images)) != NULL)
FREE(str);
- ewd_dlist_destroy(images);
+ ecore_dlist_destroy(images);
ewl_widget_destroy(w);
@@ -50,11 +50,11 @@
{
char *img = NULL;
- ewd_dlist_previous(images);
- img = ewd_dlist_current(images);
+ ecore_dlist_previous(images);
+ img = ecore_dlist_current(images);
if (!img)
- img = ewd_dlist_goto_last(images);
+ img = ecore_dlist_goto_last(images);
ewl_entry_set_text(EWL_ENTRY(entry_path), img);
ewl_image_set_file(EWL_IMAGE(image), img);
@@ -75,8 +75,8 @@
img = ewl_entry_get_text(EWL_ENTRY(entry_path));
if (img && __image_exists(img)) {
- ewd_dlist_append(images, img);
- ewd_dlist_goto_last(images);
+ ecore_dlist_append(images, img);
+ ecore_dlist_goto_last(images);
ewl_image_set_file(EWL_IMAGE(image), img);
} else
printf("ERROR: %s does not exist\n", img);
@@ -95,11 +95,11 @@
{
char *img = NULL;
- ewd_dlist_next(images);
- img = ewd_dlist_current(images);
+ ecore_dlist_next(images);
+ img = ecore_dlist_current(images);
if (!img)
- img = ewd_dlist_goto_first(images);
+ img = ecore_dlist_goto_first(images);
ewl_entry_set_text(EWL_ENTRY(entry_path), img);
ewl_image_set_file(EWL_IMAGE(image), img);
@@ -124,7 +124,7 @@
image_button = w;
- images = ewd_dlist_new();
+ images = ecore_dlist_new();
image_win = ewl_window_new();
ewl_window_set_title(EWL_WINDOW(image_win), "Image Test");
@@ -162,7 +162,7 @@
ewl_widget_show(image);
if (image_file)
- ewd_dlist_append(images, image_file);
+ ecore_dlist_append(images, image_file);
entry_path = ewl_entry_new(image_file);
ewl_container_append_child(EWL_CONTAINER(image_box), entry_path);
@@ -270,7 +270,7 @@
image_file = strdup("../data/images/e17-border.bits.db");
if (image_file)
- ewd_dlist_append(images, image_file);
+ ecore_dlist_append(images, image_file);
ewl_widget_show(image);
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/ewl_tree_test.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ewl_tree_test.c 28 Jan 2004 05:09:30 -0000 1.9
+++ ewl_tree_test.c 24 Mar 2004 05:20:19 -0000 1.10
@@ -1,6 +1,6 @@
#include "ewl_test.h"
-#define ROWS 10
+#define ROWS 2000
#define COLS 4
#define NEST 3
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs