Enlightenment CVS committal Author : moom Project : e17 Module : proto
Dir : e17/proto/etk/src/engines/ecore_evas_software_x11 Modified Files: ecore_evas_software_x11.c Log Message: * [Window] Add etk_window_stacking_set/get() to change the stacking layer of a window ("normal", "always on top", "always below") =================================================================== RCS file: /cvs/e/e17/proto/etk/src/engines/ecore_evas_software_x11/ecore_evas_software_x11.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- ecore_evas_software_x11.c 1 Sep 2006 06:41:17 -0000 1.8 +++ ecore_evas_software_x11.c 1 Sep 2006 13:32:30 -0000 1.9 @@ -6,8 +6,7 @@ #include "Etk_Engine_Ecore_Evas_X11.h" /* Etk_Window engine data - * we do another typedef to shorten the name for internal use - */ + * we do another typedef to shorten the name for internal use */ typedef Etk_Engine_Ecore_Evas_X11_Window_Data Etk_Engine_Window_Data; /* General engine functions */ @@ -50,6 +49,8 @@ NULL, /* window_fullscreen_get */ NULL, /* window_raise */ NULL, /* window_lower */ + NULL, /* window_stacking_set */ + NULL, /* window_stacking_get */ NULL, /* window_sticky_set */ NULL, /* window_sticky_get */ NULL, /* window_focused_set */ @@ -109,13 +110,12 @@ static void _window_constructor(Etk_Window *window) { /* We _MUST_ initialize and create the ecore_evas and the x_window - * variables in the engine_data. - */ - Etk_Engine_Window_Data *engine_data; + * variables in the engine_data. */ + Etk_Engine_Window_Data *engine_data; engine_data = malloc(sizeof(Etk_Engine_Window_Data)); window->engine_data = engine_data; ETK_ENGINE_ECORE_EVAS_WINDOW_DATA(engine_data)->ecore_evas = ecore_evas_software_x11_new(NULL, 0, 0, 0, 0, 0); engine_data->x_window = ecore_evas_software_x11_window_get(ETK_ENGINE_ECORE_EVAS_WINDOW_DATA(engine_data)->ecore_evas); - engine_info.super->window_constructor(window); + engine_info.super->window_constructor(window); } ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs