Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        Ewl.h.in Makefile.am ewl_enums.h 
Added Files:
        ewl_freebox.c ewl_freebox.h 


Log Message:
- the start of a free layout container. you can either use the manual
  placement which will allow the user to place widgets where they wish. the
  auto layout which will just put stuff in in rows and columns and the
  comparator placement which will place in a given sort order
- Note, this dosen't actually do any layout yet, it is just the initial
  framework

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/Ewl.h.in,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- Ewl.h.in    30 Dec 2005 05:39:28 -0000      1.26
+++ Ewl.h.in    31 Dec 2005 06:03:36 -0000      1.27
@@ -274,6 +274,7 @@
 #include <ewl_misc.h>
 
 #include <ewl_box.h>
+#include <ewl_freebox.h>
 #include <ewl_border.h>
 
 #include <ewl_cell.h>
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/Makefile.am,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- Makefile.am 30 Dec 2005 05:39:28 -0000      1.18
+++ Makefile.am 31 Dec 2005 06:03:36 -0000      1.19
@@ -37,6 +37,7 @@
        ewl_fileselector.h \
        ewl_floater.h \
        ewl_filedialog.h \
+       ewl_freebox.h \
        ewl_grid.h \
        ewl_icon.h \
        ewl_iconbox.h \
@@ -102,6 +103,7 @@
        ewl_fileselector.c \
        ewl_floater.c \
        ewl_filedialog.c \
+       ewl_freebox.c \
        ewl_grid.c \
        ewl_icon.c \
        ewl_iconbox.c \
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_enums.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- ewl_enums.h 30 Dec 2005 05:39:28 -0000      1.31
+++ ewl_enums.h 31 Dec 2005 06:03:36 -0000      1.32
@@ -409,6 +409,14 @@
 };
 typedef enum Ewl_Icon_Type Ewl_Icon_Type;
 
+enum Ewl_Freebox_Layout_Type
+{
+       EWL_FREEBOX_LAYOUT_MANUAL,
+       EWL_FREEBOX_LAYOUT_COMPARATOR,
+       EWL_FREEBOX_LAYOUT_AUTO
+};
+typedef enum Ewl_Freebox_Layout_Type Ewl_Freebox_Layout_Type;
+
 /**
  * @}
  */ 




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to