Enlightenment CVS committal

Author  : moom
Project : e17
Module  : proto

Dir     : e17/proto/etk/src/bin


Modified Files:
        Makefile.am etk_test.c etk_test.h etk_text_view_test.c 


Log Message:
Changes:
--------
- [Etk_Progress_Bar] Implement etk_progress_bar_direction_set/get() and add a 
property called "direction"
- [Etk_Spin_Button] Remove it since it has never been functionnal and will be 
renamed to Etk_Spinner
- [Etk_Range] Implement etk_range_range_get() and etk_range_increments_get()
- [Etk_Separator] Add an abstract class Etk_Separator from which inherit the 
Etk_HSeparator and the Etk_Vseparator classes
- [Etk_Textblock] Start a rewrite of the textblock object

Documentation:
--------------
 - Etk_Popup_Window.c/h
 - Etk_Property.c/h
 - Etk_Radio_Button.c/h
 - Etk_Range.c/h
 - Etk_Scrollbar.c/h
 - Etk_Scrolled_View.c/h
 - Etk_Separator.c/h


===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/Makefile.am,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- Makefile.am 7 Apr 2006 15:36:10 -0000       1.14
+++ Makefile.am 2 Jun 2006 18:46:34 -0000       1.15
@@ -34,11 +34,10 @@
 etk_filechooser_test.c \
 etk_notebook_test.c \
 etk_progress_bar_test.c \
-etk_spin_button_test.c \
 etk_xdnd_test.c \
-etk_text_view_test.c \
 etk_combobox_test.c \
-etk_iconbox_test.c
+etk_iconbox_test.c \
+etk_text_view_test.c
 
 etk_test_LDADD = $(top_builddir)/src/lib/libetk.la \
                 @EVAS_LIBS@ @ECORE_LIBS@ @EDJE_LIBS@
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_test.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- etk_test.c  12 May 2006 19:13:39 -0000      1.20
+++ etk_test.c  2 Jun 2006 18:46:34 -0000       1.21
@@ -103,11 +103,6 @@
       ETK_TEST_MISC
    },
    {
-      "Text View",
-      etk_test_text_view_window_create,
-      ETK_TEST_ADVANCED_WIDGET
-   },
-   {
       "Combobox",
       etk_test_combobox_window_create,
       ETK_TEST_ADVANCED_WIDGET
@@ -115,6 +110,11 @@
    {
       "Iconbox",
       etk_test_iconbox_window_create,
+      ETK_TEST_ADVANCED_WIDGET
+   },
+   {
+      "Text View",
+      etk_test_text_view_window_create,
       ETK_TEST_ADVANCED_WIDGET
    }
 };
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_test.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- etk_test.h  7 Apr 2006 15:36:10 -0000       1.14
+++ etk_test.h  2 Jun 2006 18:46:34 -0000       1.15
@@ -17,10 +17,9 @@
 void etk_test_filechooser_window_create(void *data);
 void etk_test_notebook_window_create(void *data);
 void etk_test_progress_bar_window_create(void *data);
-void etk_test_spin_button_window_create(void *data);
 void etk_test_xdnd_window_create(void *data);
-void etk_test_text_view_window_create(void *data);
 void etk_test_combobox_window_create(void *data);
 void etk_test_iconbox_window_create(void *data);
+void etk_test_text_view_window_create(void *data);
 
 #endif
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/bin/etk_text_view_test.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- etk_text_view_test.c        17 Feb 2006 17:30:37 -0000      1.2
+++ etk_text_view_test.c        2 Jun 2006 18:46:34 -0000       1.3
@@ -23,7 +23,7 @@
 
    text_view = etk_text_view_new();
    /* TODO: */
-   etk_textblock_text_set(ETK_TEXT_VIEW(text_view)->textblock,
+   /*etk_textblock_text_set(ETK_TEXT_VIEW(text_view)->textblock,
       "<center><h1>Title</h1></center><br>"
       "<p><tab>A pragraph here <red>red text</red> and stuff.</p>"
       "<p>And escaping &lt; and &gt; as well as &amp; as <h1>normal.</h1></p>"
@@ -50,7 +50,7 @@
       "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"
       "</blockquote>"
-   );
+   );*/
    etk_box_pack_start(ETK_BOX(vbox), text_view, ETK_TRUE, ETK_TRUE, 0);
    
    etk_widget_show_all(win);



_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to