Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk

Dir     : e17/libs/etk/src/lib


Modified Files:
        Etk.h Makefile.am etk_popup_window.c etk_types.h 
Added Files:
        etk_combobox_entry.c etk_combobox_entry.h 


Log Message:
[Etk_Combobox_Entry] A new widget that implements a combobox-entry.
[Misc] Misc additions here and there, helper funcitons, etc.


===================================================================
RCS file: /cvs/e/e17/libs/etk/src/lib/Etk.h,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- Etk.h       16 Jan 2007 23:49:26 -0000      1.47
+++ Etk.h       28 Jun 2007 11:05:44 -0000      1.48
@@ -31,6 +31,7 @@
 #include "etk_check_button.h"
 #include "etk_colorpicker.h"
 #include "etk_combobox.h"
+#include "etk_combobox_entry.h"   
 #include "etk_dialog.h"
 #include "etk_dnd.h"
 #include "etk_drag.h"
===================================================================
RCS file: /cvs/e/e17/libs/etk/src/lib/Makefile.am,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- Makefile.am 16 Jan 2007 23:49:26 -0000      1.51
+++ Makefile.am 28 Jun 2007 11:05:44 -0000      1.52
@@ -27,6 +27,7 @@
 etk_check_button.h \
 etk_colorpicker.h \
 etk_combobox.h \
+etk_combobox_entry.h \
 etk_config.h \
 etk_container.h \
 etk_dialog.h \
@@ -99,6 +100,7 @@
 etk_check_button.c \
 etk_colorpicker.c \
 etk_combobox.c \
+etk_combobox_entry.c \
 etk_config.c \
 etk_container.c \
 etk_dialog.c \
===================================================================
RCS file: /cvs/e/e17/libs/etk/src/lib/etk_popup_window.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- etk_popup_window.c  2 Apr 2007 09:48:29 -0000       1.19
+++ etk_popup_window.c  28 Jun 2007 11:05:44 -0000      1.20
@@ -149,7 +149,10 @@
       _etk_popup_window_focused_window = pop;
    }
    
-   /* Raise the new focused window */
+   /* Raise the new focused window - if its a normal window, dont */
+   if (popup_window && !ETK_IS_POPUP_WINDOW(popup_window))
+     return;
+   
    for (pop = popup_window; pop; pop = pop->parent)
    {
       if ((l = evas_list_find_list(_etk_popup_window_popped_parents, pop)))
===================================================================
RCS file: /cvs/e/e17/libs/etk/src/lib/etk_types.h,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -3 -r1.65 -r1.66
--- etk_types.h 25 Mar 2007 18:22:01 -0000      1.65
+++ etk_types.h 28 Jun 2007 11:05:44 -0000      1.66
@@ -43,6 +43,9 @@
 typedef struct Etk_Combobox Etk_Combobox;
 typedef struct Etk_Combobox_Column Etk_Combobox_Column;
 typedef struct Etk_Combobox_Item Etk_Combobox_Item;
+typedef struct Etk_Combobox_Entry Etk_Combobox_Entry;
+typedef struct Etk_Combobox_Entry_Column Etk_Combobox_Entry_Column;
+typedef struct Etk_Combobox_Entry_Item Etk_Combobox_Entry_Item;
 typedef struct Etk_Container Etk_Container;
 typedef struct Etk_Dialog Etk_Dialog;
 typedef struct _Etk_Drag Etk_Drag;



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to