E CVS: e kwo

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
dialog.c ewins.c iconify.c menus.c pager.c 


Log Message:
Internal window initial setup fixes.
===
RCS file: /cvsroot/enlightenment/e16/e/src/dialog.c,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -3 -r1.100 -r1.101
--- dialog.c20 Feb 2005 18:51:52 -  1.100
+++ dialog.c27 Feb 2005 13:17:28 -  1.101
@@ -534,10 +534,19 @@
 static void
 DialogEwinInit(EWin * ewin, void *ptr)
 {
+   Dialog *d = ptr;
+
ewin-data = ptr;
+
ewin-MoveResize = DialogEwinMoveResize;
ewin-Refresh = DialogEwinRefresh;
ewin-Close = DialogEwinClose;
+
+   ewin-client.width.min = ewin-client.width.max = ewin-client.w = d-w;
+   ewin-client.height.min = ewin-client.height.max = ewin-client.h = d-h;
+   ewin-client.no_resize_h = ewin-client.no_resize_v = 1;
+
+   EoSetLayer(ewin, 10);
 }
 
 void
===
RCS file: /cvsroot/enlightenment/e16/e/src/ewins.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- ewins.c 27 Feb 2005 01:11:51 -  1.20
+++ ewins.c 27 Feb 2005 13:17:28 -  1.21
@@ -548,7 +548,10 @@
 }
 
 static EWin*
-AdoptInternal(Window win, Border * border, int type)
+AdoptInternal(Window win, Border * border, int type, void (*init) (EWin *
+  ewin,
+  void *ptr),
+ void *ptr)
 {
EWin   *ewin;
 
@@ -556,57 +559,15 @@
 
ewin-border = border;
 
-   /* This should go into the init functions... */
-   switch (type)
- {
- case EWIN_TYPE_DIALOG:
-   EoSetLayer(ewin, 10);
-   break;
- case EWIN_TYPE_MENU:
-   EoSetLayer(ewin, 30);
-   ewin-skiptask = 1;
-   ewin-skip_ext_pager = 1;
-   ewin-no_actions = 1;
-   ewin-skipfocus = 1;
-   ewin-skipwinlist = 1;
-   ewin-neverfocus = 1;
-   ewin-client.grav = StaticGravity;
-   break;
- case EWIN_TYPE_ICONBOX:
-   EoSetSticky(ewin, 1);
-   ewin-skiptask = 1;
-   ewin-skip_ext_pager = 1;
-   ewin-skipfocus = 1;
-   ewin-skipwinlist = 1;
-   ewin-neverfocus = 1;
-   ewin-props.inhibit_iconify = 1;
-   ewin-props.autosave = 1;
-   break;
- case EWIN_TYPE_PAGER:
-   EoSetSticky(ewin, 1);
-   ewin-skiptask = 1;
-   ewin-skip_ext_pager = 1;
-   ewin-skipfocus = 1;
-   ewin-skipwinlist = 1;
-   ewin-neverfocus = 1;
-   ewin-props.autosave = 1;
-   break;
- }
+   if (init)
+  init(ewin, ptr); /* Type specific initialisation */
 
ICCCM_AdoptStart(ewin);
ICCCM_GetTitle(ewin, 0);
ICCCM_GetInfo(ewin, 0);
ICCCM_GetShapeInfo(ewin);
ICCCM_GetGeoms(ewin, 0);
-   switch (type)
- {
- case EWIN_TYPE_DIALOG:
- case EWIN_TYPE_MENU:
-   ewin-client.width.min = ewin-client.width.max = ewin-client.w;
-   ewin-client.height.min = ewin-client.height.max = ewin-client.h;
-   ewin-client.no_resize_h = ewin-client.no_resize_v = 1;
-   break;
- }
+
WindowMatchEwinOps(ewin);   /* Window matches */
SnapshotEwinMatch(ewin);/* Saved settings */
ICCCM_MatchSize(ewin);
@@ -934,21 +895,24 @@
 
ecore_x_grab();
 
-   ewin = AdoptInternal(win, b, type);
-
-   EoSetDesk(ewin, EoGetDesk(ewin));
-   EwinConformToDesktop(ewin);
+   ewin = AdoptInternal(win, b, type, init, ptr);
 
-   if (init)
-  init(ewin, ptr); /* Type specific initialisation */
+#if 0
+   Eprintf(Desk=%d, layer=%d, sticky=%d, floating=%d\n,
+  EoGetDesk(ewin), EoGetLayer(ewin), EoIsSticky(ewin),
+  EoIsFloating(ewin));
+#endif
 
 #if 0  /* FIXME - Remove? */
EwinBorderDraw(ewin, 1, 1, 1);
 #endif
 
+   EwinConformToDesktop(ewin);
EwinDetermineArea(ewin);
 
+#if 1  /* FIXME - Handle via object stack */
StartupWindowsRaise();
+#endif
 
ecore_x_ungrab();
 
===
RCS file: /cvsroot/enlightenment/e16/e/src/iconify.c,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -3 -r1.136 -r1.137
--- iconify.c   26 Feb 2005 08:32:16 -  1.136
+++ iconify.c   27 Feb 2005 13:17:29 -  1.137
@@ -503,7 +503,7 @@
call_depth++;
 
if (!TransparencyEnabled() 
-   ib-w == ewin-client.w  ib-h == ewin-client.h)
+   ib-w == ewin-client.w  ib-h == ewin-client.h  !ib-force_update)
   goto done;
 
ib-w = ewin-client.w;
@@ -541,9 +541,20 @@
 IconboxEwinInit(EWin * ewin, void *ptr)
 {
ewin-data = (Iconbox *) ptr;
+
ewin-MoveResize = IconboxEwinMoveResize;
ewin-Refresh = IconboxEwinRefresh;
ewin-Close = IconboxEwinClose;
+
+   ewin-skiptask = 1;
+   

E CVS: e kwo

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
E.h config.c desktops.c ewins.c main.c setup.c startup.c 


Log Message:
Handle startup window stacking via object stack.
===
RCS file: /cvsroot/enlightenment/e16/e/src/E.h,v
retrieving revision 1.378
retrieving revision 1.379
diff -u -3 -r1.378 -r1.379
--- E.h 27 Feb 2005 01:11:49 -  1.378
+++ E.h 27 Feb 2005 14:42:25 -  1.379
@@ -2098,8 +2098,8 @@
 #define EwinListFocusLower(ewin) EobjListFocusLower((ewin-o))
 
 /* startup.c */
-voidStartupWindowsCreate(int start);
-voidStartupWindowsRaise(void);
+voidStartupWindowsCreate(void);
+voidStartupWindowsOpen(void);
 
 /* tclass.c */
 int TextclassConfigLoad(FILE * fs);
@@ -2325,8 +2325,6 @@
 extern VirtRoot VRoot;
 extern EConfConf;
 extern EModeMode;
-extern Window   init_win1;
-extern Window   init_win2;
 extern Window   init_win_ext;
 
 #define FILEPATH_LEN_MAX 4096
===
RCS file: /cvsroot/enlightenment/e16/e/src/config.c,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -3 -r1.127 -r1.128
--- config.c16 Feb 2005 19:48:27 -  1.127
+++ config.c27 Feb 2005 14:42:28 -  1.128
@@ -527,7 +527,7 @@
if (!Mode.wm.restart)
  {
 if (i == 2)
-   StartupWindowsCreate(1);
+   StartupWindowsCreate();
 
 if ((i  1)  (!p))
   {
===
RCS file: /cvsroot/enlightenment/e16/e/src/desktops.c,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -3 -r1.126 -r1.127
--- desktops.c  27 Feb 2005 01:11:50 -  1.126
+++ desktops.c  27 Feb 2005 14:42:40 -  1.127
@@ -1358,11 +1358,6 @@
  {
 _APPEND_TO_WIN_LIST(init_win_ext);
  }
-   if (init_win1)
- {
-_APPEND_TO_WIN_LIST(init_win1);
-_APPEND_TO_WIN_LIST(init_win2);
- }
  }
 #endif
 
===
RCS file: /cvsroot/enlightenment/e16/e/src/ewins.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- ewins.c 27 Feb 2005 13:17:28 -  1.21
+++ ewins.c 27 Feb 2005 14:42:40 -  1.22
@@ -910,10 +910,6 @@
EwinConformToDesktop(ewin);
EwinDetermineArea(ewin);
 
-#if 1  /* FIXME - Handle via object stack */
-   StartupWindowsRaise();
-#endif
-
ecore_x_ungrab();
 
return ewin;
===
RCS file: /cvsroot/enlightenment/e16/e/src/main.c,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -3 -r1.115 -r1.116
--- main.c  26 Feb 2005 16:40:36 -  1.115
+++ main.c  27 Feb 2005 14:42:40 -  1.116
@@ -256,9 +256,6 @@
  }
 #endif
 
-   if (!Mode.wm.restart)
-  StartupWindowsCreate(0);
-
/* sync just to make sure */
ecore_x_sync();
Mode.queue_up = DRAW_QUEUE_ENABLE;
@@ -280,6 +277,9 @@
RunInitPrograms();
SpawnSnappedCmds();
 
+   if (!Mode.wm.restart)
+  StartupWindowsOpen();
+
Conf.startup.firsttime = 0;
Mode.wm.save_ok = 1;
Mode.wm.startup = 0;
===
RCS file: /cvsroot/enlightenment/e16/e/src/setup.c,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -3 -r1.149 -r1.150
--- setup.c 2 Feb 2005 17:12:03 -   1.149
+++ setup.c 27 Feb 2005 14:42:41 -  1.150
@@ -87,7 +87,6 @@
 if (init_win_ext)
XRaiseWindow(disp, init_win_ext);
 #endif
-StartupWindowsRaise();
 ProgressbarsRaise();
 XMapWindow(disp, wlist[i]);
  }
===
RCS file: /cvsroot/enlightenment/e16/e/src/startup.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- startup.c   2 Feb 2005 17:12:05 -   1.49
+++ startup.c   27 Feb 2005 14:42:41 -  1.50
@@ -23,132 +23,129 @@
 #include E.h
 #include time.h
 
-Window  init_win1 = None;
-Window  init_win2 = None;
+static Window   init_win1 = None;
+static Window   init_win2 = None;
+static char bg_sideways = 0;
 
 void
-StartupWindowsCreate(int start)
+StartupWindowsCreate(void)
 {
-   static Window   w1, w2, win1, win2, b1, b2;
-   static Background  *bg = NULL;
-   static Background  *bg_sideways = NULL; /* currently used to determine 
if the startup screen should slide sideways */
-   static ImageClass  *ic = NULL;
+   

E CVS: e kwo

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
ecompmgr.c eobj.c ewins.c menus.c stacking.c 


Log Message:
More stacking fixes.
===
RCS file: /cvsroot/enlightenment/e16/e/src/ecompmgr.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ecompmgr.c  12 Feb 2005 23:48:00 -  1.10
+++ ecompmgr.c  27 Feb 2005 17:32:18 -  1.11
@@ -2005,6 +2005,8 @@
eo = EobjListStackFind(ev-xmap.window);
if (!eo)
   eo = EobjRegister(ev-xmap.window, EOBJ_TYPE_OVERR);
+   else
+  EobjListStackRaise(eo);  /* FIXME - Use 
Configure/CirculateNotify */
if (eo)
   ECompMgrWinMap(eo, ev-xmap.serial, True);
break;
===
RCS file: /cvsroot/enlightenment/e16/e/src/eobj.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- eobj.c  27 Feb 2005 01:11:51 -  1.12
+++ eobj.c  27 Feb 2005 17:32:19 -  1.13
@@ -77,7 +77,7 @@
 * For usual EWin's the internal layer is the old E-layer * 10.
 *
 * Internal layers:
-*   0: Desktop (possibly virtual)
+*   0: Root
 *   3: Desktop type apps
 *   5: Below buttons
 *  10: Lowest ewins
@@ -88,9 +88,11 @@
 *  75: Above buttons
 *  80: Ontop ewins
 * 100: E-Dialogs
-* 300: E-Menus
-* 500: Floating ewins
-* TBD: Override redirect
+* 512-: Floating windows
+* + 0: Virtual desktops
+* +30: E-Menus
+* +40: Override redirects
+* +40: E-Tooltips
 */
 
switch (eo-type)
@@ -129,8 +131,16 @@
if (floating == eo-floating)
   return;
 
+   switch (eo-type)
+ {
+ default:
+   break;
+ case EOBJ_TYPE_EWIN:
+   if (floating  1)
+  eo-desk = 0;
+   break;
+ }
eo-floating = floating;
-   eo-desk = 0;
EobjSetLayer(eo, eo-layer);
 }
 
@@ -202,13 +212,16 @@
if (!eo)
   return eo;
 
-   /* Just for debug */
+#if 1  /* Just for debug */
eo-name = ecore_x_icccm_title_get(win);
+#endif
 
if (EventDebug(EDBUG_TYPE_EWINS))
   Eprintf(EobjRegister: %#lx %s\n, win, eo-name);
 
-   EobjSetLayer(eo, 80);
+   if (type == EOBJ_TYPE_OVERR)
+  EobjSetFloating(eo, 1);
+   EobjSetLayer(eo, 4);
EobjListStackAdd(eo, 1);
 
return eo;
===
RCS file: /cvsroot/enlightenment/e16/e/src/ewins.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- ewins.c 27 Feb 2005 14:42:40 -  1.22
+++ ewins.c 27 Feb 2005 17:32:19 -  1.23
@@ -979,6 +979,7 @@
  }
else
  {
+   RaiseEwin(ewin);
MoveEwin(ewin, EoGetX(ewin), EoGetY(ewin));
  }
 
@@ -1411,14 +1412,6 @@
if (EventDebug(EDBUG_TYPE_STACKING))
   Eprintf(RestackEwin %#lx %s\n, ewin-client.win, EwinGetName(ewin));
 
-#if 0  /* FIXME - remove? */
-   if (EoIsFloating(ewin))
- {
-   ERaiseWindow(EoGetWin(ewin));
-   goto done;
- }
-#endif
-
lst = EwinListGetForDesk(num, EoGetDesk(ewin));
if (num  2)
   goto done;
@@ -1465,14 +1458,6 @@
 
if (EoGetWin(ewin))
  {
-#if 0  /* FIXME - remove? */
-   if (EoIsFloating(ewin))
- {
-ERaiseWindow(EoGetWin(ewin));
-goto done;
- }
-#endif
-
num = EwinListStackRaise(ewin);
if (num == 0)   /* Quit if stacking is unchanged */
   goto done;
@@ -1511,11 +1496,7 @@
   Eprintf(LowerEwin(%d) %#lx %s\n, call_depth, ewin-client.win,
  EwinGetName(ewin));
 
-#if 0  /* FIXME - remove? */
-   if ((EoGetWin(ewin))  (!EoIsFloating(ewin)))
-#else
if (EoGetWin(ewin))
-#endif
  {
num = EwinListStackLower(ewin);
if (num == 0)   /* Quit if stacking is unchanged */
===
RCS file: /cvsroot/enlightenment/e16/e/src/menus.c,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -3 -r1.172 -r1.173
--- menus.c 27 Feb 2005 13:17:29 -  1.172
+++ menus.c 27 Feb 2005 17:32:19 -  1.173
@@ -251,7 +251,7 @@
ewin-client.no_resize_h = ewin-client.no_resize_v = 1;
 
EoSetSticky(ewin, 1);
-   EoSetLayer(ewin, 30);
+   EoSetLayer(ewin, 3);
EoSetFloating(ewin, 1);
EoSetOpacity(ewin, OpacityExt(Conf.menus.opacity));
 }
@@ -989,9 +989,9 @@
Mode_menus.cover_win =
   ECreateEventWindow(ewin-parent, 0, 0, VRoot.w, VRoot.h);
Mode_menus.win_covered = EoGetWin(ewin);
-   eo = EobjRegister(Mode_menus.cover_win, EOBJ_TYPE_OTHER);
+   eo = EobjRegister(Mode_menus.cover_win, EOBJ_TYPE_OVERR);
EobjSetDesk(eo, EoGetDesk(ewin));
-   EobjSetLayer(eo, 20);
+   

E CVS: e kwo

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
buttons.c 


Log Message:
Adjust button stacking.
===
RCS file: /cvsroot/enlightenment/e16/e/src/buttons.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -3 -r1.49 -r1.50
--- buttons.c   27 Feb 2005 01:53:22 -  1.49
+++ buttons.c   27 Feb 2005 18:55:18 -  1.50
@@ -149,9 +149,9 @@
EoSetLayer(b, ontop);
EoSetShadow(b, 0);
 
-   EobjListStackAdd(b-o, 0);
+   EobjListStackAdd(b-o, 1);
 
-   AddItem(b, b-name, id, LIST_TYPE_BUTTON);
+   AddItemEnd(b, b-name, id, LIST_TYPE_BUTTON);
 
return b;
 }




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
theme.c 


Log Message:
Fix theme path parsing.
===
RCS file: /cvsroot/enlightenment/e16/e/src/theme.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- theme.c 24 Feb 2005 22:07:39 -  1.43
+++ theme.c 27 Feb 2005 18:57:49 -  1.44
@@ -155,25 +155,25 @@
 char  **
 ThemesList(int *number)
 {
-   charpaths[4096];
-   charbuf[4096], *s, **list = NULL;
-   int len, count = 0;
+   charpaths[4096], *p, *s;
+   char  **list;
+   int count;
 
Esnprintf(paths, sizeof(paths), %s/themes:%s/themes:%s, EDirUser(),
 EDirRoot(), (Conf.theme.extra_path) ? Conf.theme.extra_path : );
 
count = 0;
-   for (s = paths;;)
+   list = NULL;
+   for (p = paths; p; p = s)
  {
-   len = 0;
-   sscanf(s, %4095[^:]%n, buf, len);
+   s = strchr(p, ':');
+   if (s)
+  *s++ = '\0';
 
-   if (len  0)
-  append_merge_dir(buf, list, count);
+   if (*p == ':')
+  continue;
 
-   s += len;
-   if (*s++ != ':')
-  break;
+   append_merge_dir(p, list, count);
  }
 
*number = count;
@@ -336,37 +336,41 @@
 static char*
 ThemeFind(const char *theme)
 {
-   chars[FILEPATH_LEN_MAX];
-   char   *ret = NULL;
+   charpaths[4096], tdir[4096], *p, *s;
+   char   *ret;
 
badreason = _(Unknown\n);
 
if (!theme || !theme[0])
   return ThemeGetDefault();
 
+   ret = NULL;
if (isabspath(theme))
   ret = ThemeExtract(theme);
-   if (!ret)
+   if (ret)
+  return ret;
+
+   Esnprintf(paths, sizeof(paths), %s/themes:%s/themes:%s, EDirUser(),
+EDirRoot(), (Conf.theme.extra_path) ? Conf.theme.extra_path : );
+
+   for (p = paths; p; p = s)
  {
-   Esnprintf(s, sizeof(s), %s/themes/%s, EDirUser(), theme);
-   if (exists(s))
-  ret = ThemeExtract(s);
-   else
-  badreason = _(Theme file/directory does not exist\n);
-   if (!ret)
- {
-Esnprintf(s, sizeof(s), %s/themes/%s, EDirRoot(), theme);
-if (exists(s))
-   ret = ThemeExtract(s);
-else
-   badreason = _(Theme file/directory does not exist\n);
-if (!ret)
-  {
- ret = ThemeGetDefault();
- badtheme = Estrdup(theme);
-  }
- }
+   s = strchr(p, ':');
+   if (s)
+  *s++ = '\0';
+
+   if (*p == ':')
+  continue;
+
+   Esnprintf(tdir, sizeof(tdir), %s/%s, p, theme);
+   ret = ThemeExtract(tdir);
+   if (ret)
+  return ret;
  }
+
+   ret = ThemeGetDefault();
+   badtheme = Estrdup(theme);
+
return ret;
 }
 




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/data/themes/module




Log Message:
Directory /cvsroot/enlightenment/misc/engage/data/themes/module added to the 
repository





---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src/module




Log Message:
Directory /cvsroot/enlightenment/misc/engage/src/module added to the repository





---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/data/themes/module/images




Log Message:
Directory /cvsroot/enlightenment/misc/engage/data/themes/module/images added to 
the repository





---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src/module


Added Files:
.cvsignore Makefile.am README e_mod_main.c e_mod_main.h 
module_icon.png 


Log Message:
Add basic e17 module support to engage
this works, but is by no means complete in looks or functionality
you will want to have e17 installed before building engage now




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/data/themes/module/images


Added Files:
bg_h.png bg_v.png over_h.png over_v.png 


Log Message:
Add basic e17 module support to engage
this works, but is by no means complete in looks or functionality
you will want to have e17 installed before building engage now




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage


Modified Files:
ChangeLog README configure.in 


Log Message:
Add basic e17 module support to engage
this works, but is by no means complete in looks or functionality
you will want to have e17 installed before building engage now
===
RCS file: /cvsroot/enlightenment/misc/engage/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ChangeLog   10 Apr 2004 20:47:38 -  1.1
+++ ChangeLog   27 Feb 2005 20:56:35 -  1.2
@@ -1 +1,3 @@
-must enter lots here!
+27-feb-2005 HandyAndE - Added e17 module support
+making an e17 module of engage - this is where a lot of work will be at the
+moment. Check src/module/README
===
RCS file: /cvsroot/enlightenment/misc/engage/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- README  8 Oct 2004 22:04:40 -   1.3
+++ README  27 Feb 2005 20:56:35 -  1.4
@@ -3,6 +3,8 @@
 
 Requirements: ECORE, EVAS
 
+e17 uses read src/module/README too - an early e17 module version
+
 Read INSTALL for installation and and AUTHORS for some credits
 
 Quick guide to mouse clicks: (supplied (none and gentoo) themes only)
===
RCS file: /cvsroot/enlightenment/misc/engage/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- configure.in14 Oct 2004 22:38:58 -  1.13
+++ configure.in27 Feb 2005 20:56:35 -  1.14
@@ -130,7 +130,7 @@
 have_ewl=no
 AC_PATH_GENERIC(ewl, 0.0.1, [
   AC_DEFINE(HAVE_EWL, [], [Enlightenment Widget Library Support])
-  have_ewl=no
+  have_ewl=yes
   AC_SUBST(ewl_libs)
   AC_SUBST(ewl_cflags) ],
   AC_MSG_ERROR(Cannot find ewl: Is ewl-config in path?))
@@ -138,7 +138,20 @@
 ewl_cflags=`ewl-config --cflags`
 AC_SUBST(ewl_libs)
 AC_SUBST(ewl_cflags)
-
+
+have_e17=no
+AC_PATH_GENERIC(enlightenment, 0.0.1, [
+  AC_DEFINE(HAVE_E17, [], [Development Enlightenment WindowManager Support])
+  have_e17=true
+  AC_SUBST(e_libs)
+  AC_SUBST(e_cflags) ],
+  AC_MSG_ERROR(Cannot find ewl: Is enlightenment-config in path?))
+AM_CONDITIONAL(HAVE_E17, test x$have_e17 = xtrue)
+e_libs=`enlightenment-config --libs`
+e_cflags=`enlightenment-config --cflags`
+AC_SUBST(e_libs)
+AC_SUBST(e_cflags)
+
 dnl Set PACKAGE_SOURCE_DIR in config.h.
 #packagesrcdir=`cd $srcdir  pwd`
 #AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, $packagesrcdir, 
[PACKAGE_SOURCE_DIR]])
@@ -162,6 +175,7 @@
 AC_OUTPUT([
 Makefile
 src/Makefile
+src/module/Makefile
 data/Makefile
 data/icons/Makefile
 data/themes/Makefile




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/data/themes


Modified Files:
.cvsignore Makefile.am 
Added Files:
module.edc 


Log Message:
Add basic e17 module support to engage
this works, but is by no means complete in looks or functionality
you will want to have e17 installed before building engage now
===
RCS file: /cvsroot/enlightenment/misc/engage/data/themes/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore  5 Oct 2004 21:52:57 -   1.2
+++ .cvsignore  27 Feb 2005 20:56:36 -  1.3
@@ -2,3 +2,4 @@
 Makefile.in
 gentoo.eet
 none.eet
+module.eet
===
RCS file: /cvsroot/enlightenment/misc/engage/data/themes/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Makefile.am 30 Oct 2004 05:13:35 -  1.3
+++ Makefile.am 27 Feb 2005 20:56:36 -  1.4
@@ -1,4 +1,4 @@
-THEMES = gentoo none
+THEMES = gentoo none module
 EDCS = $(THEMES:%=%.edc)
 EETS = $(THEMES:%=%.eet)
 SUFFIXES = .edc .eet




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src


Modified Files:
Makefile.am engage.h 


Log Message:
Add basic e17 module support to engage
this works, but is by no means complete in looks or functionality
you will want to have e17 installed before building engage now
===
RCS file: /cvsroot/enlightenment/misc/engage/src/Makefile.am,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- Makefile.am 16 Feb 2005 16:19:46 -  1.13
+++ Makefile.am 27 Feb 2005 20:56:36 -  1.14
@@ -1,4 +1,5 @@
 ## Process this file with automake to produce Makefile.in
+SUBDIRS=module
 
 INCLUDES = \
 -I../lib \
===
RCS file: /cvsroot/enlightenment/misc/engage/src/engage.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- engage.h10 Nov 2004 14:10:09 -  1.27
+++ engage.h27 Feb 2005 20:56:37 -  1.28
@@ -9,7 +9,8 @@
 #include stdlib.h
 #include stdio.h
 
-#include e.h
+#include e.h
+#include config.h
 
 #define ARROW_SPACE 6
 #define ARROW_SPACE_DOUBLE 12 /* ARROW_SPACE * 2 is less efficient */




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage


Modified Files:
.cvsignore 


Log Message:
ssh
===
RCS file: /cvsroot/enlightenment/misc/engage/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- .cvsignore  5 Jan 2005 01:37:25 -   1.5
+++ .cvsignore  27 Feb 2005 20:59:24 -  1.6
@@ -21,3 +21,4 @@
 compile
 install-sh
 missing
+mkinstalldirs




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src


Modified Files:
engage.h 


Log Message:
oops, not quite expunged experimental changes
===
RCS file: /cvsroot/enlightenment/misc/engage/src/engage.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- engage.h27 Feb 2005 20:56:37 -  1.28
+++ engage.h27 Feb 2005 21:27:51 -  1.29
@@ -9,7 +9,7 @@
 #include stdlib.h
 #include stdio.h
 
-#include e.h
+#include e.h
 #include config.h
 
 #define ARROW_SPACE 6




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas tsauerbeck

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/debian


Modified Files:
evas2-test.files libevas2.files 


Log Message:
updated debian files because of recent directory shuffle
===
RCS file: /cvsroot/enlightenment/e17/libs/evas/debian/evas2-test.files,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- evas2-test.files8 Nov 2002 08:02:08 -   1.1
+++ evas2-test.files27 Feb 2005 21:28:47 -  1.2
@@ -1,2 +1,2 @@
 usr/bin/evas_*
-usr/share/evas/data/*.png
+usr/share/evas/*.png
===
RCS file: /cvsroot/enlightenment/e17/libs/evas/debian/libevas2.files,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- libevas2.files  4 Jul 2004 11:28:33 -   1.2
+++ libevas2.files  27 Feb 2005 21:28:47 -  1.3
@@ -1,3 +1,3 @@
 usr/lib/lib*.so.*
-usr/share/evas/data/*.ttf
-usr/share/evas/data/fonts.*
+usr/share/evas/*.ttf
+usr/share/evas/fonts.*




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje tsauerbeck

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/debian


Modified Files:
libedje0.install 


Log Message:
updated debian files because of recent directory shuffle
===
RCS file: /cvsroot/enlightenment/e17/libs/edje/debian/libedje0.install,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- libedje0.install18 Sep 2004 12:31:30 -  1.1
+++ libedje0.install27 Feb 2005 21:29:14 -  1.2
@@ -1,2 +1,2 @@
 usr/lib/lib*.so.*
-usr/share/edje/data/include/edje.inc
+usr/share/edje/include/edje.inc




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore tsauerbeck

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/debian


Modified Files:
ecore1-test.install libecore1.install 


Log Message:
updated debian files because of recent directory shuffle
===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/debian/ecore1-test.install,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ecore1-test.install 18 Sep 2004 12:31:28 -  1.1
+++ ecore1-test.install 27 Feb 2005 21:31:01 -  1.2
@@ -1,2 +1,2 @@
 usr/bin/*test
-usr/share/ecore/data/images/*.png
+usr/share/ecore/images/*.png
===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/debian/libecore1.install,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- libecore1.install   13 Nov 2004 00:05:52 -  1.2
+++ libecore1.install   27 Feb 2005 21:31:01 -  1.3
@@ -1,6 +1,6 @@
 usr/lib/lib*.so.*
 usr/lib/ecore*.so
-usr/share/ecore/data/fonts/*.ttf
-usr/share/ecore/data/fonts/fonts.alias
-usr/share/ecore/data/fonts/fonts.dir
-usr/share/ecore/data/pointers/*.png
+usr/share/ecore/fonts/*.ttf
+usr/share/ecore/fonts/fonts.alias
+usr/share/ecore/fonts/fonts.dir
+usr/share/ecore/pointers/*.png




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage


Modified Files:
INSTALL 


Log Message:
OK, moved standalone to module launcher conf dir ~/.e/e/applications/engage
===
RCS file: /cvsroot/enlightenment/misc/engage/INSTALL,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- INSTALL 2 Jan 2005 23:04:06 -   1.6
+++ INSTALL 27 Feb 2005 22:16:39 -  1.7
@@ -14,7 +14,10 @@
 You need to use the e_util_eapp_edit application (as the user that will be
 running engage, not root!) from CVS in e17/apps/e_utils to build icon files 
for your apps.
 These icons are compatible with the upcoming e17 e_app icons and should live
-in ~.e/e/applications/all.
+in ~/.e/e/applications/all.
+
+In ~/.e/e/applications/engage you need to place a .order file or however you
+like to manage your icon lists in e17.
 
 Unmatched windows will pick up the xapp.eapp in the shared directory which has
 no icon - _unless_ the theme overrides this icon!




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src


Modified Files:
userconfig.c 


Log Message:
OK, moved standalone to module launcher conf dir ~/.e/e/applications/engage
===
RCS file: /cvsroot/enlightenment/misc/engage/src/userconfig.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- userconfig.c2 Jan 2005 22:54:53 -   1.11
+++ userconfig.c27 Feb 2005 22:16:39 -  1.12
@@ -165,7 +165,7 @@
   snprintf(filename, PATH_MAX, %s/.e/e/applications/all, getenv(HOME));
   userconfig_mappings_load(filename);
 
-  snprintf(filename, PATH_MAX, %s/.e/apps/engage/launcher, getenv(HOME));
+  snprintf(filename, PATH_MAX, %s/.e/e/applications/engage, getenv(HOME));
   userconfig_applinks_load(filename);
 
   userconfig_sysicons_load();




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src/module


Modified Files:
e_mod_main.c 


Log Message:
Stubs for iconic support
===
RCS file: /cvsroot/enlightenment/misc/engage/src/module/e_mod_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.c27 Feb 2005 20:56:38 -  1.1
+++ e_mod_main.c27 Feb 2005 23:56:43 -  1.2
@@ -45,6 +45,9 @@
 static void_engage_app_change(void *data, E_App *a, E_App_Change ch);
 static void_engage_config_menu_new(Engage *e);
 
+static int _engage_cb_event_border_iconify(void *data, int type, void 
*event);
+static int _engage_cb_event_border_uniconify(void *data, int type, void 
*event);
+
 static Engage_Bar *_engage_bar_new(Engage *e, E_Container *con);
 static void_engage_bar_free(Engage_Bar *eb);
 static void_engage_bar_menu_new(Engage_Bar *eb);
@@ -482,6 +485,10 @@
edje_object_signal_emit(eb-bar_object, passive, );
*/
 
+   ecore_event_handler_add(E_EVENT_BORDER_HIDE,
+_engage_cb_event_border_iconify, eb);
+   ecore_event_handler_add(E_EVENT_BORDER_SHOW,
+_engage_cb_event_border_uniconify, eb);
return eb;
 }
 
@@ -697,6 +704,31 @@
e-config_menu = mn;
 }
 
+static int
+_engage_cb_event_border_iconify(void *data, int type, void *event)
+{
+   printf(not implemented iconify listener\n);
+
+   /*FIXME
+* check that were are the bar in the right zone
+*
+* add icon to list, marking as iconified (instances of ++)
+*/
+}
+
+static int
+_engage_cb_event_border_uniconify(void *data, int type, void *event)
+{
+   printf(not implemented uniconify listener\n);
+
+   /*FIXME
+* check that were are the bar in the right zone
+*
+* remove icon from list, if instances == 0 and it is only an iconic icon
+*/
+}
+
+
 #if 0
 static void
 _engage_icon_reorder_before(Engage_Icon *ic, Engage_Icon *before)




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src/module


Modified Files:
e_mod_main.c e_mod_main.h 


Log Message:
oops, bad me - remove listeners
===
RCS file: /cvsroot/enlightenment/misc/engage/src/module/e_mod_main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_main.c27 Feb 2005 23:56:43 -  1.2
+++ e_mod_main.c28 Feb 2005 00:03:46 -  1.3
@@ -485,9 +485,9 @@
edje_object_signal_emit(eb-bar_object, passive, );
*/
 
-   ecore_event_handler_add(E_EVENT_BORDER_HIDE,
+   eb-iconify_handler = ecore_event_handler_add(E_EVENT_BORDER_HIDE,
 _engage_cb_event_border_iconify, eb);
-   ecore_event_handler_add(E_EVENT_BORDER_SHOW,
+   eb-uniconify_handler = ecore_event_handler_add(E_EVENT_BORDER_SHOW,
 _engage_cb_event_border_uniconify, eb);
return eb;
 }
@@ -511,9 +511,13 @@
 
eb-engage-bars = evas_list_remove(eb-engage-bars, eb);
 
+   ecore_event_handler_del(eb-iconify_handler);
+   ecore_event_handler_del(eb-uniconify_handler);
+
free(eb-conf);
free(eb);
bar_count--;
+
 }
 
 static void
===
RCS file: /cvsroot/enlightenment/misc/engage/src/module/e_mod_main.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.h27 Feb 2005 20:56:38 -  1.1
+++ e_mod_main.h28 Feb 2005 00:03:46 -  1.2
@@ -59,6 +59,8 @@
E_Gadman_Client *gmc;
 
Config_Bar *conf;
+   Ecore_Event_Handler *iconify_handler;
+   Ecore_Event_Handler *uniconify_handler;
 };
 
 struct _Engage_Icon




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : proto

Dir : e17/proto/enterminus/src


Modified Files:
Makefile.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/proto/enterminus/src/Makefile.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- Makefile.in 24 Jan 2005 10:57:27 -  1.1
+++ Makefile.in 28 Feb 2005 05:35:02 -  1.2
@@ -1,8 +1,6 @@
-# Makefile.in generated by automake 1.7.9 from Makefile.am.
-# @configure_input@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
 
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-# Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -12,159 +10,103 @@
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 # PARTICULAR PURPOSE.
 
[EMAIL PROTECTED]@
+
+SHELL = @SHELL@
 
 srcdir = @srcdir@
 top_srcdir = @top_srcdir@
 VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
+
 top_builddir = ..
 
-am__cd = CDPATH=$${ZSH_VERSION+.}$(PATH_SEPARATOR)  cd
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
 INSTALL = @INSTALL@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
 NORMAL_INSTALL = :
 PRE_INSTALL = :
 POST_INSTALL = :
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+host_alias = @host_alias@
 host_triplet = @host@
-ACLOCAL = @ACLOCAL@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
-AMTAR = @AMTAR@
 AR = @AR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
+AS = @AS@
 CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
 ECHO = @ECHO@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
 EGREP = @EGREP@
 EXEEXT = @EXEEXT@
 F77 = @F77@
-FFLAGS = @FFLAGS@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
+GCJ = @GCJ@
+GCJFLAGS = @GCJFLAGS@
+HAVE_LIB = @HAVE_LIB@
+LIB = @LIB@
 LIBTOOL = @LIBTOOL@
 LN_S = @LN_S@
-LTLIBOBJS = @LTLIBOBJS@
+LTLIB = @LTLIB@
 MAKEINFO = @MAKEINFO@
+OBJDUMP = @OBJDUMP@
 OBJEXT = @OBJEXT@
 PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
 RANLIB = @RANLIB@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
+RC = @RC@
 STRIP = @STRIP@
 VERSION = @VERSION@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_F77 = @ac_ct_F77@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-datadir = @datadir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localstatedir = @localstatedir@
-mandir = @mandir@
 my_includes = @my_includes@
 my_libs = @my_libs@
-oldincludedir = @oldincludedir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@

E CVS: proto raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : proto

Dir : e17/proto/enterminus/src/bin


Modified Files:
Makefile.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/proto/enterminus/src/bin/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Makefile.in 8 Feb 2005 11:45:58 -   1.2
+++ Makefile.in 28 Feb 2005 05:35:02 -  1.3
@@ -1,8 +1,6 @@
-# Makefile.in generated by automake 1.7.9 from Makefile.am.
-# @configure_input@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
 
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-# Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -12,268 +10,188 @@
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 # PARTICULAR PURPOSE.
 
[EMAIL PROTECTED]@
+
+SHELL = @SHELL@
 
 srcdir = @srcdir@
 top_srcdir = @top_srcdir@
 VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
+
 top_builddir = ../..
 
-am__cd = CDPATH=$${ZSH_VERSION+.}$(PATH_SEPARATOR)  cd
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
 INSTALL = @INSTALL@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
 NORMAL_INSTALL = :
 PRE_INSTALL = :
 POST_INSTALL = :
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+host_alias = @host_alias@
 host_triplet = @host@
-ACLOCAL = @ACLOCAL@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
-AMTAR = @AMTAR@
 AR = @AR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
+AS = @AS@
 CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
 ECHO = @ECHO@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
 EGREP = @EGREP@
 EXEEXT = @EXEEXT@
 F77 = @F77@
-FFLAGS = @FFLAGS@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
+GCJ = @GCJ@
+GCJFLAGS = @GCJFLAGS@
+HAVE_LIB = @HAVE_LIB@
+LIB = @LIB@
 LIBTOOL = @LIBTOOL@
 LN_S = @LN_S@
-LTLIBOBJS = @LTLIBOBJS@
+LTLIB = @LTLIB@
 MAKEINFO = @MAKEINFO@
+OBJDUMP = @OBJDUMP@
 OBJEXT = @OBJEXT@
 PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
 RANLIB = @RANLIB@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
+RC = @RC@
 STRIP = @STRIP@
 VERSION = @VERSION@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_F77 = @ac_ct_F77@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-datadir = @datadir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localstatedir = @localstatedir@
-mandir = @mandir@
 my_includes = @my_includes@
 my_libs = @my_libs@
-oldincludedir = @oldincludedir@
-prefix = @prefix@
-program_transform_name = 

E CVS: apps/e raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/data/init


Modified Files:
init.edc 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/apps/e/data/init/init.edc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- init.edc11 Jan 2005 15:40:52 -  1.2
+++ init.edc28 Feb 2005 05:34:58 -  1.3
@@ -611,6 +611,27 @@
   }
}
 }
+ part { 
+   name: icons;
+   type: SWALLOW;
+   description {
+  state: default 0.0;
+  align: 0.5 0.0;
+  min:   128 32;
+  max:   1280 32;
+  rel1 {
+ to_y: status;
+ relative: 0.0 1.0;
+ offset:   16   8;
+  }
+  rel2 {
+ to_y: status;
+ relative: 1.0 1.0;
+ offset:   -17 8;
+  }
+  color: 0 0 0 0;
+   }
+}
 part {
name: logo_point;
type: RECT;




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/apps/e/configure.in,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -3 -r1.45 -r1.46
--- configure.in21 Feb 2005 09:34:09 -  1.45
+++ configure.in28 Feb 2005 05:34:58 -  1.46
@@ -8,7 +8,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(enlightenment, 0.16.999.001)
+AM_INIT_AUTOMAKE(enlightenment, 0.16.999.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entice raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entice

Dir : e17/apps/entice


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/apps/entice/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- configure.in21 Feb 2005 09:34:21 -  1.13
+++ configure.in28 Feb 2005 05:34:59 -  1.14
@@ -4,7 +4,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(entice, 0.9.3.001)
+AM_INIT_AUTOMAKE(entice, 0.9.3.002)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_init.c 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_init.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_init.c13 Feb 2005 11:56:46 -  1.7
+++ e_init.c28 Feb 2005 05:34:58 -  1.8
@@ -10,10 +10,10 @@
 static Ecore_Evas *_e_init_ecore_evas = NULL;
 static Evas   *_e_init_evas = NULL;
 static Evas_Object*_e_init_object = NULL;
+static Evas_Object*_e_init_icon_box = NULL;
 
 /* startup icons */
-static Evas_Coord _e_init_icon_x, _e_init_icon_y;
-static int_e_init_icon_size, _e_init_icon_wrap;
+static Evas_Coord _e_init_icon_size;
 static Evas_List *_e_init_icon_list;
 
 /* externally accessible functions */
@@ -50,11 +50,6 @@
ecore_evas_raise(_e_init_ecore_evas);
ecore_evas_show(_e_init_ecore_evas);

-   _e_init_icon_size = 64;
-   _e_init_icon_wrap = w;
-   _e_init_icon_x = 0;
-   _e_init_icon_y = h - _e_init_icon_size;
-   
n = ecore_x_xinerama_screen_count_get();
if (n == 0)
  {
@@ -186,20 +181,44 @@
 
E_OBJECT_CHECK(app);
E_OBJECT_TYPE_CHECK(app, E_APP_TYPE);
-
+
+   if (!_e_init_evas) return;
+   
+   if (!_e_init_icon_box)
+ {
+   Evas_Coord w, h;
+   
+   o = e_box_add(_e_init_evas);
+   _e_init_icon_box = o;
+   e_box_homogenous_set(o, 1);
+   e_box_align_set(o, 0.5, 0.5);
+   edje_object_part_swallow(_e_init_object, icons, o);
+   evas_object_geometry_get(o, NULL, NULL, w, h);
+   if (w  h)
+ {
+_e_init_icon_size = h;
+e_box_orientation_set(o, 1);
+ }
+   else
+ {
+_e_init_icon_size = w;
+e_box_orientation_set(o, 0);
+ }
+   evas_object_show(o);
+ }
+   
o = edje_object_add(_e_init_evas);
edje_object_file_set(o,app-path, icon);
evas_object_resize(o, _e_init_icon_size, _e_init_icon_size);
-   evas_object_move(o, _e_init_icon_x, _e_init_icon_y);
+   e_box_pack_end(_e_init_icon_box, o);
+   e_box_pack_options_set(o, 
+ 0, 0, 
+ 0, 0, 
+ 0.5, 0.5,
+ _e_init_icon_size, _e_init_icon_size,
+ _e_init_icon_size, _e_init_icon_size);
evas_object_show(o);
_e_init_icon_list = evas_list_append(_e_init_icon_list, o);
-
-   _e_init_icon_x += _e_init_icon_size;
-   if (_e_init_icon_x + _e_init_icon_size  _e_init_icon_wrap)
- {
-   _e_init_icon_x = 0;
-   _e_init_icon_y -= _e_init_icon_size;
- }
 }
 
 void
@@ -207,11 +226,13 @@
 {
Evas_Object *next;
 
-   while(_e_init_icon_list)
+   while (_e_init_icon_list)
  {
next = _e_init_icon_list-data;
evas_object_del(next);
_e_init_icon_list = evas_list_remove(_e_init_icon_list, next);
  }
-
+   if (_e_init_icon_box)
+ evas_object_del(_e_init_icon_box);
+   _e_init_icon_box = NULL;
 }




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/edje/configure.in,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- configure.in21 Feb 2005 09:34:41 -  1.30
+++ configure.in28 Feb 2005 05:34:59 -  1.31
@@ -8,7 +8,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(edje, 0.5.0.001)
+AM_INIT_AUTOMAKE(edje, 0.5.0.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edb raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edb

Dir : e17/libs/edb


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/edb/configure.in,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- configure.in21 Feb 2005 09:34:28 -  1.28
+++ configure.in28 Feb 2005 05:34:59 -  1.29
@@ -3,7 +3,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(edb, 1.0.5.001)
+AM_INIT_AUTOMAKE(edb, 1.0.5.002)
 AM_CONFIG_HEADER(config.h)
 AC_PROG_CC
 AM_PROG_CC_STDC




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/configure.in,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -3 -r1.73 -r1.74
--- configure.in21 Feb 2005 09:34:24 -  1.73
+++ configure.in28 Feb 2005 05:34:59 -  1.74
@@ -5,7 +5,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(ecore, 0.9.9.001)
+AM_INIT_AUTOMAKE(ecore, 0.9.9.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/embryo raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/embryo/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- configure.in21 Feb 2005 09:34:45 -  1.9
+++ configure.in28 Feb 2005 05:35:00 -  1.10
@@ -8,7 +8,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(embryo, 0.9.1.001)
+AM_INIT_AUTOMAKE(embryo, 0.9.1.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/evas/configure.in,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -3 -r1.91 -r1.92
--- configure.in21 Feb 2005 09:35:12 -  1.91
+++ configure.in28 Feb 2005 05:35:01 -  1.92
@@ -8,7 +8,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(evas, 0.9.9.001)
+AM_INIT_AUTOMAKE(evas, 0.9.9.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- configure.in21 Feb 2005 09:34:46 -  1.10
+++ configure.in28 Feb 2005 05:35:00 -  1.11
@@ -4,7 +4,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(emotion, 0.0.1.001)
+AM_INIT_AUTOMAKE(emotion, 0.0.1.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/eet

Dir : e17/libs/eet


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/eet/configure.in,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- configure.in21 Feb 2005 09:34:43 -  1.18
+++ configure.in28 Feb 2005 05:35:00 -  1.19
@@ -8,7 +8,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(eet, 0.9.9.001)
+AM_INIT_AUTOMAKE(eet, 0.9.9.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epsilon raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/epsilon

Dir : e17/libs/epsilon


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/epsilon/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in21 Feb 2005 09:34:48 -  1.5
+++ configure.in28 Feb 2005 05:35:00 -  1.6
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(epsilon, 0.3.0.001)
+AM_INIT_AUTOMAKE(epsilon, 0.3.0.002)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/epeg raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/epeg

Dir : e17/libs/epeg


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/epeg/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- configure.in21 Feb 2005 09:34:47 -  1.5
+++ configure.in28 Feb 2005 05:35:00 -  1.6
@@ -4,7 +4,7 @@
 rm -f config.cache
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(epeg, 0.9.0.001)
+AM_INIT_AUTOMAKE(epeg, 0.9.0.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/configure.in,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- configure.in21 Feb 2005 09:35:18 -  1.43
+++ configure.in28 Feb 2005 05:35:02 -  1.44
@@ -4,7 +4,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
-AM_INIT_AUTOMAKE(ewl, 0.0.4.001)
+AM_INIT_AUTOMAKE(ewl, 0.0.4.002)
 AM_CONFIG_HEADER(ewl-config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entrance raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/apps/entrance/configure.in,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- configure.in21 Feb 2005 09:34:22 -  1.38
+++ configure.in28 Feb 2005 05:34:59 -  1.39
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(entrance, 0.9.0.001)
+AM_INIT_AUTOMAKE(entrance, 0.9.0.002)
 AM_CONFIG_HEADER(src/config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/etox raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/etox

Dir : e17/libs/etox


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/etox/configure.in,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- configure.in21 Feb 2005 09:35:03 -  1.24
+++ configure.in28 Feb 2005 05:35:01 -  1.25
@@ -4,7 +4,7 @@
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
-AM_INIT_AUTOMAKE(etox, 0.9.0.001)
+AM_INIT_AUTOMAKE(etox, 0.9.0.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_ISC_POSIX




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2_loaders raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/imlib2_loaders

Dir : e17/libs/imlib2_loaders


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/imlib2_loaders/configure.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- configure.in21 Feb 2005 09:35:30 -  1.20
+++ configure.in28 Feb 2005 05:35:02 -  1.21
@@ -6,7 +6,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(imlib2_loaders, 1.2.0.001)
+AM_INIT_AUTOMAKE(imlib2_loaders, 1.2.0.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/imlib2 raster

2005-02-27 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/imlib2

Dir : e17/libs/imlib2


Modified Files:
configure.in 


Log Message:


1. e17's init icons get put into an e_box for arrangement nad the init splash
determines the location...

2. .002 snap

===
RCS file: /cvsroot/enlightenment/e17/libs/imlib2/configure.in,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -3 -r1.90 -r1.91
--- configure.in23 Feb 2005 03:27:41 -  1.90
+++ configure.in28 Feb 2005 05:35:02 -  1.91
@@ -6,7 +6,7 @@
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
 AC_ISC_POSIX
-AM_INIT_AUTOMAKE(imlib2, 1.2.0.001)
+AM_INIT_AUTOMAKE(imlib2, 1.2.0.002)
 AM_CONFIG_HEADER(config.h)
 
 AC_C_BIGENDIAN




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs