Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : proto

Dir     : e17/proto/etk/src/lib


Modified Files:
        Etk.h Makefile.am etk_button.c etk_types.h 
Added Files:
        etk_tool_button.c etk_tool_button.h etk_toolbar.c 
        etk_toolbar.h 


Log Message:
add toolbar and a tool_button. ***THIS IS NOT READY YET***

===================================================================
RCS file: /cvs/e/e17/proto/etk/src/lib/Etk.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- Etk.h       27 Jul 2006 01:04:52 -0000      1.35
+++ Etk.h       13 Aug 2006 15:33:17 -0000      1.36
@@ -26,6 +26,7 @@
 #include "etk_stock.h"
 #include "etk_bin.h"
 #include "etk_box.h"
+#include "etk_toolbar.h"
 #include "etk_table.h"
 #include "etk_alignment.h"
 #include "etk_frame.h"
@@ -41,6 +42,7 @@
 #include "etk_toggle_button.h"
 #include "etk_check_button.h"
 #include "etk_radio_button.h"
+#include "etk_tool_button.h"   
 #include "etk_editable_text_object.h"
 #include "etk_textblock.h"
 #include "etk_entry.h"
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/lib/Makefile.am,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -3 -r1.40 -r1.41
--- Makefile.am 27 Jul 2006 01:04:52 -0000      1.40
+++ Makefile.am 13 Aug 2006 15:33:17 -0000      1.41
@@ -80,7 +80,9 @@
 etk_viewport.h \
 etk_widget.h \
 etk_window.h \
-etk_engine.h
+etk_engine.h \
+etk_toolbar.h \
+etk_tool_button.h
 
 libetk_la_SOURCES = \
 etk_alignment.c \
@@ -146,6 +148,8 @@
 etk_widget.c \
 etk_window.c \
 etk_engine.c \
+etk_toolbar.c \
+etk_tool_button.c \
 $(ETKHEADERS)
 
 installed_headersdir = $(prefix)/include/etk
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_button.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- etk_button.c        13 Aug 2006 10:41:15 -0000      1.21
+++ etk_button.c        13 Aug 2006 15:33:17 -0000      1.22
@@ -378,6 +378,7 @@
    button->is_pressed = ETK_FALSE;
    button->xalign = 0.5;
    button->yalign = 0.5;
+   button->tool = ETK_FALSE;   
 
    etk_signal_connect("realize", ETK_OBJECT(button), 
ETK_CALLBACK(_etk_button_realize_cb), NULL);
    etk_signal_connect("key_down", ETK_OBJECT(button), 
ETK_CALLBACK(_etk_button_key_down_cb), NULL);
@@ -603,7 +604,7 @@
       if (!button->box)
       {
         if (button->tool)
-           button->box = etk_vbox_new(ETK_FALSE, 8);
+           button->box = etk_vbox_new(ETK_FALSE, 1);
         else
            button->box = etk_hbox_new(ETK_FALSE, 8);      
         
===================================================================
RCS file: /cvs/e/e17/proto/etk/src/lib/etk_types.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- etk_types.h 27 Jul 2006 16:49:35 -0000      1.49
+++ etk_types.h 13 Aug 2006 15:33:17 -0000      1.50
@@ -101,6 +101,8 @@
 typedef struct Etk_Textblock_Node Etk_Textblock_Node;
 typedef struct _Etk_Toggle_Button Etk_Toggle_Button;
 typedef struct _Etk_Toplevel_Widget Etk_Toplevel_Widget;
+typedef struct _Etk_Toolbar Etk_Toolbar;
+typedef struct _Etk_Tool_Button Etk_Tool_Button;
 typedef struct _Etk_Tree Etk_Tree;
 typedef struct _Etk_Tree_Col Etk_Tree_Col;
 typedef struct _Etk_Tree_Model Etk_Tree_Model;



-------------------------------------------------------------------------
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