Enlightenment CVS committal Author : davemds Project : e17 Module : proto/edje_editor
Dir : e17/proto/edje_editor/src/bin Modified Files: Makefile.am main.c main.h Added Files: edje_editor_canvas.c edje_editor_canvas.h edje_editor_consolle.c edje_editor_consolle.h edje_editor_dialogs.c edje_editor_dialogs.h edje_editor_group.c edje_editor_group.h edje_editor_images.c edje_editor_images.h edje_editor_part.c edje_editor_part.h edje_editor_position.c edje_editor_position.h edje_editor_program.c edje_editor_program.h edje_editor_rect.c edje_editor_rect.h edje_editor_script.c edje_editor_script.h edje_editor_state.c edje_editor_state.h edje_editor_text.c edje_editor_text.h edje_editor_toolbar.c edje_editor_toolbar.h edje_editor_tree.c edje_editor_tree.h edje_editor_window.c edje_editor_window.h Removed Files: callbacks.c callbacks.h evas.c evas.h interface.c interface.h Log Message: * split up inteface.c and callbacks.c in more files. =================================================================== RCS file: /cvs/e/e17/proto/edje_editor/src/bin/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- Makefile.am 18 Mar 2008 13:17:40 -0000 1.5 +++ Makefile.am 2 Jul 2008 01:07:02 -0000 1.6 @@ -12,15 +12,40 @@ bin_PROGRAMS = edje_editor edje_editor_INCLUDES = \ -callbacks.h \ -evas.h \ -interface.h \ +edje_editor_images.h \ +edje_editor_tree.h \ +edje_editor_group.h \ +edje_editor_part.h \ +edje_editor_state.h \ +edje_editor_position.h \ +edje_editor_text.h \ +edje_editor_rect.h \ +edje_editor_program.h \ +edje_editor_script.h \ +edje_editor_toolbar.h \ +edje_editor_canvas.h \ +edje_editor_consolle.h \ +edje_editor_dialogs.h \ +edje_editor_window.h \ main.h + edje_editor_SOURCES = \ -callbacks.c \ -evas.c \ -interface.c \ +edje_editor_images.c \ +edje_editor_tree.c \ +edje_editor_group.c \ +edje_editor_part.c \ +edje_editor_state.c \ +edje_editor_position.c \ +edje_editor_text.c \ +edje_editor_rect.c \ +edje_editor_program.c \ +edje_editor_script.c \ +edje_editor_toolbar.c \ +edje_editor_canvas.c \ +edje_editor_consolle.c \ +edje_editor_dialogs.c \ +edje_editor_window.c \ main.c \ $(edje_editor_INCLUDES) =================================================================== RCS file: /cvs/e/e17/proto/edje_editor/src/bin/main.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -3 -r1.42 -r1.43 --- main.c 1 Jul 2008 16:05:00 -0000 1.42 +++ main.c 2 Jul 2008 01:07:02 -0000 1.43 @@ -7,8 +7,6 @@ #include <Etk.h> #include <Ecore_Str.h> -#include "evas.h" -#include "interface.h" #include "main.h" Evas_Object *EdjeTest_bg; =================================================================== RCS file: /cvs/e/e17/proto/edje_editor/src/bin/main.h,v retrieving revision 1.37 retrieving revision 1.38 diff -u -3 -r1.37 -r1.38 --- main.h 1 Jul 2008 01:56:28 -0000 1.37 +++ main.h 2 Jul 2008 01:07:02 -0000 1.38 @@ -5,6 +5,21 @@ #include <Ecore_Data.h> #include <Ecore_File.h> #include <Ecore_Evas.h> +#include "edje_editor_images.h" +#include "edje_editor_tree.h" +#include "edje_editor_group.h" +#include "edje_editor_part.h" +#include "edje_editor_state.h" +#include "edje_editor_position.h" +#include "edje_editor_text.h" +#include "edje_editor_rect.h" +#include "edje_editor_program.h" +#include "edje_editor_script.h" +#include "edje_editor_toolbar.h" +#include "edje_editor_canvas.h" +#include "edje_editor_consolle.h" +#include "edje_editor_dialogs.h" +#include "edje_editor_window.h" /* DEFINES */ #define FAKEWIN_BORDER_TOP 16 @@ -157,7 +172,7 @@ Evas_Object *rel1Y_align_guide; // Evas_Object *rel2X_align_guide; // Evas_Object *rel2Y_align_guide; // -Evas_Object *Consolle; //The lower consolle panel + Evas_List *stack; //Stack for the consolle int consolle_count; //Counter for the consolle ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs