yay thanks for the good job.
kuuko will like this.

Daniel Juyung Seo (SeoZ)

On Wed, Feb 22, 2012 at 6:59 AM, Enlightenment SVN
<[email protected]> wrote:
> Log:
> Add missed bindings for (controversial) elm_win_xwindow_get(). See the docs 
> in commit for more info
>
> Author:       davemds
> Date:         2012-02-21 13:59:22 -0800 (Tue, 21 Feb 2012)
> New Revision: 68234
> Trac:         http://trac.enlightenment.org/e/changeset/68234
>
> Modified:
>  trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_window.pxi
>
> Modified: 
> trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_window.pxi
> ===================================================================
> --- 
> trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_window.pxi
>        2012-02-21 21:52:42 UTC (rev 68233)
> +++ 
> trunk/BINDINGS/python/python-elementary/elementary/elementary.c_elementary_window.pxi
>        2012-02-21 21:59:22 UTC (rev 68234)
> @@ -361,14 +361,23 @@
>         """
>         return bool(elm_win_focus_highlight_enabled_get(self.obj))
>
> -    # TODO
> -    """
> -    def xwindow_get(self):
> +    def xwindow_xid_get(self):
> +        """
> +        Return the X Window id, it's a long int, can be used in combination
> +        with some functions/objects in the ecore.x module.
> +
> +        For example you can hide the mouse cursor doing:
> +        import ecore.x
> +        xid = your_elm_win.xwindow_xid_get()
> +        xwin = ecore.x.Window_from_xid(xid)
> +        xwin.cursor_hide()
> +
> +        Note: this is not portable at all. Work only under the X window 
> system
> +        """
>         cdef Ecore_X_Window xwin
>         xwin = elm_win_xwindow_get(self.obj)
> +        return xwin
>
> -        return Null
> -    """
>
>
>  _elm_widget_type_register("win", Window)
>
>
> ------------------------------------------------------------------------------
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d
> _______________________________________________
> enlightenment-svn mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to