E CVS: proto/eflpp andreas

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : andreas
Project : e17
Module  : proto/eflpp

Dir : e17/proto/eflpp


Modified Files:
TODO 


Log Message:
- wrapped ecore_evas_alpha_set() to activate X composite support
- modified paint example to tests alpha composite support

===
RCS file: /cvs/e/e17/proto/eflpp/TODO,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- TODO3 Jul 2007 22:42:22 -   1.1
+++ TODO19 Jun 2008 21:27:40 -  1.2
@@ -2,3 +2,4 @@
 * parent/child chaining
 * callback handling needs more thinking
 * much more :/
+* wrap evas_color_* functions (e.g. evas_color_argb_premul)



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto/eflpp andreas

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : andreas
Project : e17
Module  : proto/eflpp

Dir : e17/proto/eflpp/examples/ecore/paint


Modified Files:
main.cpp 


Log Message:
- wrapped ecore_evas_alpha_set() to activate X composite support
- modified paint example to tests alpha composite support

===
RCS file: /cvs/e/e17/proto/eflpp/examples/ecore/paint/main.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- main.cpp18 Aug 2007 18:28:00 -  1.3
+++ main.cpp19 Jun 2008 21:27:40 -  1.4
@@ -95,7 +95,10 @@
 
 /* Create the main window, a window with an embedded canvas */
 efl::EcoreEvasWindowSoftwareX11* mw = new efl::EcoreEvasWindowSoftwareX11( 
WIDTH, HEIGHT );
-
+mw->setAlpha (true);
+  
+mw->show ();
+  
 /* Create some objects on the canvas */
 efl::EvasCanvas* evas = mw->canvas();
 
@@ -103,7 +106,7 @@
 cout << "PA: Size = " << s << endl;
 
 efl::EvasRectangle* bg = new efl::EvasRectangle( 0, 0, s.width(), 
s.height(), evas );
-bg->setColor( 90, 110, 240, 255 );
+bg->setColor( 50, 50, 50, 128 );
 bg->setLayer( 0 );
 bg->show();
 



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto/eflpp andreas

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : andreas
Project : e17
Module  : proto/eflpp

Dir : e17/proto/eflpp/src/ecore


Modified Files:
eflpp_ecore_window.cpp eflpp_ecore_window.h 


Log Message:
- wrapped ecore_evas_alpha_set() to activate X composite support
- modified paint example to tests alpha composite support

===
RCS file: /cvs/e/e17/proto/eflpp/src/ecore/eflpp_ecore_window.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- eflpp_ecore_window.cpp  8 Oct 2007 17:57:41 -   1.4
+++ eflpp_ecore_window.cpp  19 Jun 2008 21:27:40 -  1.5
@@ -35,7 +35,7 @@
 EcoreEvasWindow::EcoreEvasWindow()
 :Trackable( "EcoreEvasWindow" )
 {
-  
+  ecore_evas_init ();
 }
 
 
@@ -183,6 +183,16 @@
 bool EcoreEvasWindow::isShaped() const
 {
 return ecore_evas_shaped_get( _ee );
+}
+
+void EcoreEvasWindow::setAlpha( bool alpha )
+{
+  ecore_evas_alpha_set( _ee, alpha );
+}
+
+bool EcoreEvasWindow::hasAlpha () const
+{
+  return ecore_evas_alpha_get( _ee );
 }
 
 void EcoreEvasWindow::show()
===
RCS file: /cvs/e/e17/proto/eflpp/src/ecore/eflpp_ecore_window.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- eflpp_ecore_window.h6 Oct 2007 15:54:22 -   1.3
+++ eflpp_ecore_window.h19 Jun 2008 21:27:41 -  1.4
@@ -71,6 +71,9 @@
 int rotation() const;
 void setShaped( bool );
 bool isShaped() const;
+
+void setAlpha( bool alpha );
+bool hasAlpha () const;
 
 void show();
 void hide();



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore codewarrior

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_evas


Modified Files:
ecore_evas_x.c 


Log Message:
Set title again after we destroy the X window when setting alpha on and off.


===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_x.c,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -3 -r1.121 -r1.122
--- ecore_evas_x.c  19 May 2008 04:15:34 -  1.121
+++ ecore_evas_x.c  19 Jun 2008 21:03:17 -  1.122
@@ -21,7 +21,6 @@
 static Ecore_Event_Handler *ecore_evas_event_handlers[18];
 static Ecore_Idle_Enterer *ecore_evas_idle_enterer = NULL;
 
-
 #ifdef HAVE_ECORE_X_XCB
 static xcb_visualtype_t *
 xcb_visualtype_get(xcb_screen_t *screen, xcb_visualid_t visual)
@@ -1932,6 +1931,8 @@
  ecore_x_mwm_borderless_set(ee->engine.x.win, ee->prop.borderless);
if (ee->visible) ecore_x_window_show(ee->engine.x.win);
if (ee->prop.focused) ecore_x_window_focus(ee->engine.x.win);
+   ecore_x_icccm_title_set(ee->engine.x.win, ee->prop.title);
+   ecore_x_netwm_name_set(ee->engine.x.win, ee->prop.title);
 #endif /* BUILD_ECORE_EVAS_X11 */
  }
else if (!strcmp(ee->driver, "xrender_x11"))
@@ -1998,7 +1999,9 @@
if (ee->prop.borderless)
  ecore_x_mwm_borderless_set(ee->engine.x.win, ee->prop.borderless);
if (ee->visible) ecore_x_window_show(ee->engine.x.win);
-   if (ee->prop.focused) ecore_x_window_focus(ee->engine.x.win);
+   if (ee->prop.focused) ecore_x_window_focus(ee->engine.x.win);   
+   ecore_x_icccm_title_set(ee->engine.x.win, ee->prop.title);
+   ecore_x_netwm_name_set(ee->engine.x.win, ee->prop.title);
 #endif
  }
else if (!strcmp(ee->driver, "software_16_x11"))
@@ -2052,6 +2055,8 @@
  ecore_x_mwm_borderless_set(ee->engine.x.win, ee->prop.borderless);
if (ee->visible) ecore_x_window_show(ee->engine.x.win);
if (ee->prop.focused) ecore_x_window_focus(ee->engine.x.win);
+   ecore_x_icccm_title_set(ee->engine.x.win, ee->prop.title);
+   ecore_x_netwm_name_set(ee->engine.x.win, ee->prop.title);
 #endif /* BUILD_ECORE_EVAS_X11_16 */
  }
 }



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_wallpaper


Modified Files:
e_int_config_wallpaper_web.c 


Log Message:
only show progess when now != total, as curl returns some weird values
at the start of a download.

===
RCS file: 
/cvs/e/e17/apps/e/src/modules/conf_wallpaper/e_int_config_wallpaper_web.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- e_int_config_wallpaper_web.c10 May 2008 08:02:27 -  1.15
+++ e_int_config_wallpaper_web.c19 Jun 2008 17:30:47 -  1.16
@@ -23,7 +23,7 @@
E_Dialog *dia;
 };
 
-struct _E_Config_Dialog_Data 
+struct _E_Config_Dialog_Data
 {
Evas_Object *ofm, *o, *osfm, *ol;
Ecore_List *thumbs, *names, *medias;
@@ -70,7 +70,7 @@
import->magic = MAGIC_IMPORT;
 
dia = e_dialog_new(parent->con, "E", "_wallpaper_web_dialog");
-   if (!dia) 
+   if (!dia)
  {
E_FREE(import);
return NULL;
@@ -218,7 +218,7 @@
e_object_unref(E_OBJECT(dia));
 }
 
-static int 
+static int
 _feed_complete(void *data, int type, void *event)
 {
Ecore_Con_Event_Url_Complete *euc;
@@ -241,7 +241,7 @@
cfdata->hcomplete = NULL;
if (euc->status == 200)
  {
-snprintf(title, sizeof(title), _("[%s] Getting feed... DONE!"), 
+snprintf(title, sizeof(title), _("[%s] Getting feed... DONE!"),
  cfdata->source);
e_dialog_title_set(import->dia, title);
_parse_feed(data);
@@ -249,7 +249,7 @@
  }
else
  {
-snprintf(title, sizeof(title), _("[%s] Getting feed... FAILED!"), 
+snprintf(title, sizeof(title), _("[%s] Getting feed... FAILED!"),
  cfdata->source);
e_dialog_title_set(import->dia, title);
  }
@@ -290,7 +290,7 @@
cfdata->busy = 1;
_get_feed(cfdata->ol_val, import);
  }
-   else 
+   else
  e_widget_ilist_unselect(cfdata->ol);
 }
 
@@ -372,15 +372,15 @@
 
if (state == 0)
  {
-snprintf(title, sizeof(title), _("[%s] Parsing feed... DONE!"), 
+snprintf(title, sizeof(title), _("[%s] Parsing feed... DONE!"),
  cfdata->source);
e_dialog_title_set(import->dia, title);
e_fm2_path_set(cfdata->ofm, cfdata->tmpdir, "/");
_get_thumbs(import);
- } 
+ }
else
  {
-snprintf(title, sizeof(title), _("[%s] Parsing feed... FAILED!"), 
+snprintf(title, sizeof(title), _("[%s] Parsing feed... FAILED!"),
  cfdata->source);
cfdata->busy = 0;
e_dialog_title_set(import->dia, title);
@@ -419,7 +419,7 @@
e_int_config_wallpaper_web_del(dia);
 }
 
-static void 
+static void
 _file_double_click_cb(void *data, Evas_Object *obj, void *ev_info)
 {
/*E_Config_Dialog_Data *cfdata;
@@ -432,11 +432,11 @@
   return;
icon_info = sels->data;
printf("[double click] %s\n", icon_info->file);*/
-   
+
// Unused atm, interesting to simulate click on Ok button
 }
 
-static void 
+static void
 _file_click_cb(void *data, Evas_Object *obj, void *ev_info)
 {
Import *import;
@@ -461,13 +461,13 @@
return strcmp(str1, ecore_file_strip_ext(str2));
 }
 
-static void 
-_dia_close_cb(void *data, E_Dialog *dia) 
+static void
+_dia_close_cb(void *data, E_Dialog *dia)
 {
e_int_config_wallpaper_web_del(dia);
 }
 
-static void 
+static void
 _dia_ok_cb(void *data, E_Dialog *dia)
 {
Import *import;
@@ -483,7 +483,7 @@
  e_int_config_wallpaper_web_del(dia);
 }
 
-static void 
+static void
 _download_media(Import *import)
 {
Import *i;
@@ -493,12 +493,12 @@
 
i = import;
cfdata = i->cfdata;
-   
+
cfdata->pending_downloads = 1;
file = ecore_file_file_get(cfdata->edj);
-   snprintf(buf, sizeof(buf), "%s/.e/e/backgrounds/%s", 
+   snprintf(buf, sizeof(buf), "%s/.e/e/backgrounds/%s",
 e_user_homedir_get(), file);
-   snprintf(title, sizeof(title), _("[%s] Downloading of edje file..."), 
+   snprintf(title, sizeof(title), _("[%s] Downloading of edje file..."),
 cfdata->source);
e_dialog_title_set(i->dia, title);
ecore_file_download(cfdata->edj, buf,
@@ -506,7 +506,7 @@
_download_media_progress_cb, i);
 }
 
-static void 
+static void
 _download_media_complete_cb(void *data, const char *file, int status)
 {
Import *import;
@@ -514,7 +514,7 @@
 
import = data;
import->cfdata->pending_downloads = 0;
-   snprintf(dest, sizeof(dest), "%s/.e/e/backgrounds/%s", 
+   snprintf(dest, sizeof(dest), "%s/.e/e/backgrounds/%s",
 e_user_homedir_get(), ecore_file_file_get(import->cfdata->edj));
e_int_config_wallpaper_update(import->parent, dest);
e_int_config_wallpaper_web_del(import->dia);
@@ -532,11 +532,11 @@
cfdata = import->cfdata;
if (got != ecore_list_count(cfdata->thumbs))
  {
-snprintf(title, sizeof(title), _("[%

E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/exebuf


Modified Files:
e_exebuf.c 


Log Message:
Add option to clear exebuf (from Bertrand Janin).

===
RCS file: /cvs/e/e17/apps/e/src/modules/exebuf/e_exebuf.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_exebuf.c  30 May 2008 22:30:56 -  1.3
+++ e_exebuf.c  19 Jun 2008 15:56:18 -  1.4
@@ -45,6 +45,7 @@
 static void _e_exebuf_prev(void);
 static void _e_exebuf_complete(void);
 static void _e_exebuf_backspace(void);
+static void _e_exebuf_clear(void);
 static void _e_exebuf_matches_update(void);
 static void _e_exebuf_hist_update(void);
 static void _e_exebuf_hist_clear(void);
@@ -830,6 +831,18 @@
  }
 }
 
+static void
+_e_exebuf_clear(void)
+{
+   if (cmd_buf[0] != 0)
+ {
+   cmd_buf[0] = 0;
+   _e_exebuf_update();
+   if (!update_timer)
+  update_timer = ecore_timer_add(MATCH_LAG, _e_exebuf_update_timer, 
NULL);
+ }
+}
+
 static int
 _e_exebuf_cb_sort_eap(void *data1, void *data2)
 {
@@ -1265,6 +1278,8 @@
  _e_exebuf_exec_term();
else if (!strcmp(ev->keysymbol, "KP_Enter"))
  _e_exebuf_exec();
+   else if (!strcmp(ev->keysymbol, "u") && (ev->modifiers & 
ECORE_X_MODIFIER_CTRL))
+ _e_exebuf_clear();
else if (!strcmp(ev->keysymbol, "Escape"))
  e_exebuf_hide();
else if (!strcmp(ev->keysymbol, "BackSpace"))



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/e_dbus englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/e_dbus

Dir : e17/libs/e_dbus/src/lib/dbus


Modified Files:
e_dbus.c 


Log Message:
Use deprecated call until build server uses newer dbus.

===
RCS file: /cvs/e/e17/libs/e_dbus/src/lib/dbus/e_dbus.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- e_dbus.c19 Jun 2008 12:50:11 -  1.6
+++ e_dbus.c19 Jun 2008 15:53:06 -  1.7
@@ -133,7 +133,7 @@
   hd->watch = watch;
 
   hd->enabled = dbus_watch_get_enabled(watch);
-  hd->fd = dbus_watch_get_unix_fd(hd->watch);
+  hd->fd = dbus_watch_get_fd(hd->watch);
   DEBUG(5, "watch add (enabled: %d)\n", hd->enabled);
   if (hd->enabled) e_dbus_fd_handler_add(hd);
 }



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_shelf.c e_zone.c e_zone.h 


Log Message:
Add edge move event, so a slide in on the edge will show a shelf.
Fix interrupt hiding on mouse in.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_shelf.c,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -3 -r1.94 -r1.95
--- e_shelf.c   14 Jun 2008 10:10:54 -  1.94
+++ e_shelf.c   19 Jun 2008 13:23:20 -  1.95
@@ -128,10 +128,11 @@
evas_object_resize(es->o_event, es->w, es->h);
evas_object_event_callback_add(es->o_event, EVAS_CALLBACK_MOUSE_DOWN, 
_e_shelf_cb_mouse_down, es);
 
-   /* FIXME: Need an EDGE_MOVE handler */
es->handlers = evas_list_append(es->handlers,
 ecore_event_handler_add(E_EVENT_ZONE_EDGE_IN, _e_shelf_cb_mouse_in, 
es));
es->handlers = evas_list_append(es->handlers,
+ecore_event_handler_add(E_EVENT_ZONE_EDGE_MOVE, _e_shelf_cb_mouse_in, 
es));
+   es->handlers = evas_list_append(es->handlers,
 ecore_event_handler_add(ECORE_X_EVENT_MOUSE_IN, _e_shelf_cb_mouse_in, 
es));
es->handlers = evas_list_append(es->handlers,
 ecore_event_handler_add(ECORE_X_EVENT_MOUSE_OUT, 
_e_shelf_cb_mouse_out, es));
@@ -1238,10 +1239,10 @@
es = data;
if (es->cfg->autohide_show_action) return 1;
 
-   if (type == E_EVENT_ZONE_EDGE_IN)
+   if ((type == E_EVENT_ZONE_EDGE_IN) || (type == E_EVENT_ZONE_EDGE_MOVE))
  {
-   E_Event_Zone_Edge_In *ev;
-   int   show = 0;
+   E_Event_Zone_Edge *ev;
+   intshow = 0;
 
ev = event;
if (es->zone != ev->zone) return 1;
@@ -1312,7 +1313,7 @@
if (ev->win == es->win)
  {
 edje_object_signal_emit(es->o_base, "e,state,focused", "e");
-if ((es->hide_animator) || (es->instant_timer))
+if ((es->hide_animator) || (es->hide_timer) || (es->instant_timer))
   e_shelf_toggle(es, 1);
  }
  }
===
RCS file: /cvs/e/e17/apps/e/src/bin/e_zone.c,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -3 -r1.135 -r1.136
--- e_zone.c7 Apr 2008 19:06:13 -   1.135
+++ e_zone.c19 Jun 2008 13:23:20 -  1.136
@@ -14,6 +14,7 @@
 static void _e_zone_event_zone_desk_count_set_free(void *data, void *ev);
 static int  _e_zone_cb_mouse_in(void *data, int type, void *event);
 static int  _e_zone_cb_mouse_out(void *data, int type, void *event);
+static int  _e_zone_cb_mouse_move(void *data, int type, void *event);
 static int  _e_zone_cb_timer(void *data);
 static int  _e_zone_cb_desk_show(void *data, int type, void *event);
 static void _e_zone_update_flip(E_Zone *zone);
@@ -28,9 +29,9 @@
 EAPI int E_EVENT_ZONE_MOVE_RESIZE = 0;
 EAPI int E_EVENT_ZONE_ADD = 0;
 EAPI int E_EVENT_ZONE_DEL = 0;
-/* FIXME: We need a EDGE_MOVE event */
 EAPI int E_EVENT_ZONE_EDGE_IN = 0;
 EAPI int E_EVENT_ZONE_EDGE_OUT = 0;
+EAPI int E_EVENT_ZONE_EDGE_MOVE = 0;
 
 #define E_ZONE_FLIP_LEFT(zone)  ((e_config->desk_flip_wrap && 
((zone)->desk_x_count > 1)) || ((zone)->desk_x_current > 0))
 #define E_ZONE_FLIP_RIGHT(zone) ((e_config->desk_flip_wrap && 
((zone)->desk_x_count > 1)) || (((zone)->desk_x_current + 1) < 
(zone)->desk_x_count))
@@ -47,6 +48,7 @@
E_EVENT_ZONE_DEL = ecore_event_type_new();
E_EVENT_ZONE_EDGE_IN = ecore_event_type_new();
E_EVENT_ZONE_EDGE_OUT = ecore_event_type_new();
+   E_EVENT_ZONE_EDGE_MOVE = ecore_event_type_new();
return 1;
 }
 
@@ -92,6 +94,9 @@
 
ecore_event_handler_add(ECORE_X_EVENT_MOUSE_OUT,
 
_e_zone_cb_mouse_out, zone));
zone->handlers = evas_list_append(zone->handlers,
+
ecore_event_handler_add(ECORE_X_EVENT_MOUSE_MOVE,
+
_e_zone_cb_mouse_move, zone));
+   zone->handlers = evas_list_append(zone->handlers,
 ecore_event_handler_add(E_EVENT_DESK_SHOW,
 
_e_zone_cb_desk_show, zone));
 
@@ -827,7 +832,7 @@
 _e_zone_cb_mouse_in(void *data, int type, void *event)
 {
Ecore_X_Event_Mouse_In *ev;
-   E_Event_Zone_Edge_In   *zev;
+   E_Event_Zone_Edge  *zev;
E_Zone *zone;
 
ev = event;
@@ -842,7 +847,7 @@
 zone->flip.direction = E_DIRECTION_UP;
  }
 
-   zev = E_NEW(E_Event_Zone_Edge_In, 1);
+   zev = E_NEW(E_Event_Zone_Edge, 1);
zev->zone = zone;
zev->x = ev->x;
zev->y = ev->y;
@@ -858,7 +863,7 @@
 zone->flip.direction = E_DIRECTION_RIGHT;
  }
 
-   zev = E_NEW(E_Event_Zone_Edge_In, 1);
+   zev = E_NEW(E_Event_Zone_Edge, 1);
zev->zone = zone;
zev-

E CVS: taskbar englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar


Modified Files:
e_mod_main.c 


Log Message:
Fix compiler warnings.

===
RCS file: /cvs/e/e_modules/taskbar/e_mod_main.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- e_mod_main.c26 Apr 2008 21:04:40 -  1.42
+++ e_mod_main.c19 Jun 2008 13:05:29 -  1.43
@@ -71,7 +71,6 @@
 
 static Config_Item *_taskbar_config_item_get(const char *id);
 
-static void _taskbar_cb_obj_moveresize(void *data, Evas *e, Evas_Object *obj, 
void *event_info);
 static void _taskbar_cb_menu_configure(void *data, E_Menu *m, E_Menu_Item *mi);
 static void _taskbar_cb_item_mouse_down(void *data, Evas *e, Evas_Object *obj, 
void *event_info);
 static void _taskbar_cb_item_mouse_up(void *data, Evas *e, Evas_Object *obj, 
void *event_info);
@@ -246,7 +245,6 @@
 _gc_orient(E_Gadcon_Client *gcc)
 {
Taskbar *taskbar;
-   int orient_changed = 0;
 
taskbar = (Taskbar *)gcc->data;
 
@@ -320,8 +318,6 @@
 _taskbar_new(Evas *evas, E_Zone *zone, const char *id)
 {
Taskbar *taskbar;
-   char buf[4096];
-   const char *expand;
 
taskbar = E_NEW(Taskbar, 1);
taskbar->config = _taskbar_config_item_get(id);
@@ -623,7 +619,6 @@
 _taskbar_config_updated(Config_Item *config)
 {
Evas_List *l;
-   Evas_List *m;
 
if (!taskbar_config)
   return;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: taskbar englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar/po


Modified Files:
eo.po fi.po hu.po it.po sv.po 


Log Message:
Fix compiler warnings.




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tiling englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tiling

Dir : e_modules/tiling


Modified Files:
e_mod_config.c e_mod_main.c e_modules-tiling.spec.in 


Log Message:
Fix compiler warnings.

===
RCS file: /cvs/e/e_modules/tiling/e_mod_config.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_config.c  8 Jun 2008 16:15:28 -   1.2
+++ e_mod_config.c  19 Jun 2008 13:03:50 -  1.3
@@ -5,6 +5,7 @@
 #include "e_mod_main.h"
 #include "e_mod_config.h"
 #include "config.h"
+#include "trivials.h"
 
 /* Prototypes */
 static void *_create_data(E_Config_Dialog *cfd);
@@ -140,8 +141,7 @@
  }
 
rg = e_widget_radio_group_new(&(vd->layout));
-   Evas_Object *radiolist = e_widget_list_add(evas, 0, 1),
-   *obj;
+   Evas_Object *radiolist = e_widget_list_add(evas, 0, 1);
 
LIST_ADD(radiolist, e_widget_label_add(evas, desk->name));
LIST_ADD(radiolist, RADIO("None", TILE_NONE, rg));
@@ -206,7 +206,6 @@
 {
Evas_Object *o, *ob, *of, *osf, *ossf, *ot;
E_Radio_Group *rg;
-   int i;
E_Container *con = e_container_current_get(e_manager_current_get());
E_Zone *zone;
Evas_List *l;
===
RCS file: /cvs/e/e_modules/tiling/e_mod_main.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_main.c5 Jun 2008 12:12:29 -   1.2
+++ e_mod_main.c19 Jun 2008 13:03:50 -  1.3
@@ -22,7 +22,6 @@
*vdesk_edd;
 static E_Border_Hook *hook = NULL;
 static Ecore_Event_Handler *handler_hide = NULL,
-  *handler_desk_count = NULL,
   *handler_desk_show = NULL,
   *handler_desk_before_show = NULL,
   *handler_mouse_move = NULL,
@@ -163,7 +162,7 @@
 }
 
 #ifdef DEBUG
-static int
+static void
 print_borderlist()
 {
if (!tinfo) return;
@@ -787,14 +786,13 @@
E_Event_Border_Hide *ev = event;
rearrange_windows(ev->border, 1);
 
-   if (currently_switching_desktop) return;
+   if (currently_switching_desktop) return 1;
 
/* Ensure that the border is deleted from all available desks */
static Tiling_Info *_tinfo = NULL;
-   Evas_List *l, *ll, *lll, *;
+   Evas_List *l, *ll, *lll;
E_Zone *zone;
E_Desk *desk;
-   E_Border *first;
int i;
 
for (l = e_manager_list(); l; l = l->next)
@@ -811,6 +809,7 @@
   _tinfo->client_list = evas_list_remove(_tinfo->client_list, 
ev->border);
  }
 }
+   return 1;
 }
 
 static int
@@ -819,6 +818,7 @@
E_Event_Desk_Show *ev = event;
_desk_show(ev->desk);
currently_switching_desktop = 0;
+   return 1;
 }
 
 static int
@@ -827,6 +827,7 @@
E_Event_Desk_Before_Show *ev = event;
_desk_before_show(ev->desk);
currently_switching_desktop = 1;
+   return 1;
 }
 
 static Evas_Bool
@@ -834,7 +835,7 @@
 {
Tiling_Info *ti = data;
E_Event_Border_Desk_Set *ev = fdata;
-   if (!ev || !ti || (ti->desk == ev->desk)) return;
+   if (!ev || !ti || (ti->desk == ev->desk)) return 1;
if (evas_list_find(ti->client_list, ev->border) == ev->border)
  ti->client_list = evas_list_remove(ti->client_list, ev->border);
if (evas_list_find(ti->floating_windows, ev->border) == ev->border)
@@ -850,6 +851,7 @@
 * zone changes or not (depends on the mouse position) */
E_Event_Border_Desk_Set *ev = event;
evas_hash_foreach(info_hash, _clear_bd_from_info_hash, ev);
+   return 1;
 }
 
 static int
@@ -865,6 +867,7 @@
current_zone = desk->zone;
_desk_show(desk);
  }
+   return 1;
 }
 
 
@@ -875,7 +878,7 @@
 EAPI void
 e_mod_tiling_rearrange()
 {
-   Evas_List *l, *ll, *lll, *;
+   Evas_List *l, *ll, *lll;
E_Zone *zone;
E_Desk *desk;
E_Border *first;
===
RCS file: /cvs/e/e_modules/tiling/e_modules-tiling.spec.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_modules-tiling.spec.in5 Jun 2008 10:55:51 -   1.1
+++ e_modules-tiling.spec.in19 Jun 2008 13:03:50 -  1.2
@@ -11,7 +11,7 @@
 Packager: %{?_packager:%{_packager}}%{!?_packager:Michael Jennings <[EMAIL 
PROTECTED]>}
 Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment 
Project (http://www.enlightenment.org/)}
 Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
-BuildRequires: ecore-devel, evas-devel, edje-bin
+BuildRequires: ecore-devel, evas-devel, esmart-devel, edje-bin
 BuildRequires: edje-devel, eet-devel, enlightenment-devel >= 0.16.999
 Requires: enlightenment >= 0.16.999
 BuildRoot: %{_tmppath}/%{name}-%{version}-root



-
Check out the new SourceForge.net Marke

E CVS: tiling englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tiling

Dir : e_modules/tiling/po


Modified Files:
it.po 


Log Message:
Fix compiler warnings.




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/gadman


Modified Files:
e_mod_config.c e_mod_gadman.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/modules/gadman/e_mod_config.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mod_config.c  19 May 2008 09:21:44 -  1.2
+++ e_mod_config.c  19 Jun 2008 12:56:07 -  1.3
@@ -133,7 +133,6 @@
 {
E_Config_Dialog_Data *cfdata;
Evas_List *l = NULL;
-   Evas_List *selected;
int i;
 
if (!(cfdata = data)) return;
@@ -141,7 +140,6 @@
for (i = 0, l = e_widget_ilist_items_get(cfdata->o_avail); l; l = l->next, 
i++) 
  {
 E_Ilist_Item *item = NULL;
-const char *name = NULL;
 E_Gadcon_Client_Class *cc;
 E_Gadcon_Client *gcc;
 
===
RCS file: /cvs/e/e17/apps/e/src/modules/gadman/e_mod_gadman.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- e_mod_gadman.c  12 Jun 2008 22:51:44 -  1.6
+++ e_mod_gadman.c  19 Jun 2008 12:56:07 -  1.7
@@ -42,7 +42,7 @@
 void
 gadman_init(E_Module *m)
 {
-   Evas_List *managers, *l;
+   Evas_List *l;
 
/* Create Manager */
Man = calloc(1, sizeof(Manager));
@@ -188,7 +188,6 @@
E_Config_Gadcon_Client *cf = NULL;
E_Gadcon_Client *gcc;
E_Gadcon *gc;
-   char *id;
 
if (ontop)
  gc = Man->gc_top;
@@ -492,9 +491,7 @@
 static void
 _apply_widget_position(E_Gadcon_Client *gcc)
 {
-   Evas_List *l;
int x, y, w, h;
-   int fx, fy, fw, fh;
 
x = gcc->cf->geom.pos_x * Man->width;
y = gcc->cf->geom.pos_y * Man->height;
@@ -839,7 +836,7 @@
  }
else if (action == DRAG_MOVE)
  {
-int w, h;
+int h;
 
 evas_pointer_output_xy_get(current->gadcon->evas, &mx, &my);
 
@@ -879,7 +876,7 @@
  }
else if (action == DRAG_MOVE)
  {
-int w, h;
+int w;
 
 evas_pointer_output_xy_get(current->gadcon->evas, &mx, &my);
 
@@ -916,7 +913,7 @@
  }
else if (action == DRAG_MOVE)
  {
-int w, h;
+int h;
 
 evas_pointer_output_xy_get(current->gadcon->evas, &mx, &my);
 h = my - oy - 15;
@@ -952,7 +949,7 @@
  }
else if (action == DRAG_MOVE)
  {
-int w, h;
+int w;
 
 evas_pointer_output_xy_get(current->gadcon->evas, &mx, &my);
 



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/e_dbus englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/e_dbus

Dir : e17/libs/e_dbus/src/lib/dbus


Modified Files:
e_dbus.c 


Log Message:
Remove use of deprecated function.

===
RCS file: /cvs/e/e17/libs/e_dbus/src/lib/dbus/e_dbus.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- e_dbus.c25 Mar 2008 23:19:12 -  1.5
+++ e_dbus.c19 Jun 2008 12:50:11 -  1.6
@@ -133,7 +133,7 @@
   hd->watch = watch;
 
   hd->enabled = dbus_watch_get_enabled(watch);
-  hd->fd = dbus_watch_get_fd(hd->watch);
+  hd->fd = dbus_watch_get_unix_fd(hd->watch);
   DEBUG(5, "watch add (enabled: %d)\n", hd->enabled);
   if (hd->enabled) e_dbus_fd_handler_add(hd);
 }



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules/gstreamer


Modified Files:
emotion_gstreamer.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/libs/emotion/src/modules/gstreamer/emotion_gstreamer.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- emotion_gstreamer.c 15 May 2008 17:46:13 -  1.4
+++ emotion_gstreamer.c 19 Jun 2008 12:49:11 -  1.5
@@ -435,9 +435,6 @@
 em_file_close(void *video)
 {
Emotion_Gstreamer_Video *ev;
-   GstIterator *iter;
-   gpointer data;
-   gboolean done;
 
ev = (Emotion_Gstreamer_Video *)video;
if (!ev)



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/bin


Modified Files:
edje_cc_parse.c 


Log Message:
Remove unused variable.

===
RCS file: /cvs/e/e17/libs/edje/src/bin/edje_cc_parse.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -3 -r1.51 -r1.52
--- edje_cc_parse.c 6 Jun 2008 18:31:48 -   1.51
+++ edje_cc_parse.c 19 Jun 2008 12:47:04 -  1.52
@@ -839,7 +839,6 @@
 int
 parse_flags(int n, ...)
 {
-   char *str;
Evas_List *lst;
int result = 0;
va_list va;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/edje englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
edje_script_only.c 


Log Message:
Add return values.

===
RCS file: /cvs/e/e17/libs/edje/src/lib/edje_script_only.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- edje_script_only.c  7 Jun 2008 10:06:13 -   1.3
+++ edje_script_only.c  19 Jun 2008 12:46:04 -  1.4
@@ -81,6 +81,7 @@
 #define IFNO(func) if (si->fn.func == EMBRYO_FUNCTION_NONE)
 #define CLFN(func) IFFN(func) {_call_fn(ed, #func, si->fn.func);}
 #define SI Sinfo *si; si = ed->script_only_data; if (!si) return
+#define SI_RETURN(ret) Sinfo *si; si = ed->script_only_data; if (!si) return 
(ret)
 #define PINT(val) embryo_parameter_cell_push(ed->collection->script, 
(Embryo_Cell)(val))
 #define PSTR(val) embryo_parameter_string_push(ed->collection->script, val)
 #define GTFN(func) si->fn.func = 
embryo_program_function_find(ed->collection->script, #func)
@@ -104,7 +105,7 @@
 static int
 _oid_alloc(Edje *ed)
 {
-   SI;
+   SI_RETURN(0);

si->oid.id++;
return si->oid.id;
@@ -115,7 +116,7 @@
 {
Oid *oi;
char buf[64];
-   SI;
+   SI_RETURN(NULL);

oi = calloc(1, sizeof(Oid));
if (!oi) return NULL;
@@ -139,7 +140,7 @@
 _oid_find(Edje *ed, int oid)
 {
char buf[64];
-   SI;
+   SI_RETURN(NULL);
 
snprintf(buf, sizeof(buf), "%i", oid);
return evas_hash_find(si->oid.hash, buf);
@@ -203,7 +204,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);
 
CHKPARAM(1);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -219,7 +220,7 @@
Edje *ed = embryo_program_data_get(ep);
Evas_Object *o;
Oid *oid;
-   SI;
+   SI_RETURN(-1);

o = evas_object_rectangle_add(evas_object_evas_get(ed->obj));
if (!o) return 0;
@@ -233,7 +234,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);
 
CHKPARAM(1);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -246,7 +247,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);
 
CHKPARAM(1);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -259,11 +260,11 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);

CHKPARAM(3);
if (!(oid = _oid_find(ed, params[1]))) return -1;
-   if ((oid->x == params[2]) && (oid->y == params[3])) return;
+   if ((oid->x == params[2]) && (oid->y == params[3])) return -1;
oid->x = params[2];
oid->y = params[3];
evas_object_move(oid->obj, ed->x + oid->x, ed->y + oid->y);
@@ -275,11 +276,11 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);

CHKPARAM(3);
if (!(oid = _oid_find(ed, params[1]))) return -1;
-   if ((oid->w == params[2]) && (oid->h == params[3])) return;
+   if ((oid->w == params[2]) && (oid->h == params[3])) return -1;
oid->w = params[2];
oid->h = params[3];
evas_object_resize(oid->obj, oid->w, oid->h);
@@ -291,12 +292,12 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);

CHKPARAM(5);
if (!(oid = _oid_find(ed, params[1]))) return -1;
if ((oid->x == params[2]) && (oid->y == params[3]) &&
-   (oid->w == params[4]) && (oid->h == params[5])) return;
+   (oid->w == params[4]) && (oid->h == params[5])) return -1;
oid->x = params[2];
oid->y = params[3];
oid->w = params[4];
@@ -311,7 +312,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);

CHKPARAM(5);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -327,7 +328,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
-   SI;
+   SI_RETURN(-1);
 
CHKPARAM(5);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -341,7 +342,7 @@
Edje *ed = embryo_program_data_get(ep);
Oid *oid;
int r, g, b, a;
-   SI;
+   SI_RETURN(-1);
 
CHKPARAM(5);
if (!(oid = _oid_find(ed, params[1]))) return -1;
@@ -358,7 +359,7 @@
 {
Edje *ed = embryo_program_data_get(ep);
char *sig = NULL, *src = NULL;
-   SI;
+   SI_RETURN(-1);

CHKPARAM(2);
GETSTR(sig, params[1]);
@@ -382,7 +383,6 @@
 void
 _edje_script_only_init(Edje *ed)
 {
-   Embryo_Function fn;
Sinfo *si;

si = calloc(1, sizeof(Sinfo));
@@ -425,7 +425,6 @@
 void
 _edje_script_only_shutdown(Edje *ed)
 {
-   Embryo_Function fn;
SI;
 
CLFN(obj_shutdown);



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge

E CVS: libs/edje englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/edje

Dir : e17/libs/edje/src/lib


Modified Files:
edje_edit.c 


Log Message:
Fix compiler warnings.

===
RCS file: /cvs/e/e17/libs/edje/src/lib/edje_edit.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- edje_edit.c 14 Jun 2008 01:13:16 -  1.17
+++ edje_edit.c 19 Jun 2008 12:39:58 -  1.18
@@ -3327,11 +3327,9 @@
 
 static char *types[] = {"NONE", "RECT", "TEXT", "IMAGE", "SWALLOW", 
"TEXTBLOCK", "GRADIENT", "GROUP"};
 
-static int
+static void
 _edje_generate_source_of_part(Evas_Object *obj, const char *part, FILE *f)
 {
-   int i;
-   
fprintf(f, I3"part {\n");
fprintf(f, I4"name: \"%s\";\n", part);
fprintf(f, I4"type: %s;\n", types[edje_edit_part_type_get(obj, part)]);
@@ -3345,7 +3343,7 @@
fprintf(f, I3"}\n");//part
 }
 
-static int
+static void
 _edje_generate_source_of_group(Edje *ed, const char *group, FILE *f)
 {
Evas_Object *obj;
@@ -3353,7 +3351,7 @@
int w, h;

obj = edje_object_add(ed->evas);
-   if (!edje_object_file_set(obj, ed->file->path, group)) return 0;
+   if (!edje_object_file_set(obj, ed->file->path, group)) return;
   
fprintf(f, I1"group {\n");
fprintf(f, I2"name: \"%s\";\n", group);



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/engrave englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/engrave

Dir : e17/libs/engrave


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/libs/engrave/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- .cvsignore  22 Mar 2007 17:53:26 -  1.5
+++ .cvsignore  19 Jun 2008 12:30:57 -  1.6
@@ -15,3 +15,4 @@
 *.tar.gz
 engrave.spec
 *.pc
+ylwrap



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/exml englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/exml

Dir : e17/libs/exml


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/libs/exml/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- .cvsignore  13 Apr 2006 07:44:32 -  1.7
+++ .cvsignore  19 Jun 2008 12:30:31 -  1.8
@@ -15,3 +15,4 @@
 exml.spec
 exml-config
 README
+depcomp



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules/xine


Added Files:
.cvsignore 


Log Message:
ignore




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/emotion englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/emotion

Dir : e17/libs/emotion/src/modules/gstreamer


Added Files:
.cvsignore 


Log Message:
ignore




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/embryo englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/embryo

Dir : e17/libs/embryo


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/libs/embryo/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- .cvsignore  24 Aug 2005 16:03:19 -  1.5
+++ .cvsignore  19 Jun 2008 12:27:08 -  1.6
@@ -26,3 +26,4 @@
 *.spec
 README
 mkinstalldirs
+compile



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/eet

Dir : e17/libs/eet/src/tests


Added Files:
.cvsignore 


Log Message:
ignore++




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/eet

Dir : e17/libs/eet


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/libs/eet/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- .cvsignore  28 Apr 2008 09:23:43 -  1.13
+++ .cvsignore  19 Jun 2008 12:26:09 -  1.14
@@ -37,3 +37,4 @@
 m4/ltsugar.m4
 m4/ltversion.m4
 m4/lt~obsolete.m4
+compile



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_wince


Added Files:
.cvsignore 


Log Message:
ignore




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/e_dbus englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : libs/e_dbus

Dir : e17/libs/e_dbus


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/libs/e_dbus/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- .cvsignore  29 Oct 2007 02:20:47 -  1.1
+++ .cvsignore  19 Jun 2008 12:24:52 -  1.2
@@ -17,3 +17,4 @@
 missing
 stamp-h1
 *.pc
+e_dbus.spec



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/expedite englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/expedite

Dir : e17/apps/expedite


Modified Files:
.cvsignore 


Log Message:
ignore++

===
RCS file: /cvs/e/e17/apps/expedite/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore  27 May 2007 18:12:40 -  1.2
+++ .cvsignore  19 Jun 2008 12:24:09 -  1.3
@@ -15,3 +15,4 @@
 ltmain.sh
 missing
 stamp-h1
+compile



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
.cvsignore 


Log Message:
ignore

===
RCS file: /cvs/e/e17/apps/e/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- .cvsignore  15 Jul 2007 21:26:17 -  1.13
+++ .cvsignore  19 Jun 2008 12:23:41 -  1.14
@@ -11,6 +11,7 @@
 configure
 depcomp
 enlightenment-config
+enlightenment.pc
 install-sh
 libtool
 missing



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tiling englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tiling

Dir : e_modules/tiling/po


Added Files:
.cvsignore 


Log Message:
ignore




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tiling englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e_modules
Module  : tiling

Dir : e_modules/tiling


Added Files:
.cvsignore 


Log Message:
ignore




-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/battery


Modified Files:
batget.c e_mod_main.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/modules/battery/batget.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- batget.c11 May 2008 16:21:21 -  1.12
+++ batget.c19 Jun 2008 12:18:59 -  1.13
@@ -1354,8 +1354,7 @@
 dir_has_contents(const char *dir)
 {
Ecore_List *bats;
-   char *name;
-   
+
bats = ecore_file_ls(dir);
if (bats)
  {
===
RCS file: /cvs/e/e17/apps/e/src/modules/battery/e_mod_main.c,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -3 -r1.120 -r1.121
--- e_mod_main.c14 Jun 2008 06:18:30 -  1.120
+++ e_mod_main.c19 Jun 2008 12:18:59 -  1.121
@@ -510,7 +510,6 @@
  int have_battery = 0;
  int have_power = 0;
  Evas_List *l;
-  int mins, hrs;
   static int debounce_popup = 0;
 
   if (debounce_popup > POPUP_DEBOUNCE_CYCLES)



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_shelf_config.c 


Log Message:
Update flip windows in case we change outhide behaviour.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_shelf_config.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- e_int_shelf_config.c9 Nov 2007 23:53:38 -   1.34
+++ e_int_shelf_config.c19 Jun 2008 12:12:24 -  1.35
@@ -399,6 +399,7 @@
  e_shelf_toggle(cfdata->es, 0);
else if (!cfdata->escfg->autohide && cfdata->es->hidden)
  e_shelf_toggle(cfdata->es, 1);
+   e_zone_update_flip_all();

cfdata->escfg->desk_show_mode = cfdata->desk_show_mode;
cfdata->escfg->desk_list = NULL;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_actions.c 


Log Message:
Function doesn't return a value.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_actions.c,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -3 -r1.115 -r1.116
--- e_actions.c 18 Jun 2008 11:38:29 -  1.115
+++ e_actions.c 19 Jun 2008 11:59:25 -  1.116
@@ -2050,7 +2050,7 @@
  }
 }
 
-static int
+static void
 _delayed_action_list_parse(Delayed_Action *da, const char *params)
 {
double delay = 2.0;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_border_menu.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_border_menu.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -3 -r1.83 -r1.84
--- e_int_border_menu.c 23 May 2008 22:36:57 -  1.83
+++ e_int_border_menu.c 19 Jun 2008 11:57:59 -  1.84
@@ -332,7 +332,6 @@
E_Menu *subm;
E_Menu_Item *submi;
E_Border *bd;
-   Evas *evas;
 
if (!(bd = data)) return;
 
@@ -465,7 +464,6 @@
E_Menu *subm;
E_Menu_Item *submi;
E_Border *bd;
-   Evas *evas;
 
if (!(bd = data)) return;
 
@@ -499,7 +497,6 @@
E_Menu *subm;
E_Menu_Item *submi;
E_Border *bd;
-   Evas *evas;
 
if (!(bd = data)) return;
 
@@ -766,7 +763,6 @@
E_Menu *subm;
E_Menu_Item *submi;
E_Border *bd;
-   Evas *evas;
 
if (!(bd = data)) return;
 



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_configure.c 


Log Message:
Remove unused variable.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_configure.c,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -3 -r1.119 -r1.120
--- e_configure.c   23 May 2008 14:40:51 -  1.119
+++ e_configure.c   19 Jun 2008 11:56:54 -  1.120
@@ -74,7 +74,6 @@
while ((desktop = ecore_list_next(settings_desktops)))
  {
char *s;
-   char *cfg_cat_item;
char *cfg_cat_name;
char *cfg_cat_icon;
char *cfg_cat;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e englebass

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_manager.c 


Log Message:
Remove unused variables.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_manager.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -3 -r1.69 -r1.70
--- e_manager.c 18 Jun 2008 11:38:29 -  1.69
+++ e_manager.c 19 Jun 2008 11:56:09 -  1.70
@@ -798,8 +798,7 @@
 {
Evas_List *l;
E_Manager *man;
-   int x, y;
-   
+
if (!managers) return NULL;
for (l = managers; l; l = l->next)
  {



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/etk raster

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/etk

Dir : e17/libs/etk/src/bin


Modified Files:
etk_scrolled_view_test.c 


Log Message:


add an object to viewport catch wheel and mouse drag etc. events when
clicking on "empty" space that doesnt hold widgets so it works properly.

===
RCS file: /cvs/e/e17/libs/etk/src/bin/etk_scrolled_view_test.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- etk_scrolled_view_test.c19 Apr 2008 18:23:34 -  1.9
+++ etk_scrolled_view_test.c19 Jun 2008 10:53:58 -  1.10
@@ -27,6 +27,7 @@
etk_widget_size_request_set(win, 180, 180);
 
scrolled_view = etk_scrolled_view_new();
+   etk_scrolled_view_dragable_set(scrolled_view, 1);
etk_container_add(ETK_CONTAINER(win), scrolled_view);
 
canvas = etk_canvas_new();



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/etk raster

2008-06-19 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/etk

Dir : e17/libs/etk/src/lib


Modified Files:
etk_viewport.c etk_viewport.h 


Log Message:


add an object to viewport catch wheel and mouse drag etc. events when
clicking on "empty" space that doesnt hold widgets so it works properly.

===
RCS file: /cvs/e/e17/libs/etk/src/lib/etk_viewport.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- etk_viewport.c  28 Sep 2007 19:56:13 -  1.16
+++ etk_viewport.c  19 Jun 2008 10:53:58 -  1.17
@@ -70,6 +70,7 @@
   return;
 
viewport->clip = NULL;
+   viewport->event = NULL;
viewport->xscroll = 0;
viewport->yscroll = 0;
 
@@ -80,6 +81,7 @@
 
etk_signal_connect_by_code(ETK_WIDGET_REALIZED_SIGNAL, 
ETK_OBJECT(viewport), ETK_CALLBACK(_etk_viewport_realized_cb), NULL);
etk_signal_connect_swapped_by_code(ETK_WIDGET_UNREALIZED_SIGNAL, 
ETK_OBJECT(viewport), ETK_CALLBACK(etk_callback_set_null), &viewport->clip);
+   etk_signal_connect_swapped_by_code(ETK_WIDGET_UNREALIZED_SIGNAL, 
ETK_OBJECT(viewport), ETK_CALLBACK(etk_callback_set_null), &viewport->event);
etk_signal_connect_by_code(ETK_CONTAINER_CHILD_ADDED_SIGNAL, 
ETK_OBJECT(viewport), ETK_CALLBACK(_etk_viewport_child_added_cb), NULL);
etk_signal_connect_by_code(ETK_CONTAINER_CHILD_REMOVED_SIGNAL, 
ETK_OBJECT(viewport), ETK_CALLBACK(_etk_viewport_child_removed_cb), NULL);
 }
@@ -107,6 +109,8 @@
 
evas_object_move(viewport->clip, geometry.x, geometry.y);
evas_object_resize(viewport->clip, geometry.w, geometry.h);
+   evas_object_move(viewport->event, geometry.x, geometry.y);
+   evas_object_resize(viewport->event, geometry.w, geometry.h);
 
if ((child = etk_bin_child_get(ETK_BIN(viewport
{
@@ -184,6 +188,10 @@
   etk_widget_clip_set(child, viewport->clip);
   evas_object_show(viewport->clip);
}
+   viewport->event = evas_object_rectangle_add(evas);
+   etk_widget_member_object_add(ETK_WIDGET(viewport), viewport->event);
+   evas_object_color_set(viewport->event, 0, 0, 0, 0);
+   evas_object_show(viewport->event);
 
return ETK_TRUE;
 }
===
RCS file: /cvs/e/e17/libs/etk/src/lib/etk_viewport.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- etk_viewport.h  19 Sep 2007 20:16:26 -  1.5
+++ etk_viewport.h  19 Jun 2008 10:53:58 -  1.6
@@ -32,7 +32,7 @@
/* Inherit from Etk_Bin */
Etk_Bin bin;
 
-   Evas_Object *clip;
+   Evas_Object *clip, *event;
int xscroll, yscroll;
 };
 



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs