Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir     : e17/proto/etk/src/bin


Modified Files:
        etk_embed_test.c etk_notebook_test.c etk_table_test.c 
        etk_text_view_test.c 


Log Message:
* [Progress Bar] Fix a mem leak
* [Textblock] More work: the whole structure has been changed again, it's still 
a bit buggy... No rendering yet!


===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_embed_test.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- etk_embed_test.c    25 Jun 2006 02:22:04 -0000      1.4
+++ etk_embed_test.c    2 Jul 2006 04:01:19 -0000       1.5
@@ -24,7 +24,6 @@
 static Etk_Widget *embed;
 static int win_w = 240, win_h = 320;
 static double starting_time = 0.0;
-static Evas *_evas;
 
 /* Creates the window for the embed widget test */
 void etk_test_embed_window_create(void *data)
@@ -46,7 +45,6 @@
    ecore_evas_callback_resize_set(ecore_evas, _etk_test_embed_resize_cb);
    ecore_evas_callback_delete_request_set(ecore_evas, ecore_evas_hide);
    evas = ecore_evas_get(ecore_evas);
-   _evas = evas;
 
    /* Creates the evas objects */
    backdrop = evas_object_image_add(evas);
@@ -97,7 +95,6 @@
    Etk_Widget *embed;
    Etk_Widget *table;
    Etk_Widget *image;
-   Etk_Widget *alignment;
    Etk_Widget *buttons[3];
    Etk_Widget *labels[8];
    Etk_Widget *entries[6];
@@ -109,8 +106,6 @@
    buttons[0] = etk_button_new_from_stock(ETK_STOCK_DOCUMENT_OPEN);
    buttons[1] = etk_check_button_new();
    buttons[2] = etk_check_button_new();
-   alignment = etk_alignment_new(0.5, 0.5, 0.0, 0.0);
-   etk_container_add(ETK_CONTAINER(alignment), buttons[0]);
    
    labels[0] = etk_label_new("App Name");
    labels[1] = etk_label_new("Generic Info");
@@ -127,7 +122,7 @@
 
    table = etk_table_new(2, 10, ETK_FALSE);
    etk_table_attach(ETK_TABLE(table), image, 0, 0, 0, 0, 0, 0, 
ETK_FILL_POLICY_NONE);
-   etk_table_attach(ETK_TABLE(table), alignment, 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND | ETK_FILL_POLICY_HFILL);
+   etk_table_attach(ETK_TABLE(table), buttons[0], 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND);
    
    for (i = 0; i < 6; i++)
    {
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_notebook_test.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- etk_notebook_test.c 24 Jun 2006 17:54:06 -0000      1.7
+++ etk_notebook_test.c 2 Jul 2006 04:01:19 -0000       1.8
@@ -63,7 +63,6 @@
 {
    Etk_Widget *table;
    Etk_Widget *image;
-   Etk_Widget *alignment;
    Etk_Widget *buttons[3];
    Etk_Widget *labels[8];
    Etk_Widget *entries[6];
@@ -74,8 +73,6 @@
    buttons[0] = etk_button_new_from_stock(ETK_STOCK_DOCUMENT_OPEN);
    buttons[1] = etk_check_button_new();
    buttons[2] = etk_check_button_new();
-   alignment = etk_alignment_new(0.5, 0.5, 0.0, 0.0);
-   etk_container_add(ETK_CONTAINER(alignment), buttons[0]);
    
    labels[0] = etk_label_new("App Name");
    labels[1] = etk_label_new("Generic Info");
@@ -92,7 +89,7 @@
 
    table = etk_table_new(2, 10, ETK_FALSE);
    etk_table_attach(ETK_TABLE(table), image, 0, 0, 0, 0, 0, 0, 
ETK_FILL_POLICY_NONE);
-   etk_table_attach(ETK_TABLE(table), alignment, 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND | ETK_FILL_POLICY_HFILL);
+   etk_table_attach(ETK_TABLE(table), buttons[0], 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND);
    
    for (i = 0; i < 6; i++)
    {
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_table_test.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- etk_table_test.c    24 Jun 2006 17:54:06 -0000      1.8
+++ etk_table_test.c    2 Jul 2006 04:01:19 -0000       1.9
@@ -8,7 +8,6 @@
    Etk_Widget *vbox, *hbox;
    Etk_Widget *table;
    Etk_Widget *image;
-   Etk_Widget *alignment;
    Etk_Widget *buttons[5];
    Etk_Widget *labels[8];
    Etk_Widget *entries[6];
@@ -34,9 +33,6 @@
    buttons[3] = etk_button_new_from_stock(ETK_STOCK_DIALOG_CANCEL);
    buttons[4] = etk_button_new_from_stock(ETK_STOCK_DOCUMENT_SAVE);
    
-   alignment = etk_alignment_new(0.5, 0.5, 0.0, 0.0);
-   etk_container_add(ETK_CONTAINER(alignment), buttons[0]);
-   
    labels[0] = etk_label_new("App Name");
    labels[1] = etk_label_new("Generic Info");
    labels[2] = etk_label_new("Comments");
@@ -52,7 +48,7 @@
 
    table = etk_table_new(2, 10, ETK_FALSE);
    etk_table_attach(ETK_TABLE(table), image, 0, 0, 0, 0, 0, 0, 
ETK_FILL_POLICY_NONE);
-   etk_table_attach(ETK_TABLE(table), alignment, 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND | ETK_FILL_POLICY_HFILL);
+   etk_table_attach(ETK_TABLE(table), buttons[0], 1, 1, 0, 0, 0, 0, 
ETK_FILL_POLICY_HEXPAND);
    
    for (i = 0; i < 6; i++)
    {
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_text_view_test.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- etk_text_view_test.c        24 Jun 2006 17:54:06 -0000      1.5
+++ etk_text_view_test.c        2 Jul 2006 04:01:19 -0000       1.6
@@ -38,10 +38,7 @@
       "<u>right hand</u> "
       "And "
       "<u type=\"double\">now we need</u> "
-      "to test some <font color=#f00 size=8>COLOR</font>\n"
-      "(日本語 カタカナ ひらがな) "
-      "Heizölrückstoßabdämpfung fløde pingüino kilómetros cœur déçu 
l'âme "
-      "plutôt naïve Louÿs rêva crapaüter Íosa Úrmhac Óighe pór Éava 
Ádhaim",
+      "to test some <font color=#f00 size=8>COLOR</font>\n",
       ETK_TRUE);
    
    



Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to