wx.lib.iewin alternative for Linux

Hello,

I have a small application written in wxPython where on Windows i
embedd a browser using: wx.lib.iewin.

Is there any alternative for Linux to achieve something similar ?

wxMozilla has some python bindings for example but it's quite old and
seems discontinued.

Is there any way to embedd in a wxPython application:
epiphany
konqueror
firefox

...

any web browser ?

Thank you for your time,

···

--
Catalin Constantin

Catalin Constantin wrote:

Hello,

I have a small application written in wxPython where on Windows i
embedd a browser using: wx.lib.iewin.

Is there any alternative for Linux to achieve something similar ?

wxMozilla has some python bindings for example but it's quite old and
seems discontinued.

Is there any way to embedd in a wxPython application:

Not yet, but we hope to have a wx embeddable cross-platform version of WebKit in the not too distant future.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

Ok, this is quite interesting.

Now, for example if i build:
http://live.gnome.org/PyWebKitGtk

Is there any quick way to use:
import webkitgtk

inside a wxPython application ?

Any hint will be very useful and appreciated.

Thank you,

···

On 10/1/07, Robin Dunn <robin@alldunn.com> wrote:

Catalin Constantin wrote:
> Hello,
>
> I have a small application written in wxPython where on Windows i
> embedd a browser using: wx.lib.iewin.
>
> Is there any alternative for Linux to achieve something similar ?
>
> wxMozilla has some python bindings for example but it's quite old and
> seems discontinued.
>
> Is there any way to embedd in a wxPython application:

Not yet, but we hope to have a wx embeddable cross-platform version of
WebKit in the not too distant future.

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

--
Catalin Constantin
Dazoot Software

Catalin Constantin wrote:

Ok, this is quite interesting.

Now, for example if i build:
http://live.gnome.org/PyWebKitGtk

Is there any quick way to use:
import webkitgtk

inside a wxPython application ?

Not currently. In theory it's possible to be able to use PyGTK widgets in a wxPython app on Linux, but it would probably take a little work to make some adapters for it, and some glue to seal the leaky connections...

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

I've done some (very small) work toward this and my main problem was
that PyGTK doesn't have any way to work directly with GtkWidget
pointers. I had better luck writing my own low-level wrappers over the
Gtk C api with Pyrex.

···

On 10/2/07, Robin Dunn <robin@alldunn.com> wrote:

Catalin Constantin wrote:
> Ok, this is quite interesting.
>
> Now, for example if i build:
> http://live.gnome.org/PyWebKitGtk
>
> Is there any quick way to use:
> import webkitgtk
>
> inside a wxPython application ?

Not currently. In theory it's possible to be able to use PyGTK widgets
in a wxPython app on Linux, but it would probably take a little work to
make some adapters for it, and some glue to seal the leaky connections...