E CVS: libs/emotion raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/data


Modified Files:
theme.edc 


Log Message:


fixipoos

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/data/theme.edc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- theme.edc   25 Oct 2004 03:17:31 -  1.2
+++ theme.edc   10 Nov 2004 08:35:32 -  1.3
@@ -1,31 +1,31 @@
 images {
-  image: tiles.png   LOSSY 95;
+  image: tiles.png   COMP;
   image: window_inner_shadow.png LOSSY 70;
-/*  image: e_logo.png  LOSSY 95;*/
+/*  image: e_logo.png  COMP;*/
 
-  image: h_slider.pngLOSSY 95;
+  image: h_slider.pngCOMP;
 //   
-  image: video_frame_left.pngLOSSY 95;
-  image: video_frame_right.png   LOSSY 95;
-  image: video_frame_top.png LOSSY 95;
-  image: video_frame_bottom.png  LOSSY 95;
+  image: video_frame_left.pngCOMP;
+  image: video_frame_right.png   COMP;
+  image: video_frame_top.png COMP;
+  image: video_frame_bottom.png  COMP;

-  image: knob.pngLOSSY 95;
+  image: knob.pngCOMP;
 
-  image: fr1.png LOSSY 95;
-  image: fr2.png LOSSY 95;
-  image: fr3.png LOSSY 95;
-  image: fr4.png LOSSY 95;
-  image: fr5.png LOSSY 95;
-  image: fr6.png LOSSY 95;
-  image: fr7.png LOSSY 95;
-  image: sl.png  LOSSY 95;
-  image: orb.png LOSSY 95;
-  image: whb.png LOSSY 95;
-  image: bpause.png  LOSSY 95;
-  image: bplay.png   LOSSY 95;
-  image: bstop.png   LOSSY 95;
-  image: pnl.png LOSSY 95;
+  image: fr1.png COMP;
+  image: fr2.png COMP;
+  image: fr3.png COMP;
+  image: fr4.png COMP;
+  image: fr5.png COMP;
+  image: fr6.png COMP;
+  image: fr7.png COMP;
+  image: sl.png  COMP;
+  image: orb.png COMP;
+  image: whb.png COMP;
+  image: bpause.png  COMP;
+  image: bplay.png   COMP;
+  image: bstop.png   COMP;
+  image: pnl.png COMP;
 }
 
 collections {




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion


Modified Files:
configure.in 


Log Message:


fixipoos

===
RCS file: /cvsroot/enlightenment/e17/libs/emotion/configure.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- configure.in25 Jul 2004 21:50:38 -  1.6
+++ configure.in10 Nov 2004 08:35:31 -  1.7
@@ -101,82 +101,82 @@
 }
 
 
-AC_ARG_WITH(eet-config,
-[  --with-eet-config=EET_CONFIGuse eet-config specified ],
-[
-  EET_CONFIG=$withval;
+AC_ARG_WITH(eet-config, [  --with-eet-config=EET_CONFIGuse eet-config 
specified ],
+[ EET_CONFIG=$withval;
   echo using $EET_CONFIG for eet-config;
 ],[
-  if [ test -z $EET_CONFIG ]; then
+  if test -z $EET_CONFIG; then
 PROG=eet-config;
 AC_PATH_PROG(EET_CONFIG, $PROG, , $PATH)
   fi
 ])
+eet_cflags=`$EET_CONFIG --cflags`
+eet_libs=`$EET_CONFIG --libs`
 
 
-AC_ARG_WITH(evas-config,
-[  --with-evas-config=EVAS_CONFIGuse evas-config specified ],
-[
-  EVAS_CONFIG=$withval;
+AC_ARG_WITH(evas-config, [  --with-evas-config=EVAS_CONFIGuse evas-config 
specified ],
+[ EVAS_CONFIG=$withval;
   echo using $EVAS_CONFIG for evas-config;
 ],[
-  if [ test -z $EVAS_CONFIG ]; then
+  if test -z $EVAS_CONFIG; then
 PROG=evas-config;
 AC_PATH_PROG(EVAS_CONFIG, $PROG, , $PATH)
   fi
 ])
+evas_cflags=`$EVAS_CONFIG --cflags`
+evas_libs=`$EVAS_CONFIG --libs`
 
 
-AC_ARG_WITH(edje-config,
-[  --with-edje-config=EDJE_CONFIGuse edje-config specified ],
-[
-  EDJE_CONFIG=$withval;
+AC_ARG_WITH(edje-config, [  --with-edje-config=EDJE_CONFIGuse edje-config 
specified ],
+[ EDJE_CONFIG=$withval;
   echo using $EDJE_CONFIG for edje-config;
 ],[
-  if [ test -z $EDJE_CONFIG ]; then
+  if test -z $EDJE_CONFIG; then
 PROG=edje-config;
 AC_PATH_PROG(EDJE_CONFIG, $PROG, , $PATH)
   fi
 ])
+edje_cflags=`$EDJE_CONFIG --cflags`
+edje_libs=`$EDJE_CONFIG --libs`
 
 
-AC_ARG_WITH(ecore-config,
-[  --with-ecore-config=ECORE_CONFIGuse ecore-config specified ],
-[
-  ECORE_CONFIG=$withval;
+AC_ARG_WITH(ecore-config, [  --with-ecore-config=ECORE_CONFIGuse 
ecore-config specified ],
+[ ECORE_CONFIG=$withval;
   echo using $ECORE_CONFIG for ecore-config;
 ],[
-  if [ test -z $ECORE_CONFIG ]; then
+  if test -z $ECORE_CONFIG; then
 PROG=ecore-config;
 AC_PATH_PROG(ECORE_CONFIG, $PROG, , $PATH)
   fi
 ])
+ecore_cflags=`$ECORE_CONFIG --cflags`
+ecore_libs=`$ECORE_CONFIG --libs`
 
 
-AC_ARG_WITH(embryo-config,
-[  --with-embryo-config=EMBRYO_CONFIGuse embryo-config specified ],
-[
-  EMBRYO_CONFIG=$withval;
+AC_ARG_WITH(embryo-config, [  --with-embryo-config=EMBRYO_CONFIGuse 
embryo-config specified ],
+[ EMBRYO_CONFIG=$withval;
   echo using $EMBRYO_CONFIG for embryo-config;
 ],[
-  if [ test -z $EMBRYO_CONFIG ]; then
+  if test -z $EMBRYO_CONFIG; then
 PROG=embryo-config;
 AC_PATH_PROG(EMBRYO_CONFIG, $PROG, , $PATH)
   fi
 ])
+embryo_cflags=`$EMBRYO_CONFIG --cflags`
+embryo_libs=`$EMBRYO_CONFIG --libs`
 
 
-AC_ARG_WITH(xine-config,
-[  --with-xine-config=XINE_CONFIGuse xine-config specified ],
-[
-  XINE_CONFIG=$withval;
+AC_ARG_WITH(xine-config, [  --with-xine-config=XINE_CONFIGuse xine-config 
specified ],
+[ XINE_CONFIG=$withval;
   echo using $XINE_CONFIG for xine-config;
 ],[
-  if [ test -z $XINE_CONFIG ]; then
+  if test -z $XINE_CONFIG; then
 PROG=xine-config;
 AC_PATH_PROG(XINE_CONFIG, $PROG, , $PATH)
   fi
 ])
+xine_cflags=`$XINE_CONFIG --cflags`
+xine_libs=`$XINE_CONFIG --libs`
 
 
 V=`$ECORE_CONFIG --version`




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
configure.in 


Log Message:


cleansies

===
RCS file: /cvsroot/enlightenment/e17/libs/edje/configure.in,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- configure.in9 Nov 2004 09:31:07 -   1.23
+++ configure.in10 Nov 2004 08:35:38 -  1.24
@@ -114,28 +114,40 @@
 AC_ARG_WITH(evas-config, [  --with-evas-config=EVAS_CONFIGuse evas-config 
specified ],
 [ EVAS_CONFIG=$withval;
   echo using $EVAS_CONFIG for evas-config; ],
-[ AC_PATH_PROG(EVAS_CONFIG, evas-config, , $PATH) ])
+[ if test -z $EVAS_CONFIG; then
+  AC_PATH_PROG(EVAS_CONFIG, evas-config, , $PATH)
+  fi
+])
 evas_cflags=`$EVAS_CONFIG --cflags`
 evas_libs=`$EVAS_CONFIG --libs`
 
 AC_ARG_WITH(ecore-config, [  --with-ecore-config=ECORE_CONFIG  use 
ecore-config specified ],
 [ ECORE_CONFIG=$withval;
   echo using $ECORE_CONFIG for ecore-config; ],
-[ AC_PATH_PROG(ECORE_CONFIG, ecore-config, , $PATH) ])
+[ if test -z $ECORE_CONFIG; then
+  AC_PATH_PROG(ECORE_CONFIG, ecore-config, , $PATH)
+  fi
+])
 ecore_cflags=`$ECORE_CONFIG --cflags`
 ecore_libs=`$ECORE_CONFIG --libs`
 
 AC_ARG_WITH(eet-config, [  --with-eet-config=EET_CONFIG  use eet-config 
specified ],
 [ EET_CONFIG=$withval;
   echo using $EET_CONFIG for eet-config; ],
-[ AC_PATH_PROG(EET_CONFIG, eet-config, , $PATH) ])
+[ if test -z $EET_CONFIG; then
+  AC_PATH_PROG(EET_CONFIG, eet-config, , $PATH)
+  fi
+])
 eet_cflags=`$EET_CONFIG --cflags`
 eet_libs=`$EET_CONFIG --libs`
 
 AC_ARG_WITH(embryo-config, [  --with-embryo-config=EMBRYO_CONFIG use 
embryo-config specified ],
 [ EMBRYO_CONFIG=$withval;
   echo using $EMBRYO_CONFIG for embryo-config; ],
-[ AC_PATH_PROG(EMBRYO_CONFIG, embryo-config, , $PATH) ])
+[ if test -z $EMBRYO_CONFIG; then
+  AC_PATH_PROG(EMBRYO_CONFIG, emberyo-config, , $PATH)
+  fi
+])
 embryo_cflags=`$EMBRYO_CONFIG --cflags`
 embryo_libs=`$EMBRYO_CONFIG --libs`
 
@@ -143,7 +155,10 @@
   AC_ARG_WITH(imlib2-config, [  --with-imlib2-config=IMLIB2_CONFIG use 
imlib2-config specified ],
   [ IMLIB2_CONFIG=$withval;
 echo using $IMLIB2_CONFIG for imlib2-config; ],
-  [ AC_PATH_PROG(IMLIB2_CONFIG, imlib2-config, , $PATH) ])
+  [ if test -z $IMLIB2_CONFIG; then
+AC_PATH_PROG(IMLIB2_CONFIG, imlib2-config, , $PATH)
+fi
+  ])
   imlib2_cflags=`$IMLIB2_CONFIG --cflags`
   imlib2_libs=`$IMLIB2_CONFIG --libs`
   AC_DEFINE(HAVE_IMLIB, 1, [Define to 1 if you have Imlib2])




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/edje

Dir : e17/libs/edje


Modified Files:
configure.in 


Log Message:


oops.

===
RCS file: /cvsroot/enlightenment/e17/libs/edje/configure.in,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- configure.in10 Nov 2004 08:35:38 -  1.24
+++ configure.in10 Nov 2004 10:02:34 -  1.25
@@ -145,7 +145,7 @@
 [ EMBRYO_CONFIG=$withval;
   echo using $EMBRYO_CONFIG for embryo-config; ],
 [ if test -z $EMBRYO_CONFIG; then
-  AC_PATH_PROG(EMBRYO_CONFIG, emberyo-config, , $PATH)
+  AC_PATH_PROG(EMBRYO_CONFIG, embryo-config, , $PATH)
   fi
 ])
 embryo_cflags=`$EMBRYO_CONFIG --cflags`




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2


Modified Files:
TODO configure.in 


Log Message:
some debug output - use --enable-debug to see it

===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/TODO,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- TODO1 Nov 2004 08:27:09 -   1.13
+++ TODO10 Nov 2004 13:39:46 -  1.14
@@ -2,6 +2,7 @@
 - compressed svg?
 - size columns with mouse
 - window doesn't size in height
+- Bug with -- NULL entries
 
 FEATURES:
 - Gnome2 panel and desktop DragDrop support
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/configure.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- configure.in26 Oct 2004 14:21:48 -  1.20
+++ configure.in10 Nov 2004 13:39:46 -  1.21
@@ -10,6 +10,20 @@
 AM_PROG_CC_STDC
 AC_HEADER_STDC
 
+dnl Option to enable debug
+AC_MSG_CHECKING(whether to enable debugging)
+AC_ARG_ENABLE(debug,
+[  --enable-debug=[no/yes]enables debug build (default=no)],,
+ enable_debug=no)
+
+if [ ! test x$enable_debug != xyes]; then
+  AC_DEFINE(DEBUG, , [Define to enable debug build])
+  CFLAGS=$CFLAGS -g
+  AC_MSG_RESULT(yes)
+else
+  AC_MSG_RESULT(no)
+fi
+
 pkg_modules=gtk+-2.0 = 2.4.0 libglade-2.0 = 2.3.6
 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
 AC_SUBST(PACKAGE_CFLAGS)




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2/src


Modified Files:
e16menu.c e16menuedit2.c e16menuedit2.h file.c file.h 


Log Message:
some debug output - use --enable-debug to see it

===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/e16menu.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e16menu.c   7 Aug 2004 17:08:31 -   1.3
+++ e16menu.c   10 Nov 2004 13:39:47 -  1.4
@@ -248,7 +248,7 @@
   has_child = gtk_tree_model_iter_has_child (model, iter);
   depth = gtk_tree_path_get_depth (path) - 1;
 
-#define WRITE_FILE /* undef this for debugging */
+#define WRITE_FILE /* undef this for debugging without writing menus */
 #ifdef WRITE_FILE
   if (depth + 1 = MAX_RECURSION)
   {
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/e16menuedit2.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- e16menuedit2.c  2 Nov 2004 17:23:14 -   1.13
+++ e16menuedit2.c  10 Nov 2004 13:39:47 -  1.14
@@ -144,6 +144,16 @@
   str);
 }
 
+void dbg_printf (const gchar *format, ...)
+{
+  va_list ap;
+
+  va_start (ap, format);
+
+  printf ((%s, %d): , __FILE__, __LINE__);
+  g_vprintf(format, ap);
+}
+
 gboolean browser_func (GtkTreeModel *model, GtkTreePath *path,
GtkTreeIter *iter, gpointer user_data)
 {
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/e16menuedit2.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- e16menuedit2.h  6 Oct 2004 18:19:13 -   1.6
+++ e16menuedit2.h  10 Nov 2004 13:39:47 -  1.7
@@ -44,5 +44,7 @@
 void print_statusbar (const gchar *format, ...);
 gboolean browser_func (GtkTreeModel *model, GtkTreePath *path,
GtkTreeIter *iter, gpointer user_data);
-  
+
+#define DEBUG_OUTPUT printf ((%s, %d): , __FILE__, __LINE__);
+
 #endif /* _E16MENUEDIT_H */
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/file.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- file.c  4 Nov 2004 14:12:58 -   1.8
+++ file.c  10 Nov 2004 13:39:47 -  1.9
@@ -345,6 +345,9 @@
 
   params = g_strdup_printf (%s/%s/%s, help_dir,
 locale, help_file);
+#ifdef DEBUG
+  DEBUG_OUTPUT printf (%s\n, params);
+#endif /* DEBUG */  
   help_missing = stat (params, buf);
 
   /* locale fallback 1 */
@@ -354,6 +357,9 @@
 g_free (params);
 params = g_strdup_printf (%s/%s/%s, help_dir,
   locale_fallback, help_file);
+#ifdef DEBUG
+DEBUG_OUTPUT printf (Try help fallback1: %s\n, params);
+#endif /* DEBUG */  
 help_missing = stat (params, buf);
 
 /* locale fallback 2 */
@@ -366,6 +372,9 @@
   g_free (params);
   params = g_strdup_printf (%s/%s/%s, help_dir,
 locale_fallback, help_file);
+  #ifdef DEBUG
+  DEBUG_OUTPUT printf (Try help fallback2: %s\n, params);
+  #endif /* DEBUG */  
   help_missing = stat (params, buf);
 
   /* locale fallback 3 */
@@ -378,6 +387,9 @@
 g_free (params);
 params = g_strdup_printf (%s/%s/%s, help_dir,
   locale_fallback, help_file);
+   #ifdef DEBUG
+DEBUG_OUTPUT printf (Try help fallback4: %s\n, params);
+#endif /* DEBUG */  
 help_missing = stat (params, buf);
   }
 }
@@ -393,6 +405,10 @@
 argv_child[0] = help_app;
 argv_child[1] = params;
 argv_child[2] = NULL;
+  
+#ifdef DEBUG
+DEBUG_OUTPUT printf (Try exec help: %s %s\n, help_app, params);
+#endif /* DEBUG */
 
 spawn = g_spawn_async (NULL, argv_child, NULL,
G_SPAWN_SEARCH_PATH, NULL,
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/file.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- file.h  28 Aug 2004 12:27:59 -  1.6
+++ file.h  10 Nov 2004 13:39:47 -  1.7
@@ -41,6 +41,7 @@
 #include sys/stat.h
 #include sys/types.h
 #include locale.h
+#include e16menuedit2.h
 
 char *field (char *s, int field);
 void fword (char *s, int num, char *wd);




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs 

E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2/po


Modified Files:
ChangeLog 


Log Message:
some debug output - use --enable-debug to see it

===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/po/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ChangeLog   3 Aug 2004 15:54:14 -   1.2
+++ ChangeLog   10 Nov 2004 13:39:46 -  1.3
@@ -1,3 +1,14 @@
+2004-11-06  gettextize  [EMAIL PROTECTED]
+
+   * Makefile.in.in: Upgrade to gettext-0.12.1.
+   * boldquot.sed: New file, from gettext-0.12.1.
+   * [EMAIL PROTECTED]: New file, from gettext-0.12.1.
+   * [EMAIL PROTECTED]: New file, from gettext-0.12.1.
+   * insert-header.sin: New file, from gettext-0.12.1.
+   * quot.sed: New file, from gettext-0.12.1.
+   * remove-potcdate.sin: New file, from gettext-0.12.1.
+   * Rules-quot: New file, from gettext-0.12.1.
+
 2004-08-03  gettextize  [EMAIL PROTECTED]
 
* Makefile.in.in: Upgrade to gettext-0.12.1.




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: engage handyande

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/src


Modified Files:
config.c engage.h 


Log Message:
Remove more old code
===
RCS file: /cvsroot/enlightenment/misc/engage/src/config.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- config.c14 Oct 2004 22:38:59 -  1.47
+++ config.c10 Nov 2004 14:10:08 -  1.48
@@ -130,10 +130,6 @@
   ecore_config_argb_create(engage.options.bg_fore, #7f00, 'B', 
bg-outline-color, Background outline color);
   ecore_config_argb_create(engage.options.bg_back, #7fff, 'b', 
bg-main-color, Background main color);
 
-  ecore_config_string_create(engage.options.tt_fa, Vera, 'f', font,
- The font to use for application titles etc.);
-  ecore_config_int_create(engage.options.tt_fs, 8, 'F', font-size,
-  The font size (in points));
   ecore_config_float_create(engage.options.icon_appear_duration, 0.1, 'D',
 appear-time,
 Time taken (in seconds) for new icons to appear);
@@ -183,8 +179,6 @@
   ecore_config_listen(colour, engage.options.bg_back, 
   colour_listener, BG_BACK, NULL);
 
-  options.tt_fa = ecore_config_string_get(engage.options.tt_fa);
-  options.tt_fs = ecore_config_int_get(engage.options.tt_fs);
   options.icon_appear_duration =
 ecore_config_float_get(engage.options.icon_appear_duration);
 
===
RCS file: /cvsroot/enlightenment/misc/engage/src/engage.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- engage.h14 Oct 2004 22:38:59 -  1.26
+++ engage.h10 Nov 2004 14:10:09 -  1.27
@@ -95,8 +95,6 @@
   double  zoomfactor, dock_zoom_duration;
 
   unsignedbg_fore, bg_back; // color - ARGB
-  char   *tt_fa;// font name
-  int tt_fs;// font size
   double  icon_appear_duration;
   int tray, ignore_run, ignore_min;
 };




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_trans_x11


Modified Files:
Esmart_Trans_X11.h esmart_trans_x11.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_trans_x11/Esmart_Trans_X11.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Esmart_Trans_X11.h  17 Jul 2004 21:10:09 -  1.2
+++ Esmart_Trans_X11.h  10 Nov 2004 15:22:39 -  1.3
@@ -7,19 +7,11 @@
 extern C {
 #endif
 
-typedef struct _Esmart_Trans_X11 Esmart_Trans_X11;
-
 typedef enum _Esmart_Trans_X11_Type {
Esmart_Trans_X11_Type_Background,
Esmart_Trans_X11_Type_Screengrab
 } Esmart_Trans_X11_Type;
 
-struct _Esmart_Trans_X11
-{
-Evas_Object *obj, *clip;
-int x, y, w, h;
-};
-
 Evas_Object * esmart_trans_x11_new(Evas *e);
 void esmart_trans_x11_type_set(Evas_Object *o, Esmart_Trans_X11_Type type);
 Esmart_Trans_X11_Type esmart_trans_x11_type_get(Evas_Object *o);
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_trans_x11/esmart_trans_x11.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- esmart_trans_x11.c  24 Aug 2004 16:25:44 -  1.4
+++ esmart_trans_x11.c  10 Nov 2004 15:22:40 -  1.5
@@ -14,6 +14,14 @@
 
 #include Esmart_Trans_X11.h
 
+typedef struct _Esmart_Trans_X11 Esmart_Trans_X11;
+
+struct _Esmart_Trans_X11
+{
+Evas_Object *obj, *clip;
+int x, y, w, h;
+};
+
 typedef struct {
int x, y, w, h;
Evas_Object *obj;




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/entice


Modified Files:
entice.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/layout/entice/entice.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- entice.c5 May 2004 05:57:00 -   1.1.1.1
+++ entice.c10 Nov 2004 15:22:39 -  1.2
@@ -2,6 +2,7 @@
 #include Ecore.h
 #include math.h
 #include ../../Esmart_Container.h
+#include ../../esmart_container_private.h
 
 static int _entice_current = 0;
 static int _entice_scroll_timer (void *data);




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/engage


Modified Files:
engage.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/layout/engage/engage.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- engage.c5 May 2004 05:57:00 -   1.1.1.1
+++ engage.c10 Nov 2004 15:22:38 -  1.2
@@ -2,6 +2,7 @@
 #include Ecore.h
 #include math.h
 #include ../../Esmart_Container.h
+#include ../../esmart_container_private.h
 
 #define CONTAINER_ZOOMING 0
 #define CONTAINER_ZOOMED 1




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container


Modified Files:
Esmart_Container.h esmart_container.c 
esmart_container_private.h 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/Esmart_Container.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- Esmart_Container.h  9 May 2004 23:29:36 -   1.3
+++ Esmart_Container.h  10 Nov 2004 15:22:22 -  1.4
@@ -17,11 +17,6 @@
 extern C {
 #endif
 
-typedef struct _Container Container;
-typedef struct _Container_Element Container_Element;
-typedef struct _Scroll_Data Scroll_Data;
-typedef struct _Container_Layout_Plugin Container_Layout_Plugin;
-
 enum _Container_Direction
 {
   CONTAINER_DIRECTION_HORIZONTAL,  
@@ -50,84 +45,8 @@
 };
 typedef enum _Container_Fill_Policy Container_Fill_Policy;
 
-struct _Container
-{
-  Evas *evas;
-  Evas_Object *obj; /* the evas smart object */
-  Evas_Object *clipper; /* element clip */
-  Evas_Object *grabber; /* event grabber (for the container as a whole) */
-
-  Container_Layout_Plugin *plugin;
-
-  Evas_List *elements;  /* things contained */
-
-  struct
-  {
-double l, r, t, b;
-  } padding;
-
-  double x, y, w, h;/* geometry */
-  
-  int clipper_orig_alpha;  /* original alpha value of clipper */
-
-  int spacing;  /* space between elements */
-
-  Container_Direction direction; /* CONTAINER_DIRECTION_HORIZONTAL, _VERTICAL 
*/
-  Container_Alignment align;  /* CONTAINER_ALIGN_LEFT, _CENTER, or _RIGHT */
-  Container_Fill_Policy fill;
-
-  int move_button;  /* which button to move elements with? (0 for none) */
-
-  int scroll_offset;
-  Ecore_Timer *scroll_timer;
-
-  void (*cb_order_change) (void *data);
-  void *data_order_change;
-};
-
-struct _Container_Element
-{
-  Container *container;
-  Evas_Object *obj;
-  Evas_Object *grabber;
-
-  double orig_w, orig_h;
-
-  struct
-  {
-double x, y;
-  } down, delta, current;
-
-  int mouse_down;
-  int dragging;
-};
-
-struct _Scroll_Data
-{
-  Container *cont;
-  double start_time;
-  double velocity;
-  double length;
-};
-
 Evas_Object *esmart_container_new(Evas *evas);
 
-struct _Container_Layout_Plugin{
-  void *handle;
-
-  void (*shutdown)(void);
-  
-  void (*layout)(Container *cont);
-  
-  void (*scroll_start)(Container *cont, double velocity);
-  void (*scroll_stop)(Container *cont);
-  void (*scroll_to)(Container *cont, Container_Element *el);
-
-  void (*post_init)(Container *cont);
-  void (*changed)(Container *cont);
-};
-
-
 void esmart_container_direction_set(Evas_Object *container, 
Container_Direction direction);
 Container_Direction esmart_container_direction_get(Evas_Object *container);
 
@@ -169,7 +88,7 @@
 void esmart_container_element_remove(Evas_Object *container, Evas_Object 
*element);
 void esmart_container_element_destroy(Evas_Object *container, Evas_Object 
*element);
 void esmart_container_empty (Evas_Object *container);
-void esmart_container_sort(Evas_Object *container, int (*func)(void*,void*));
+void esmart_container_sort(Evas_Object *container, int (*func)(Evas_Object *, 
Evas_Object *));
 
 Evas_List *esmart_container_elements_get(Evas_Object *container);
 
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/esmart_container.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- esmart_container.c  30 Oct 2004 09:09:59 -  1.3
+++ esmart_container.c  10 Nov 2004 15:22:38 -  1.4
@@ -15,17 +15,35 @@
 
 /*** external API ***/
 
-void esmart_container_sort(Evas_Object *container, int (*func)(void*,void*))
+static int (*_sort_func)(void*,void*) = NULL;
+
+static int
+_sort_cb(void *d1, void *d2)
 {
-  Container *cont;
+   Evas_Object *o = NULL;
+   Evas_Object *oo = NULL;
+   
+   o = ((Container_Element *) d1)-obj;
+   oo = ((Container_Element *) d2)-obj;
+   if (_sort_func) return 0;
+   return _sort_func(d1, d2);
+}
+
+void esmart_container_sort(Evas_Object *container, int (*func)(Evas_Object *, 
Evas_Object *$))
+{
+   Container *cont;
   
-  cont = _container_fetch(container);
-  if (!cont) return;
+   cont = _container_fetch(container);
+   if (!cont) return;
 
-  cont-elements = evas_list_sort(cont-elements, 
evas_list_count(cont-elements),
-   func);
-  _container_elements_fix(cont);
+   _sort_func = func;
+   cont-elements = evas_list_sort(cont-elements,
+  evas_list_count(cont-elements),
+  _sort_cb);
+   _sort_func = NULL;
+   _container_elements_fix(cont);

E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_text_entry


Modified Files:
Esmart_Text_Entry.h esmart_text_entry.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_text_entry/Esmart_Text_Entry.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- Esmart_Text_Entry.h 5 May 2004 05:57:01 -   1.1.1.1
+++ Esmart_Text_Entry.h 10 Nov 2004 15:22:39 -  1.2
@@ -10,37 +10,11 @@
 extern C {
 #endif
 
-struct _Esmart_Text_Entry
-{
-  Evas_Object *clip;
-  Evas_Object *base;
-  struct
-  {
-int size;
-char *text;
-int index;
-  } buf;
-  struct
-  {
-Evas_Object *o;
-char *part;
-  } edje;
-  struct
-  {
-void (*func) (void *data, const char *str);
-void *arg;
-  } return_key;
-  int passwd;
-};
-typedef struct _Esmart_Text_Entry Esmart_Text_Entry;
-
 /* create a new text entry */
 Evas_Object *esmart_text_entry_new (Evas * e);
 
 void esmart_text_entry_text_set (Evas_Object * o, const char *str);
 void esmart_text_entry_is_password_set (Evas_Object * o, int val);
-void esmart_text_entry_focus_set (Evas_Object * o, int val);
-int esmart_text_entry_is_focused (Evas_Object * o);
 void esmart_text_entry_max_chars_set (Evas_Object * o, int max);
 void esmart_text_entry_edje_part_set (Evas_Object * o, Evas_Object * edje,
  const char *part);
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_text_entry/esmart_text_entry.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- esmart_text_entry.c 8 May 2004 11:24:51 -   1.4
+++ esmart_text_entry.c 10 Nov 2004 15:22:39 -  1.5
@@ -9,6 +9,30 @@
 #include stdlib.h
 #include Esmart_Text_Entry.h
 
+struct _Esmart_Text_Entry
+{
+  Evas_Object *clip;
+  Evas_Object *base;
+  struct
+  {
+int size;
+char *text;
+int index;
+  } buf;
+  struct
+  {
+Evas_Object *o;
+char *part;
+  } edje;
+  struct
+  {
+void (*func) (void *data, const char *str);
+void *arg;
+  } return_key;
+  int passwd;
+};
+typedef struct _Esmart_Text_Entry Esmart_Text_Entry;
+
 #define DEBUG 0
 static Evas_Smart *esmart_text_entry_smart_get (void);
 static void esmart_text_entry_text_fix (Evas_Object * o);
@@ -22,28 +46,19 @@
   return (o);
 }
 
+#if 0 /* come on guys! use the basic focus stuff! :) */
 int
 esmart_text_entry_is_focused (Evas_Object * o)
 {
-  Esmart_Text_Entry *e = NULL;
-
-  if ((e = evas_object_smart_data_get (o)))
-{
-  return (evas_object_focus_get (e-base));
-}
-  return (0);
+   return (evas_object_focus_get (o));
 }
 
 void
 esmart_text_entry_focus_set (Evas_Object * o, int val)
 {
-  Esmart_Text_Entry *e = NULL;
-
-  if ((e = evas_object_smart_data_get (o)))
-{
-  evas_object_focus_set (e-base, val);
-}
+  evas_object_focus_set(o, val);
 }
+#endif
 
 char *
 esmart_text_entry_string_get (Evas_Object * o)
@@ -204,78 +219,78 @@
 
   /* handle modifiers */
   if ((!strcmp (evx-keyname, Control_L))
- || (!strcmp (evx-keyname, Control_R))
- || (!strcmp (evx-keyname, Shift_R))
- || (!strcmp (evx-keyname, Shift_L))
- || (!strcmp (evx-keyname, Alt_R))
- || (!strcmp (evx-keyname, Alt_L)))
-   {
- evas_key_modifier_on (e, evx-keyname);
-   }
-
+  || (!strcmp (evx-keyname, Control_R))
+  || (!strcmp (evx-keyname, Shift_R))
+  || (!strcmp (evx-keyname, Shift_L))
+  || (!strcmp (evx-keyname, Alt_R))
+  || (!strcmp (evx-keyname, Alt_L)))
+ {
+   evas_key_modifier_on (e, evx-keyname);
+ }
+   
   if (evas_key_modifier_is_set_get (down-modifiers, evx-keyname))
  evas_key_modifier_off (e, evx-keyname);
-  else if (evas_key_modifier_is_set_get (down-modifiers, Control_L)
-   || evas_key_modifier_is_set_get (down-modifiers, Control_R))
-  {
- switch ((int) evx-keyname[0])
+   else if (evas_key_modifier_is_set_get (down-modifiers, Control_L)
+   || evas_key_modifier_is_set_get (down-modifiers, Control_R))
  {
-   case 117:
-  esmart_text_entry_text_set (data, );
-  break;
-   default:
+   switch ((int) evx-keyname[0])
+ {
+  case 117:
+esmart_text_entry_text_set (data, );
+break;
+  default:
 #if DEBUG
-  fprintf (stderr, (%d) is the key value\n,
-(int) evx-keyname[0]);
+fprintf (stderr, (%d) is the key value\n,
+ (int) evx-keyname[0]);
 #endif
-  break;
- }
-
-  }
-  else if ((strlen 

E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_container/layout/default


Modified Files:
default.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_container/layout/default/default.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- default.c   22 Jun 2004 14:38:58 -  1.2
+++ default.c   10 Nov 2004 15:22:38 -  1.3
@@ -2,6 +2,7 @@
 #include Ecore.h
 #include math.h
 #include ../../Esmart_Container.h
+#include ../../esmart_container_private.h
 
 int _container_scroll_timer(void *data);
 




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_thumb


Modified Files:
Esmart_Thumb.h esmart_thumb.c 
Removed Files:
esmart_thumb.h 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_thumb/Esmart_Thumb.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Esmart_Thumb.h  17 Oct 2004 17:54:22 -  1.4
+++ Esmart_Thumb.h  10 Nov 2004 15:22:39 -  1.5
@@ -19,15 +19,6 @@
  * Version 0.0.1 - August 23rd 2003 [EMAIL PROTECTED]
  *  - This was done hastily, there will be fixes
  */
-  struct _Esmart_Thumb
-  {
-Epsilon *e;
-Epsilon_Info *info;
-Evas_Object *image;/* thumb image that's displayed */
-Evas_Coord x, y, w, h; /* smart object location/geometry */
-int tw, th;
-  };
-  typedef struct _Esmart_Thumb Esmart_Thumb;
 
 /**
  * esmart_thumb_free - free an E_Thumb smart object 
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_thumb/esmart_thumb.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- esmart_thumb.c  17 Oct 2004 17:54:22 -  1.9
+++ esmart_thumb.c  10 Nov 2004 15:22:39 -  1.10
@@ -11,6 +11,16 @@
 #include Esmart_Thumb.h
 #include ../../config.h
 
+  struct _Esmart_Thumb
+  {
+Epsilon *e;
+Epsilon_Info *info;
+Evas_Object *image;/* thumb image that's displayed */
+Evas_Coord x, y, w, h; /* smart object location/geometry */
+int tw, th;
+  };
+  typedef struct _Esmart_Thumb Esmart_Thumb;
+
 static void _e_thumb_add (Evas_Object * o);
 static void _e_thumb_del (Evas_Object * o);
 static void _e_thumb_show (Evas_Object * o);




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_file_dialog


Modified Files:
Esmart_File_Dialog.h esmart_file_dialog.c 


Log Message:


clean up esmart. dont advertise publicly structs that SHOULd be private. fix
sort to pass objects, not container structs. fix text entry to do focus the
RIGHT way :)

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_file_dialog/Esmart_File_Dialog.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- Esmart_File_Dialog.h5 May 2004 05:57:01 -   1.1.1.1
+++ Esmart_File_Dialog.h10 Nov 2004 15:22:39 -  1.2
@@ -9,8 +9,6 @@
 {
 #endif
 
-  typedef struct _Esmart_File_Dialog Esmart_File_Dialog;
-
 #define FILE_NEW 1
 #define FILE_RENAME 2
 #define FILE_DELETE 3
@@ -18,31 +16,6 @@
 #define FILE_CANCEL 5
 #define DIR_CHANGED 6
 
-  struct _Esmart_File_Dialog
-  {
-Evas_Object *clip; /* clipped area for the file dialog */
-Evas_Object *edje; /* the edje file we load groups from */
-Evas_Object *directories;  /* directory containers */
-char *directories_dragbar; /* dragable part name for the
-* directories */
-Evas_Object *files;/* file container */
-char *files_dragbar;   /* the dragable for the file container */
-
-Evas_Object *entry;/* Esmart_Text_Entry */
-char *path;/* the cwd for the dialog */
-
-/* the client callback for intercepting file dialog specific stuff */
-void (*func) (void *data, Evas_Object * edje, int type);
-/* the data that's passed to the file dialog callback */
-void *fdata;
-
-/* the current geometry/location of the file dialog */
-Evas_Coord x, y, w, h;
-
-/* the files the user wants to load/open/save(?)/ */
-Evas_List *selections;
-  };
-
 /**
  * esmart_file_dialog_new 
  * @param evas the evas to add the object to
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_file_dialog/esmart_file_dialog.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- esmart_file_dialog.c5 May 2004 05:57:01 -   1.1.1.1
+++ esmart_file_dialog.c10 Nov 2004 15:22:39 -  1.2
@@ -19,10 +19,37 @@
 
 #include ../../config.h
 
+  typedef struct _Esmart_File_Dialog Esmart_File_Dialog;
+
+  struct _Esmart_File_Dialog
+  {
+Evas_Object *clip; /* clipped area for the file dialog */
+Evas_Object *edje; /* the edje file we load groups from */
+Evas_Object *directories;  /* directory containers */
+char *directories_dragbar; /* dragable part name for the
+* directories */
+Evas_Object *files;/* file container */
+char *files_dragbar;   /* the dragable for the file container */
+
+Evas_Object *entry;/* Esmart_Text_Entry */
+char *path;/* the cwd for the dialog */
+
+/* the client callback for intercepting file dialog specific stuff */
+void (*func) (void *data, Evas_Object * edje, int type);
+/* the data that's passed to the file dialog callback */
+void *fdata;
+
+/* the current geometry/location of the file dialog */
+Evas_Coord x, y, w, h;
+
+/* the files the user wants to load/open/save(?)/ */
+Evas_List *selections;
+  };
+
 /**
  * Static Function Prototypes
  **/
-static int sort_cb (void *d1, void *d2);
+static int sort_cb (Evas_Object *d1, Evas_Object *d2);
 static void interp_return_key (void *data, const char *str);
 
 #if 0
@@ -182,7 +209,7 @@
  entry = esmart_text_entry_new (e);
  esmart_text_entry_max_chars_set (entry, PATH_MAX);
  esmart_text_entry_is_password_set (entry, 0);
- esmart_text_entry_focus_set (entry, 0);
+ evas_object_focus_set (entry, 0);
  esmart_text_entry_return_key_callback_set (entry,
 
interp_return_key,
 result);
@@ -301,19 +328,15 @@
 #endif
 
 static int
-sort_cb (void *d1, void *d2)
+sort_cb (Evas_Object *o, Evas_Object *oo)
 {
-  Evas_Object *o = NULL;
-  Evas_Object *oo = NULL;
   const char *txt = NULL, *txt2 = NULL;
 
-  if (!d1)
+  if (!o)
 return (1);
-  if (!d2)
+  if (!oo)
 return (-1);
 
-  o = ((Container_Element *) d1)-obj;
-  oo = ((Container_Element *) d2)-obj;
   if ((txt = evas_object_data_get (o, name)))
 {
   if ((txt2 = 

E CVS: engage handyande

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : handyande
Project : misc
Module  : engage

Dir : misc/engage/data/themes


Modified Files:
gentoo.edc none.edc 


Log Message:
Feedback from launching
===
RCS file: /cvsroot/enlightenment/misc/engage/data/themes/gentoo.edc,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- gentoo.edc  30 Oct 2004 05:13:35 -  1.14
+++ gentoo.edc  10 Nov 2004 15:53:47 -  1.15
@@ -109,6 +109,21 @@
 normal, engage-bottomlayer.png;
   }
 }
+   description {
+  state, pressed 0.0;
+
+  rel1 {
+relative, 0.05 0.05;
+offset, 0 0;
+  }
+  rel2 {
+relative, 0.95 0.95;
+offset, 0 0;
+  }
+  image {
+normal, engage-bottomlayer.png;
+  }
+}
   }
   part {
 name,   EngageIcon;
@@ -334,6 +349,23 @@
 transition, SINUSOIDAL 0.75;
 target, arrow.image.clip;
   }
+  program {
+name, engage_icon_launched_up;
+signal, mouse,clicked,1;
+   source, background;
+action, STATE_SET pressed 0.0;
+target, background;
+transition, DECELERATE 0.1;
+after, engage_icon_launched_down;
+  }
+  program {
+name, engage_icon_launched_down;
+signal, ;
+   source, ;
+action, STATE_SET default 0.0;
+target, background;
+transition, ACCELERATE 0.1;
+  }
 }/* Close Programs */
   } /* Close Group */
 } /* Close Coll */
===
RCS file: /cvsroot/enlightenment/misc/engage/data/themes/none.edc,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- none.edc30 Oct 2004 05:13:35 -  1.4
+++ none.edc10 Nov 2004 15:53:47 -  1.5
@@ -84,6 +84,20 @@
 offset, 0 0;
   }
 }
+   description {
+  state, pressed 0.0;
+  visible, 1;
+  color, 255 255 255 0;
+
+  rel1 {
+relative, 0.05 0.05;
+offset, 0 0;
+  }
+  rel2 {
+relative, 0.95 0.95;
+offset, 0 0;
+  }
+}
   }
   part {
 name,   EngageIcon;
@@ -289,6 +303,23 @@
 transition, SINUSOIDAL 0.75;
 target, arrow.image.clip;
   }
+  program {
+name, engage_icon_launched_up;
+signal, mouse,clicked,1;
+   source, background;
+action, STATE_SET pressed 0.0;
+target, background;
+transition, DECELERATE 0.1;
+after, engage_icon_launched_down;
+  }
+  program {
+name, engage_icon_launched_down;
+signal, ;
+   source, ;
+action, STATE_SET default 0.0;
+target, background;
+transition, ACCELERATE 0.1;
+  }
 } /* Close Programs */
   } /* Close Group */
 } /* Close Coll */




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2/src


Modified Files:
callbacks.c 


Log Message:
fixed window height bug
added french locale
fixed broken properties dialog


===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/callbacks.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- callbacks.c 4 Nov 2004 14:12:58 -   1.19
+++ callbacks.c 10 Nov 2004 16:14:12 -  1.20
@@ -326,7 +326,6 @@
   char key[KEY_LENGTH];
   char value[VALUE_LENGTH];
   GtkTreeModel* treemodel;
-  char *glade_file;
   char *pixmap_file;
 
   properties_xml = glade_xml_new (glade_file, properties_window, NULL);




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2/po


Added Files:
fr.po 


Log Message:
fixed window height bug
added french locale
fixed broken properties dialog






---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2


Modified Files:
TODO configure.in e16menuedit2.glade 


Log Message:
fixed window height bug
added french locale
fixed broken properties dialog


===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/TODO,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- TODO10 Nov 2004 13:39:46 -  1.14
+++ TODO10 Nov 2004 16:14:10 -  1.15
@@ -1,7 +1,6 @@
 BUGS:
 - compressed svg?
 - size columns with mouse
-- window doesn't size in height
 - Bug with -- NULL entries
 
 FEATURES:
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/configure.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- configure.in10 Nov 2004 13:39:46 -  1.21
+++ configure.in10 Nov 2004 16:14:10 -  1.22
@@ -36,7 +36,7 @@
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,$GETTEXT_PACKAGE, [Gettext package.])
 
 dnl Add the languages which your application supports here.
-ALL_LINGUAS=de en ko tr
+ALL_LINGUAS=de en ko tr fr
 AM_GLIB_GNU_GETTEXT
 
 AC_PATH_PROG(SCROLLKEEPER,scrollkeeper-config,no)
===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/e16menuedit2.glade,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e16menuedit2.glade  28 Oct 2004 09:49:53 -  1.11
+++ e16menuedit2.glade  10 Nov 2004 16:14:10 -  1.12
@@ -345,17 +345,17 @@
 
   child
widget class=GtkScrolledWindow id=scrolledwindow2
+ property name=width_request700/property
+ property name=height_request400/property
  property name=visibleTrue/property
  property name=can_focusTrue/property
- property name=hscrollbar_policyGTK_POLICY_ALWAYS/property
- property name=vscrollbar_policyGTK_POLICY_ALWAYS/property
+ property name=hscrollbar_policyGTK_POLICY_AUTOMATIC/property
+ property name=vscrollbar_policyGTK_POLICY_AUTOMATIC/property
  property name=shadow_typeGTK_SHADOW_NONE/property
  property name=window_placementGTK_CORNER_TOP_LEFT/property
 
  child
widget class=GtkTreeView id=treeview_menu
- property name=width_request800/property
- property name=height_request450/property
  property name=visibleTrue/property
  property name=can_focusTrue/property
  property name=headers_visibleTrue/property
@@ -368,8 +368,8 @@
/widget
packing
  property name=padding0/property
- property name=expandFalse/property
- property name=fillFalse/property
+ property name=expandTrue/property
+ property name=fillTrue/property
/packing
   /child
 




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tools andreas99

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : andreas99
Project : e16
Module  : tools

Dir : e16/tools/e16menuedit2/src


Modified Files:
callbacks.c 


Log Message:
wrong help path for fallback

===
RCS file: /cvsroot/enlightenment/e16/tools/e16menuedit2/src/callbacks.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- callbacks.c 10 Nov 2004 16:14:12 -  1.20
+++ callbacks.c 10 Nov 2004 18:20:54 -  1.21
@@ -301,7 +301,7 @@
   if (help_error)
   {
 g_print (running browser: %s\n, browser);
-help_error = run_help (browser, PACKAGE_DOC_DIR, PACKAGE.html);
+help_error = run_help (browser, YELP_HELP_DIR, PACKAGE.html);
 
 if (help_error == 1)
 {




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave dj2

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/src/lib


Modified Files:
engrave.l engrave.y 


Log Message:
- on/off/true/false/0/1 allowed for booleans now.
- I think I put this everywhere that was needed, but I'm not sure

===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave.l,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- engrave.l   24 Oct 2004 23:03:48 -  1.4
+++ engrave.l   10 Nov 2004 20:04:38 -  1.5
@@ -174,6 +174,12 @@
 visible{ KEYWORD_RETURN(VISIBLE); }
 x  { KEYWORD_RETURN(X); }
 y  { KEYWORD_RETURN(Y); }
+
+[o|O][n|N] { KEYWORD_RETURN(ON); }
+[o|O][f|F][f|F]{ KEYWORD_RETURN(OFF); }
+[t|T][r|R][u|U][e|E] { KEYWORD_RETURN(TRUE); }
+[f|F][a|A][l|L][s|S][e|E] { KEYWORD_RETURN(FALSE); }
+
 (\[^\]*\)*   {{ 
 char *tmp = NULL;
 int i = 0;
===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave.y,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- engrave.y   24 Oct 2004 23:03:48 -  1.7
+++ engrave.y   10 Nov 2004 20:04:38 -  1.8
@@ -48,6 +48,7 @@
 %left TIMES DIVIDE
 %left NEG /* negation--unary minus */
 %token OPEN_PAREN CLOSE_PAREN DOT INHERIT
+%token ON OFF TRUE FALSE
 
 %type string STRING 
 %type val FLOAT
@@ -57,7 +58,7 @@
 %type image_type image_type
 %type text_effect effect_type
 %type aspect_pref aspect_pref_type
-%type val exp
+%type val exp boolean
 
 %%
 
@@ -383,12 +384,26 @@
| OUTLINE_SOFT_SHADOW { $$ = ENGRAVE_TEXT_EFFECT_OUTLINE_SOFT_SHADOW; }
;
 
-mouse_events: MOUSE_EVENTS COLON exp SEMICOLON {
+boolean: ON { $$ = 1; }
+   | OFF { $$ = 0; }
+   | TRUE { $$ = 1; }
+   | FALSE { $$ = 0; }
+   | exp {
+   int i = $1;
+   if ((i != 0)  (i != 1)) {
+   printf(Invalid boolean %d at line %d\n, i, 
engrave_lnum);
+   i = 0;
+   }
+   $$ = i;
+   }
+   ;
+
+mouse_events: MOUSE_EVENTS COLON boolean SEMICOLON {
 engrave_parse_part_mouse_events((int)$3);
}
;
 
-repeat_events: REPEAT_EVENTS COLON exp SEMICOLON {
+repeat_events: REPEAT_EVENTS COLON boolean SEMICOLON {
 engrave_parse_part_repeat_events((int)$3);
}
;
@@ -462,7 +477,7 @@
}
;
 
-visible: VISIBLE COLON exp SEMICOLON {
+visible: VISIBLE COLON boolean SEMICOLON {
 engrave_parse_state_visible((int)$3);
}
;
@@ -675,7 +690,7 @@
| size
;
 
-smooth: SMOOTH COLON exp SEMICOLON {
+smooth: SMOOTH COLON boolean SEMICOLON {
 engrave_parse_state_fill_smooth((int)$3);
}
;
@@ -755,7 +770,7 @@
}
;
 
-fit: FIT COLON exp exp SEMICOLON {
+fit: FIT COLON boolean boolean SEMICOLON {
 engrave_parse_state_text_fit((int)$3, (int)$4);
}
;




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave dj2

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave


Modified Files:
README TODO 


Log Message:
- on/off/true/false/0/1 allowed for booleans now.
- I think I put this everywhere that was needed, but I'm not sure

===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/README,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -3 -r1.1.1.1 -r1.2
--- README  23 Sep 2004 22:20:18 -  1.1.1.1
+++ README  10 Nov 2004 20:04:37 -  1.2
@@ -3,11 +3,9 @@
 
 Engrave is a library for editing the contents of an edje .eet file.
 
-Engrave
-
- o  parses Edje's .edc format (or the .edc embedded in and edje .eet file)
+ o  parses Edje's .edc format (or the .edc embedded in an edje .eet file)
  o  returns a structural representation of the .edc. 
  o  provides an API for modifying this representation (add/remove/edit parts,
 programs, etc)
- o  writes the modified data back out to .edc (or .eet)
+ o  writes the modified data back out to an .edc (or an .eet)
 
===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/TODO,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- TODO24 Oct 2004 23:07:16 -  1.2
+++ TODO10 Nov 2004 20:04:37 -  1.3
@@ -1,9 +1,5 @@
 Everything
 
-- edje can take boolean values as:
-  true/false, 0/1, on/off
-  need to support this in engrave
-
 - need to write all of the corresponding _get methods and port engrave_out
   to use those methods.
 




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave dj2

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/src/lib


Modified Files:
engrave.l 


Log Message:
- the |s are not necessary, makes it a bit easier to read

===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave.l,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- engrave.l   10 Nov 2004 20:04:38 -  1.5
+++ engrave.l   10 Nov 2004 20:17:13 -  1.6
@@ -175,10 +175,10 @@
 x  { KEYWORD_RETURN(X); }
 y  { KEYWORD_RETURN(Y); }
 
-[o|O][n|N] { KEYWORD_RETURN(ON); }
-[o|O][f|F][f|F]{ KEYWORD_RETURN(OFF); }
-[t|T][r|R][u|U][e|E] { KEYWORD_RETURN(TRUE); }
-[f|F][a|A][l|L][s|S][e|E] { KEYWORD_RETURN(FALSE); }
+[oO][nN]   { KEYWORD_RETURN(ON); }
+[oO][fF][fF]   { KEYWORD_RETURN(OFF); }
+[tT][rR][uU][eE]   { KEYWORD_RETURN(TRUE); }
+[fF][aA][lL][sS][eE]   { KEYWORD_RETURN(FALSE); }
 
 (\[^\]*\)*   {{ 
 char *tmp = NULL;




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave dj2

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave/src/lib


Modified Files:
engrave.y engrave_group.c engrave_group.h engrave_parse.c 


Log Message:
missed that one

===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave.y,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- engrave.y   10 Nov 2004 20:04:38 -  1.8
+++ engrave.y   10 Nov 2004 20:33:21 -  1.9
@@ -392,7 +392,7 @@
int i = $1;
if ((i != 0)  (i != 1)) {
printf(Invalid boolean %d at line %d\n, i, 
engrave_lnum);
-   i = 0;
+   i = 0;
}
$$ = i;
}
===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave_group.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- engrave_group.c 24 Oct 2004 07:06:37 -  1.4
+++ engrave_group.c 10 Nov 2004 20:33:21 -  1.5
@@ -110,6 +110,19 @@
 }
 
 /**
+ * engrave_group_program_add - add the program to the group
+ * @param eg: The Engrave_Group to add the program too.
+ * @param ep: The Engrave_Program to add to the group.
+ *
+ * @return Returns no value.
+ */
+void
+engrave_group_program_add(Engrave_Group *eg, Engrave_Program *ep)
+{
+  eg-programs = evas_list_append(eg-programs, ep);
+}
+
+/**
  * engrave_group_part_last_get - retrieve the last part in the group.
  * @param eg: The Engrave_Group to retrieve the last part from.
  *
===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave_group.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- engrave_group.h 24 Oct 2004 07:06:37 -  1.3
+++ engrave_group.h 10 Nov 2004 20:33:21 -  1.4
@@ -42,6 +42,8 @@
 Engrave_Group *engrave_group_new(void);
 void engrave_group_data_add(Engrave_Group *eg, Engrave_Data *ed);
 void engrave_group_part_add(Engrave_Group *eg, Engrave_Part *ep);
+void engrave_group_program_add(Engrave_Group *eg, Engrave_Program *ep);
+
 void engrave_group_script_set(Engrave_Group *eg, char *script);
 void engrave_group_name_set(Engrave_Group *eg, char *name);
 void engrave_group_min_size_set(Engrave_Group *eg, int w, int h);
===
RCS file: /cvsroot/enlightenment/e17/libs/engrave/src/lib/engrave_parse.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- engrave_parse.c 24 Oct 2004 23:03:48 -  1.6
+++ engrave_parse.c 10 Nov 2004 20:33:21 -  1.7
@@ -762,8 +762,7 @@
 
   program = engrave_program_new();
   group = engrave_file_group_last_get(engrave_file);
-
-  group-programs = evas_list_append(group-programs, program);
+  engrave_group_program_add(group, program);
 }
 
 void




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/esmart raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/esmart

Dir : e17/libs/esmart/src/lib/esmart_text_entry


Modified Files:
Esmart_Text_Entry.h esmart_text_entry.c 


Log Message:


add accessors

===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_text_entry/Esmart_Text_Entry.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- Esmart_Text_Entry.h 10 Nov 2004 15:22:39 -  1.2
+++ Esmart_Text_Entry.h 11 Nov 2004 00:24:31 -  1.3
@@ -18,10 +18,11 @@
 void esmart_text_entry_max_chars_set (Evas_Object * o, int max);
 void esmart_text_entry_edje_part_set (Evas_Object * o, Evas_Object * edje,
  const char *part);
-
+Evas_Object *esmart_text_entry_edje_object_get(Evas_Object * o);
+const char *esmart_text_entry_edje_part_get(Evas_Object * o);
 
 /* you've gotta free this resut */
-//char * esmart_text_entry_string_get(Evas_Object *o)
+const char *esmart_text_entry_text_get(Evas_Object *o);
 
 void esmart_text_entry_return_key_callback_set (Evas_Object * o,
void (*func) (void *data,
===
RCS file: 
/cvsroot/enlightenment/e17/libs/esmart/src/lib/esmart_text_entry/esmart_text_entry.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- esmart_text_entry.c 10 Nov 2004 15:22:39 -  1.5
+++ esmart_text_entry.c 11 Nov 2004 00:24:31 -  1.6
@@ -46,32 +46,16 @@
   return (o);
 }
 
-#if 0 /* come on guys! use the basic focus stuff! :) */
-int
-esmart_text_entry_is_focused (Evas_Object * o)
+const char *
+esmart_text_entry_text_get (Evas_Object * o)
 {
-   return (evas_object_focus_get (o));
-}
-
-void
-esmart_text_entry_focus_set (Evas_Object * o, int val)
-{
-  evas_object_focus_set(o, val);
-}
-#endif
-
-char *
-esmart_text_entry_string_get (Evas_Object * o)
-{
-  char *result = NULL;
   Esmart_Text_Entry *e = NULL;
 
   if ((e = evas_object_smart_data_get (o)))
 {
-  if (e-buf.text)
-   result = strdup (e-buf.text);
+   return e-buf.text;
 }
-  return (result);
+  return (NULL);
 }
 
 void
@@ -101,6 +85,30 @@
 }
 }
 
+Evas_Object *
+esmart_text_entry_edje_object_get(Evas_Object * o)
+{
+   Esmart_Text_Entry *e = NULL;
+
+   if ((e = evas_object_smart_data_get (o)))
+ {
+   return e-edje.o;
+ }
+   return NULL;
+}
+
+const char *
+esmart_text_entry_edje_part_get(Evas_Object * o)
+{
+   Esmart_Text_Entry *e = NULL;
+
+   if ((e = evas_object_smart_data_get (o)))
+ {
+   return e-edje.part;
+ }
+   return NULL;
+}
+
 void
 esmart_text_entry_return_key_callback_set (Evas_Object * o,
   void (*func) (void *data,




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/entrance raster

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/entrance

Dir : e17/apps/entrance/src/client


Modified Files:
entrance_edit.c main.c 


Log Message:


work with esmart_text fixes.
als alignemtn change

===
RCS file: /cvsroot/enlightenment/e17/apps/entrance/src/client/entrance_edit.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- entrance_edit.c 11 Jun 2004 03:23:47 -  1.7
+++ entrance_edit.c 11 Nov 2004 00:24:55 -  1.8
@@ -164,13 +164,10 @@
char *old = NULL;
char *new_str = NULL;
Evas_Object *o = NULL;
-   Esmart_Text_Entry *e = NULL;
 
int size = 0;
 
o = (Evas_Object *) data;
-   if ((e = evas_object_smart_data_get(o)))
-   {
   size = strlen(str);
 #if DEBUG
   if (!str)
@@ -178,19 +175,19 @@
   else
  fprintf(stderr, Entry Sent %s(%d)\n, str, size);
 #endif
-  if (e-edje.part)
+  if (esmart_text_entry_edje_part_get(o))
   {
 #if DEBUG
- fprintf(stderr, %s set its text\n, e-edje.part);
+ fprintf(stderr, %s set its text\n, 
esmart_text_entry_edje_part_get(o));
 #endif
- if ((old = evas_hash_find(ecco.hashes, e-edje.part)))
+ if ((old = evas_hash_find(ecco.hashes, 
esmart_text_entry_edje_part_get(o
  {
-evas_hash_del(ecco.hashes, e-edje.part, old);
+evas_hash_del(ecco.hashes, esmart_text_entry_edje_part_get(o), 
old);
  }
  else
  {
 fprintf(stderr, Unable to find old entry for %s\n,
-e-edje.part);
+esmart_text_entry_edje_part_get(o));
  }
  if (size  0)
  {
@@ -200,7 +197,7 @@
  {
 new_str = strdup();
  }
- if ((old = evas_hash_find(ecco.entries, e-edje.part)))
+ if ((old = evas_hash_find(ecco.entries, 
esmart_text_entry_edje_part_get(o
  {
 if (!strcmp(old, ecco,entry,focus,in,greeting,before))
 {
@@ -208,7 +205,7 @@
   free(ecco.config-before.string);
ecco.config-before.string = new_str;
ecco.hashes =
-  evas_hash_add(ecco.hashes, e-edje.part, new_str);
+  evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
 }
 else if (!strcmp(old, ecco,entry,focus,in,greeting,after))
 {
@@ -216,7 +213,7 @@
   free(ecco.config-after.string);
ecco.config-after.string = new_str;
ecco.hashes =
-  evas_hash_add(ecco.hashes, e-edje.part, new_str);
+  evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
 }
 else if (!strcmp(old, ecco,entry,focus,in,date))
 {
@@ -224,7 +221,7 @@
   free(ecco.config-date.string);
ecco.config-date.string = new_str;
ecco.hashes =
-  evas_hash_add(ecco.hashes, e-edje.part, new_str);
+  evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
 }
 else if (!strcmp(old, ecco,entry,focus,in,time))
 {
@@ -232,7 +229,7 @@
   free(ecco.config-time.string);
ecco.config-time.string = new_str;
ecco.hashes =
-  evas_hash_add(ecco.hashes, e-edje.part, new_str);
+  evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
 }
 else
if (!strcmp
@@ -244,7 +241,7 @@
  free(ecco.current_session-session);
   ecco.current_session-session = new_str;
   ecco.hashes =
- evas_hash_add(ecco.hashes, e-edje.part, new_str);
+ evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
}
 }
 else if (!strcmp(old, ecco,entry,focus,in,session,current,name))
@@ -278,7 +275,7 @@
  edje_object_signal_emit(ecco.edje, ecco,show,sessions,
  );
  ecco.hashes =
-evas_hash_add(ecco.hashes, e-edje.part, new_str);
+evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
   }
   else
   {
@@ -327,7 +324,7 @@
  edje_object_signal_emit(ecco.edje, ecco,show,users,
  );
  ecco.hashes =
-evas_hash_add(ecco.hashes, e-edje.part, new_str);
+evas_hash_add(ecco.hashes, 
esmart_text_entry_edje_part_get(o), new_str);
   }
   else
   {
@@ -347,7 +344,7 

E CVS: libs/ewl rbdpngn

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/images


Modified Files:
bg.edc 


Log Message:
 - statusbar work from dan sinclair (dj2)
 - miscellaneous debugging.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/images/bg.edc,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- bg.edc  8 Oct 2004 15:59:28 -   1.14
+++ bg.edc  11 Nov 2004 05:56:32 -  1.15
@@ -1,14 +1,15 @@
-#define STR(x) #x
-#define CATSTR(x, y) STR(x## y)
+#define STR(x) x
+ /* #define CATSTR(x, y) STR(x## y)
 #define CATPNG(x, y) STR(x##y.png)
+*/
 #define TOUR_IMAGE(PNAME) \
-   image, CATPNG(PNAME,) LOSSY 80; \
-   image, CATPNG(PNAME,1) LOSSY 80; \
-   image, CATPNG(PNAME,2) LOSSY 80; \
-   image, CATPNG(PNAME,3) LOSSY 80;
+   image, STR(PNAME).png LOSSY 98; \
+   image, STR(PNAME)1.png LOSSY 98; \
+   image, STR(PNAME)2.png LOSSY 98; \
+   image, STR(PNAME)3.png LOSSY 98;
 #define TOUR_PART(PNAME, ASPECT) \
 description { \
-   state, #PNAME 0.0; \
+   state, PNAME 0.0; \
aspect, ASPECT ASPECT; \
align, 0.5 0.5; \
rel1 { \
@@ -20,7 +21,7 @@
offset, -1 -1; \
} \
image { \
-   normal, CATPNG(PNAME,); \
+   normal, STR(PNAME).png; \
} \
 } \
 description { \
@@ -36,32 +37,32 @@
offset, -1 -1; \
} \
image { \
-   tween, CATPNG(PNAME,1); \
-   tween, CATPNG(PNAME,2); \
-   normal, CATPNG(PNAME,3); \
+   tween, STR(PNAME)1.png; \
+   tween, STR(PNAME)2.png; \
+   normal, STR(PNAME)3.png; \
} \
 }
 
-#define TOUR_PROG(PNAME, PNEXT, TARGET) \
+#define TOUR_PROG(PNAME, TEXT, PNEXT, TARGET) \
program { \
-   name, CATSTR(PNAME,_start); \
+   name, STR(PNAME)_start; \
signal, PNAME; \
source, *; \
action, STATE_SET STR(PNAME) 0.0; \
transition, LINEAR 0.0; \
target, STR(TARGET); \
-   after, CATSTR(PNAME,_continue); \
+   after, STR(PNAME)_continue; \
+   action, SIGNAL_EMIT TEXT STR(PNAME); \
} \
program { \
-   name, CATSTR(PNAME,_continue); \
+   name, STR(PNAME)_continue; \
action, STATE_SET STR(PNAME) 1.0; \
transition, LINEAR 20.0; \
target, STR(TARGET); \
-   after, CATSTR(PNEXT,_trigger); \
+   after, STR(PNEXT)_trigger; \
} \
program { \
-   name, CATSTR(PNEXT,_trigger); \
-   action, SIGNAL_EMIT start_fade fader; \
+   name, STR(PNEXT)_trigger; \
action, SIGNAL_EMIT STR(PNEXT) tour; \
}
 
@@ -269,12 +270,8 @@
name,   fader;
signal, start_fade;
source, *;
-   action, STATE_SET fade 0.0;
-   transition, LINEAR 1.0;
-   target, fade;
-   after,  defader;
+   action, SIGNAL_EMIT entrance tour;
}
-
program {
name,   defader;
action, STATE_SET default 0.0;
@@ -290,10 +287,10 @@
//  action, SIGNAL_EMIT elicit tour;
// }
 
-   TOUR_PROG(elicit, entrance, display);
-   TOUR_PROG(entrance, entice, display);
-   TOUR_PROG(entice, evidence, display);
-   TOUR_PROG(evidence,, display);
+   TOUR_PROG(elicit,Elicit,entrance,display);
+   TOUR_PROG(entrance,Entrance,entice,display);
+   TOUR_PROG(entice,Entice,evidence,display);
+   TOUR_PROG(evidence,Evidence,,display);
 
}
 




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl rbdpngn

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/themes/default/bits


Modified Files:
window-groups.edc 


Log Message:
 - statusbar work from dan sinclair (dj2)
 - miscellaneous debugging.

===
RCS file: 
/cvsroot/enlightenment/e17/libs/ewl/data/themes/default/bits/window-groups.edc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- window-groups.edc   24 Oct 2004 01:11:56 -  1.2
+++ window-groups.edc   11 Nov 2004 05:56:33 -  1.3
@@ -61,6 +61,7 @@
mouse_events,   0;
description {
   state,default 0.0;
+  border,4 4 4 4;
   rel1 {
  relative, 0.0  0.0;
  offset,   00;




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl rbdpngn

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl


Modified Files:
README TODO 


Log Message:
 - statusbar work from dan sinclair (dj2)
 - miscellaneous debugging.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/README,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- README  18 Oct 2003 17:00:35 -  1.4
+++ README  11 Nov 2004 05:56:31 -  1.5
@@ -1,7 +1,7 @@
 EWL README
 --
-EWL stands for Enlightened Widget Library. It provides a widget abstraction
-to creating GUI's using evas and edje. The use of edje allows for easy
-creation of fairly advanced themes.
+Enlightened Widget Library (EWL)  provides a widget abstraction to creating
+GUI's using Evas and Edje. The use of edje allows for easy creation of fairly
+advanced themes.
 
 More information can be found at http://www.enlightenment.org/pages/ewl.html
===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/TODO,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- TODO30 Aug 2004 16:09:58 -  1.6
+++ TODO11 Nov 2004 05:56:31 -  1.7
@@ -1,3 +1,4 @@
+
 TODO
 
 
@@ -41,3 +42,4 @@
 0.0.5 goals:
 
  + Fully functional textarea
+




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl rbdpngn

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/data/themes


Modified Files:
default.edc skeleton.edc zero.edc 


Log Message:
 - statusbar work from dan sinclair (dj2)
 - miscellaneous debugging.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/themes/default.edc,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- default.edc 1 Nov 2004 04:49:49 -   1.18
+++ default.edc 11 Nov 2004 05:56:32 -  1.19
@@ -67,6 +67,9 @@
item, /spinner/button_increment/group vscroll-mini-up;
item, /spinner/acceleration 5;
item, /spinner/velocity 5;
+   item, /statusbar/group statusbar;
+   item, /statusbar/text/font Vera;
+   item, /statusbar/text/font_size 10;
item, /text/font Vera;
item, /text/style none;
item, /textarea/group textarea;
@@ -76,7 +79,8 @@
item, /theme/name winter;
item, /tooltip/group dialog;
item, /tree/group tree;
-   item, /node/group treenode;
+   item, /node/row/group treerow;
+   /* item, /node/group treenode; */
item, /vscrollbar/button_decrement/group vscroll-down;
item, /vscrollbar/button_increment/group vscroll-up;
item, /vseeker/group vtrough;
@@ -96,6 +100,7 @@
 }
 
 collections {
+#include default/bits/tree-row.edc
 #include default/bits/button-groups.edc
 #include default/bits/cell-groups.edc
 #include default/bits/checkbox-groups.edc
@@ -108,6 +113,7 @@
 #include default/bits/radio-groups.edc
 #include default/bits/scrollbar-groups.edc
 #include default/bits/stock-groups.edc
+#include default/bits/statusbar-groups.edc
 #include default/bits/tree-groups.edc
 #include default/bits/window-groups.edc
 }
===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/themes/skeleton.edc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- skeleton.edc1 Nov 2004 04:49:49 -   1.3
+++ skeleton.edc11 Nov 2004 05:56:32 -  1.4
@@ -38,6 +38,9 @@
item, /spacer/group spacer;
item, /spinner/button_decrement/group vscroll-mini-down;
item, /spinner/button_increment/group vscroll-mini-up;
+   item, /statusbar/group statusbar;
+   item, /statusbar/text/font Vera;
+   item, /statusbar/text/font_size 10;
item, /text/color/b 255;
item, /text/color/g 255;
item, /text/color/r 255;
@@ -76,5 +79,6 @@
 #include skeleton/bits/progressbar-groups.edc
 #include skeleton/bits/radio-groups.edc
 #include skeleton/bits/scrollbar-groups.edc
+#include skeleton/bits/statusbar-groups.edc
 #include skeleton/bits/window-groups.edc
 }
===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/themes/zero.edc,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- zero.edc1 Nov 2004 04:49:49 -   1.7
+++ zero.edc11 Nov 2004 05:56:32 -  1.8
@@ -71,6 +71,9 @@
 item, /spinner/button_increment/group spinner-up;
 item, /spinner/acceleration 5;
 item, /spinner/velocity 5;
+   item, /statusbar/group statusbar;
+   item, /statubar/text/font vio;
+   item, /statusbar/text/font_size 12;
 item, /text/color/a 255;
 item, /text/font Vera;
 item, /text/font_size 10;
@@ -104,6 +107,7 @@
 #include zero/bits/radio-groups.edc
 #include zero/bits/scrollbar-groups.edc
 #include zero/bits/spinner-groups.edc
+#include zero/bits/statusbar-groups.edc
 #include zero/bits/stock-groups.edc
 #include zero/bits/tree-groups.edc
 #include zero/bits/window-groups.edc




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl rbdpngn

2004-11-10 Thread enlightenment-cvs
Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/test


Modified Files:
Makefile.am ewl_test.c ewl_test.h 


Log Message:
 - statusbar work from dan sinclair (dj2)
 - miscellaneous debugging.

===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/Makefile.am,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- Makefile.am 7 Sep 2004 15:17:27 -   1.47
+++ Makefile.am 11 Nov 2004 05:56:33 -  1.48
@@ -36,13 +36,14 @@
ewl_selectionbar_test.c \
ewl_selectionbook_test.c \
ewl_spinner_test.c \
+   ewl_statusbar_test.c \
ewl_table_test.c \
ewl_textarea_test.c \
ewl_tooltip_test.c \
ewl_tree_test.c
 
 # ewl_test_LDFLAGS =   
-ewl_test_LDADD =   $(top_builddir)/src/libewl.la 
@edje_libs@ @ecore_libs@ @evas_libs@ @emotion_libs@
+ewl_test_LDADD =   $(top_builddir)/src/libewl.la 
@edje_libs@ @ecore_libs@ @evas_libs@ @emotion_libs@ -lMallocDebug
 
 ewl_embed_test_DEPENDENCIES=   $(top_builddir)/src/libewl.la
 ewl_embed_test_SOURCES =   ewl_embed_test.c
===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/ewl_test.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -3 -r1.78 -r1.79
--- ewl_test.c  5 Oct 2004 23:58:45 -   1.78
+++ ewl_test.c  11 Nov 2004 05:56:33 -  1.79
@@ -86,6 +86,7 @@
{ Password,__create_password_test_window,
ewl_password_test.c },
{ Progressbar, __create_progressbar_test_window, 
ewl_progressbar_test.c },
{ Spinner, __create_spinner_test_window, 
ewl_spinner_test.c },
+   { Statusbar,   __create_statusbar_test_window,   
ewl_statusbar_test.c },
{ Textarea,__create_textarea_test_window,
ewl_textarea_test.c },
{ Tooltip, __create_tooltip_test_window, 
ewl_tooltip_test.c },
{ Tree,__create_tree_test_window,
ewl_tree_test.c },
@@ -130,10 +131,11 @@
Defines the Ewl_Paned to hold two resizable panes of content.,
Defines the Ewl_Password class to allow\n
for single line obscured text.,
-   Provides a statusbar from a given value.,
+   Provides a progress bar from a given value.,
Provides a field for entering numerical\n
values, along with buttons to increment\n
and decrement the value.,
+   Provides a statusbar for the window.,
Defines a class for multi-line text layout\n
and formatting.,
Defines a widget for displaying short\n
===
RCS file: /cvsroot/enlightenment/e17/libs/ewl/test/ewl_test.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ewl_test.h  7 Sep 2004 15:17:28 -   1.11
+++ ewl_test.h  11 Nov 2004 05:56:33 -  1.12
@@ -34,6 +34,7 @@
 void __create_selectionbar_test_window  (Ewl_Widget * w, void *ev_data, void 
*user_data);
 void __create_selectionbook_test_window (Ewl_Widget * w, void *ev_data, void 
*user_data);
 void __create_spinner_test_window   (Ewl_Widget * w, void *ev_data, void 
*user_data);
+void __create_statusbar_test_window (Ewl_Widget * w, void *ev_data, void 
*user_data);
 void __create_table_test_window (Ewl_Widget * w, void *ev_data, void 
*user_data);
 void __create_textarea_test_window  (Ewl_Widget * w, void *ev_data, void 
*user_data);
 void __create_tooltip_test_window   (Ewl_Widget * w, void *ev_data, void 
*user_data);




---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs