Enlightenment CVS committal

Author  : chaos
Project : e17
Module  : proto

Dir     : e17/proto/entropy/src/plugins


Modified Files:
        etk_list_viewer.c 


Log Message:
* Work on multi-file select actions in context menu

===================================================================
RCS file: /cvs/e/e17/proto/entropy/src/plugins/etk_list_viewer.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -3 -r1.67 -r1.68
--- etk_list_viewer.c   17 Jul 2006 17:19:28 -0000      1.67
+++ etk_list_viewer.c   18 Jul 2006 14:09:52 -0000      1.68
@@ -434,8 +434,18 @@
        } else {
                /*Multi select popup*/
                Ecore_List* files = ecore_list_new();
+               Evas_List* l;
 
+               printf("Preparing multi-select popup..\n");
 
+               for (l = rows; l; ) {
+                       gui_file* file = 
ecore_hash_get(etk_list_viewer_row_hash, l->data);
+                       if (file) ecore_list_append(files, file->file);
+                       
+                       l=l->next;
+               }
+
+               entropy_etk_context_menu_popup_multi(instance, files);
 
                ecore_list_destroy(files);
        }



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to