Stéphane Bauland wrote: > Made a patch.... > > 1. able it to compile fine. > 2. adding a modules icons. (actualy pointing to NULL, i need to finish > the libentrance_modules.so :)) nicey nicey nicey :)
I can't wait. Remember to grab me if you need anything from me. Way to go roo[t|k]moo[t|k] ;) Essien > > > > > icon is in : 48x48/mimetypes/package-x-generic.png > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------ > > ? Makefile > ? Makefile.in > ? aclocal.m4 > ? autom4te.cache > ? compile > ? config.guess > ? config.h > ? config.h.in > ? config.log > ? config.status > ? config.sub > ? configure > ? depcomp > ? install-sh > ? libtool > ? ltmain.sh > ? missing > ? stamp-h1 > ? data/Makefile > ? data/Makefile.in > ? data/icons.edj > ? data/icons/Makefile > ? data/icons/Makefile.in > ? data/icons/48x48/Makefile > ? data/icons/48x48/Makefile.in > ? data/icons/48x48/apps/Makefile > ? data/icons/48x48/apps/Makefile.in > ? data/icons/48x48/categories/Makefile > ? data/icons/48x48/categories/Makefile.in > ? data/icons/48x48/devices/Makefile > ? data/icons/48x48/devices/Makefile.in > ? data/icons/48x48/mimetypes/package-x-generic.png > ? data/icons/48x48/status/Makefile > ? data/icons/48x48/status/Makefile.in > ? debian/changelog > ? src/Makefile > ? src/Makefile.in > ? src/gui/.deps > ? src/gui/.libs > ? src/gui/Makefile > ? src/gui/Makefile.in > ? src/gui/entrance_edit_gui > ? src/widgets/.deps > ? src/widgets/.libs > ? src/widgets/Makefile > ? src/widgets/Makefile.in > ? src/widgets/libentrance_widgets.la > ? src/widgets/libentrance_widgets_la-_ew_list.lo > ? src/widgets/libentrance_widgets_la-ew.lo > ? src/widgets/libentrance_widgets_la-ew_button.lo > ? src/widgets/libentrance_widgets_la-ew_checkbox.lo > ? src/widgets/libentrance_widgets_la-ew_dialog.lo > ? src/widgets/libentrance_widgets_la-ew_edjelist.lo > ? src/widgets/libentrance_widgets_la-ew_entry.lo > ? src/widgets/libentrance_widgets_la-ew_group.lo > ? src/widgets/libentrance_widgets_la-ew_image.lo > ? src/widgets/libentrance_widgets_la-ew_label.lo > ? src/widgets/libentrance_widgets_la-ew_messagebox.lo > ? src/widgets/libentrance_widgets_la-ew_notice.lo > ? src/widgets/libentrance_widgets_la-ew_radio_button.lo > ? src/widgets/libentrance_widgets_la-ew_textlist.lo > ? src/widgets/libentrance_widgets_la-ew_toggle_button.lo > cvs diff: Diffing . > cvs diff: Diffing data > Index: data/icons.edc > =================================================================== > RCS file: /var/cvs/e/e17/proto/entrance_edit_gui/data/icons.edc,v > retrieving revision 1.2 > diff -u -r1.2 icons.edc > --- data/icons.edc 14 Aug 2006 18:38:41 -0000 1.2 > +++ data/icons.edc 15 Aug 2006 16:14:23 -0000 > @@ -40,5 +40,6 @@ > STOCK_ICON("48x48/status/dialog-information.png", > "icons/dialog/information", 48) > STOCK_ICON("48x48/status/dialog-warning.png", "icons/dialog/warning", > 48) > STOCK_ICON("48x48/status/dialog-question.png", > "icons/dialog/quiestion", 48) > + STOCK_ICON("48x48/mimetypes/package-x-generic.png", > "icons/main/modules", 48) > } > > cvs diff: Diffing data/icons > cvs diff: Diffing data/icons/48x48 > cvs diff: Diffing data/icons/48x48/apps > cvs diff: Diffing data/icons/48x48/categories > cvs diff: Diffing data/icons/48x48/devices > cvs diff: Diffing data/icons/48x48/mimetypes > cvs diff: Diffing data/icons/48x48/status > cvs diff: Diffing debian > cvs diff: Diffing m4 > cvs diff: Diffing src > cvs diff: Diffing src/gui > Index: src/gui/Makefile.am > =================================================================== > RCS file: /var/cvs/e/e17/proto/entrance_edit_gui/src/gui/Makefile.am,v > retrieving revision 1.9 > diff -u -r1.9 Makefile.am > --- src/gui/Makefile.am 13 Aug 2006 23:55:55 -0000 1.9 > +++ src/gui/Makefile.am 15 Aug 2006 16:14:24 -0000 > @@ -13,13 +13,13 @@ > Egui.h > > entrance_edit_gui_CFLAGS = \ > - -I$(top_srcdir)/src/widgets \ > [EMAIL PROTECTED]@ \ > [EMAIL PROTECTED]@ > + -I$(top_srcdir)/src/widgets \ > + @etk_cflags@ \ > + @entrance_edit_cflags@ > > entrance_edit_gui_LDFLAGS = \ > - -L$(top_srcdir)/src/widgets > + -L$(top_srcdir)/src/widgets > > entrance_edit_gui_LDADD = \ > - -lentrance_widgets \ > - @entrance_edit_libs@ > + -lentrance_widgets \ > + @entrance_edit_libs@ > Index: src/gui/main.c > =================================================================== > RCS file: /var/cvs/e/e17/proto/entrance_edit_gui/src/gui/main.c,v > retrieving revision 1.8 > diff -u -r1.8 main.c > --- src/gui/main.c 15 Aug 2006 02:36:45 -0000 1.8 > +++ src/gui/main.c 15 Aug 2006 16:14:24 -0000 > @@ -37,6 +37,7 @@ > ew_edjelist_add(tree, _("Behavior"), edjefile, "icons/main/behavior", > NULL, 0, egui_behavior_dialog_show); > ew_edjelist_add(tree, _("Sessions"),edjefile, "icons/main/sessions", > NULL, 0, egui_sessions_dialog_show); > ew_edjelist_add(tree, _("X settings"), edjefile, > "icons/main/xsettings",NULL, 0, egui_x_settings_dialog_show); > + ew_edjelist_add(tree, _("Modules"), edjefile, "icons/main/modules",NULL, > 0, NULL); > > Entrance_Widget group = ew_dialog_group_add(dialog, _("Configuration"), > EW_GROUP_VERTICAL); > ew_group_add(group, tree); > cvs diff: Diffing src/widgets > Index: src/widgets/ew_entry.h > =================================================================== > RCS file: /var/cvs/e/e17/proto/entrance_edit_gui/src/widgets/ew_entry.h,v > retrieving revision 1.2 > diff -u -r1.2 ew_entry.h > --- src/widgets/ew_entry.h 15 Aug 2006 03:50:04 -0000 1.2 > +++ src/widgets/ew_entry.h 15 Aug 2006 16:14:24 -0000 > @@ -33,7 +33,7 @@ > } \ > else \ > > -Entrance_Entry ew_entry_new(const char*, const char *, int); > +Entrance_Entry ew_entry_new(const char *label, const char *text, int > ispassword); > const char* ew_entry_get(Entrance_Entry); > void ew_entry_set(Entrance_Entry ew, const char *text); > void ew_entry_password_set(Entrance_Entry ew); > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > ------------------------------------------------------------------------ > > _______________________________________________ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel