On Mon, Jun 1, 2009 at 10:33 PM, Nur Hisyam Mohamed <[email protected]> wrote: > Hi all, > > How do I create a window that appears "always on top" in python-efl? > > Went through the API, but nothing seems related. Any idea on how I can > accomplish this?
I never tried but you can get the Ecore X window from your Ecore Evas and then call "configure" method on it. Something like: win = ecore.x.Window_from_xid(ee.window) win.configure(mask, x, y, w, h, border_width, sibling_window, stack_mode) you want to provide a stack_mode being one number as listed in ECORE_X_WINDOW_STACK_* -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -------------------------------------- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 ------------------------------------------------------------------------------ OpenSolaris 2009.06 is a cutting edge operating system for enterprises looking to deploy the next generation of Solaris that includes the latest innovations from Sun and the OpenSource community. Download a copy and enjoy capabilities such as Networking, Storage and Virtualization. Go to: http://p.sf.net/sfu/opensolaris-get _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
