Enlightenment CVS committal
Author : dj2
Project : e17
Module : libs/ewl
Dir : e17/libs/ewl/src/bin/tests/label
Modified Files:
ewl_label_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/label/ewl_label_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ewl_label_test.c 8 Dec 2007 06:43:09 -0000 1.2
+++ ewl_label_test.c 6 May 2008 20:09:05 -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_button.h"
@@ -16,117 +16,117 @@
static int label_test_set_get(char *buf, int len);
static Ewl_Unit_Test label_unit_tests[] = {
- {"label null get", label_null_test_get, NULL, -1, 0},
- {"label null set/get", label_null_test_set_get, NULL, -1, 0},
- {"label set/get", label_test_set_get, NULL, -1, 0},
- {NULL, NULL, NULL, -1, 0}
- };
+ {"label null get", label_null_test_get, NULL, -1, 0},
+ {"label null set/get", label_null_test_set_get, NULL, -1, 0},
+ {"label set/get", label_test_set_get, NULL, -1, 0},
+ {NULL, NULL, NULL, -1, 0}
+ };
void
test_info(Ewl_Test *test)
{
- test->name = "Label";
- test->tip = "Defines a widget for displaying a label";
- test->filename = __FILE__;
- test->func = create_test;
- test->type = EWL_TEST_TYPE_SIMPLE;
- test->unit_tests = label_unit_tests;
+ test->name = "Label";
+ test->tip = "Defines a widget for displaying a label";
+ test->filename = __FILE__;
+ test->func = create_test;
+ test->type = EWL_TEST_TYPE_SIMPLE;
+ test->unit_tests = label_unit_tests;
}
static int
create_test(Ewl_Container *box)
{
- Ewl_Widget *body, *o2, *o;
+ Ewl_Widget *body, *o2, *o;
- body = ewl_vbox_new();
- ewl_container_child_append(EWL_CONTAINER(box), body);
- ewl_widget_show(body);
-
- o = ewl_label_new();
- ewl_container_child_append(EWL_CONTAINER(body), o);
- ewl_object_alignment_set(EWL_OBJECT(o), EWL_FLAG_ALIGN_CENTER);
- ewl_label_text_set(EWL_LABEL(o), "First label");
- ewl_widget_show(o);
-
- o2 = ewl_button_new();
- ewl_button_label_set(EWL_BUTTON(o2), "Change Label");
- ewl_container_child_append(EWL_CONTAINER(body), o2);
- ewl_callback_append(o2, EWL_CALLBACK_CLICKED, cb_click, o);
- ewl_widget_show(o2);
+ body = ewl_vbox_new();
+ ewl_container_child_append(EWL_CONTAINER(box), body);
+ ewl_widget_show(body);
+
+ o = ewl_label_new();
+ ewl_container_child_append(EWL_CONTAINER(body), o);
+ ewl_object_alignment_set(EWL_OBJECT(o), EWL_FLAG_ALIGN_CENTER);
+ ewl_label_text_set(EWL_LABEL(o), "First label");
+ ewl_widget_show(o);
+
+ o2 = ewl_button_new();
+ ewl_button_label_set(EWL_BUTTON(o2), "Change Label");
+ ewl_container_child_append(EWL_CONTAINER(body), o2);
+ ewl_callback_append(o2, EWL_CALLBACK_CLICKED, cb_click, o);
+ ewl_widget_show(o2);
- return 1;
+ return 1;
}
void
cb_click(Ewl_Widget *w __UNUSED__, void *e __UNUSED__, void *data)
{
- if ((counter % 2) == 0)
- ewl_label_text_set(EWL_LABEL(data), "Second Label");
- else
- ewl_label_text_set(EWL_LABEL(data), "First label");
+ if ((counter % 2) == 0)
+ ewl_label_text_set(EWL_LABEL(data), "Second Label");
+ else
+ ewl_label_text_set(EWL_LABEL(data), "First label");
- counter ++;
+ counter ++;
}
static int
label_null_test_get(char *buf, int len)
{
- Ewl_Widget *label;
- int ret = 0;
+ Ewl_Widget *label;
+ int ret = 0;
- label = ewl_label_new();
+ label = ewl_label_new();
- if (ewl_label_text_get(EWL_LABEL(label)))
- LOG_FAILURE(buf, len, "text_get not NULL");
- else
- ret = 1;
+ if (ewl_label_text_get(EWL_LABEL(label)))
+ LOG_FAILURE(buf, len, "text_get not NULL");
+ else
+ ret = 1;
- ewl_widget_destroy(label);
+ ewl_widget_destroy(label);
- return ret;
+ return ret;
}
static int
label_null_test_set_get(char *buf, int len)
{
- Ewl_Widget *label;
- const char *val;
- int ret = 0;
+ Ewl_Widget *label;
+ const char *val;
+ int ret = 0;
- label = ewl_label_new();
+ label = ewl_label_new();
- ewl_label_text_set(EWL_LABEL(label), "some text");
- ewl_label_text_set(EWL_LABEL(label), NULL);
+ ewl_label_text_set(EWL_LABEL(label), "some text");
+ ewl_label_text_set(EWL_LABEL(label), NULL);
- val = ewl_label_text_get(EWL_LABEL(label));
- if (val)
- LOG_FAILURE(buf, len, "text_set_get %s instead of NULL", val);
- else
- ret = 1;
+ val = ewl_label_text_get(EWL_LABEL(label));
+ if (val)
+ LOG_FAILURE(buf, len, "text_set_get %s instead of NULL", val);
+ else
+ ret = 1;
- ewl_widget_destroy(label);
+ ewl_widget_destroy(label);
- return ret;
+ return ret;
}
static int
label_test_set_get(char *buf, int len)
{
- Ewl_Widget *label;
- const char *val;
- int ret = 0;
+ Ewl_Widget *label;
+ const char *val;
+ int ret = 0;
- label = ewl_label_new();
+ label = ewl_label_new();
- ewl_label_text_set(EWL_LABEL(label), "some text");
+ ewl_label_text_set(EWL_LABEL(label), "some text");
- val = ewl_label_text_get(EWL_LABEL(label));
- if (strcmp(val, "some text"))
- LOG_FAILURE(buf, len, "%s is not 'some text'", val);
- else
- ret = 1;
+ val = ewl_label_text_get(EWL_LABEL(label));
+ if (strcmp(val, "some text"))
+ LOG_FAILURE(buf, len, "%s is not 'some text'", val);
+ else
+ ret = 1;
- ewl_widget_destroy(label);
+ ewl_widget_destroy(label);
- return ret;
+ return ret;
}
-------------------------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs