Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        Makefile.am e_includes.h e_int_menus.c 
Added Files:
        e_eap_editor.c e_eap_editor.h 


Log Message:
- add initial gui for internal eap editor
- add menu entry to test it (no functionality yet)
- todo: look at focus effects for e_widget_entry


===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/Makefile.am,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -3 -r1.68 -r1.69
--- Makefile.am 24 Oct 2005 16:19:17 -0000      1.68
+++ Makefile.am 24 Oct 2005 23:08:20 -0000      1.69
@@ -102,7 +102,8 @@
 e_icon_layout.h \
 e_int_border_locks.h \
 e_thumb.h \
-e_int_border_remember.h
+e_int_border_remember.h \
+e_eap_editor.h
 
 enlightenment_src = \
 e_user.c \
@@ -186,6 +187,7 @@
 e_int_border_locks.c \
 e_thumb.c \
 e_int_border_remember.c \
+e_eap_editor.c \
 $(ENLIGHTENMENTHEADERS)
 
 enlightenment_SOURCES = \
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_includes.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- e_includes.h        24 Oct 2005 16:24:30 -0000      1.53
+++ e_includes.h        24 Oct 2005 23:08:20 -0000      1.54
@@ -83,3 +83,4 @@
 #include "e_int_border_locks.h"
 #include "e_thumb.h"
 #include "e_int_border_remember.h"
+#include "e_eap_editor.h"
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_int_menus.c,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -3 -r1.108 -r1.109
--- e_int_menus.c       16 Oct 2005 04:25:57 -0000      1.108
+++ e_int_menus.c       24 Oct 2005 23:08:20 -0000      1.109
@@ -611,6 +611,17 @@
 }
 
 static void
+_e_int_menus_eapedit_item_cb(void *data, E_Menu *m, E_Menu_Item *mi)
+{
+   /* This is temporarily put here so we can test the eap editor */
+   E_App_Edit *eap_edit;
+   E_App *a;
+   
+   a = e_app_empty_new("/tmp/foo.eap");
+   eap_edit = e_eap_edit_show(m->zone->container, a);
+}
+
+static void
 _e_int_menus_config_pre_cb(void *data, E_Menu *m)
 {
    E_Menu_Item *mi;
@@ -625,6 +636,10 @@
    mi = e_menu_item_new(m);
    e_menu_item_label_set(mi, _("Focus Settings"));
    e_menu_item_callback_set(mi, _e_int_menus_config_generic_cb, "focus");
+   
+   mi = e_menu_item_new(m);
+   e_menu_item_label_set(mi, _("Eap Editor"));
+   e_menu_item_callback_set(mi, _e_int_menus_eapedit_item_cb, NULL);   
 
    l = evas_hash_find(_e_int_menus_augmentation, "config");
    if (l)




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to