Hi!
Only under Win: PLUIE (http://ponx.org/ponx/guie)
This GUI is natively HTML.
--
@-salutations
Michel Claveau
This is a discussion on which "GUI module" you suggest me to use? - Python ; Hi to all... I'm actually using Tkinter for my GUI... but I need to "put a piece of a web-page in a widget" how can I do? which GUI module do you suggest me to use for do that? or ...
Hi to all...
I'm actually using Tkinter for my GUI... but I need to "put a piece of a
web-page in a widget" how can I do?
which GUI module do you suggest me to use for do that?
or which GUI module do you suggest me to use at all?
I'm acutally using Windows Xp but I also use Linux...
I know that WxPython work only under Windows and PyGTK work only under
Linux... there's some other modules?
Hi!
Only under Win: PLUIE (http://ponx.org/ponx/guie)
This GUI is natively HTML.
--
@-salutations
Michel Claveau
On Jun 5, 2:57 pm, ZioMiP <m...@fastwebnet.it> wrote:
> Hi to all...
>
> I'm actually using Tkinter for my GUI... but I need to "put a piece of a
> web-page in a widget" how can I do?
>
> which GUI module do you suggest me to use for do that?
>
> or which GUI module do you suggest me to use at all?
>
> I'm acutally using Windows Xp but I also use Linux...
>
> I know that WxPython work only under Windows and PyGTK work only under
> Linux... there's some other modules?
Maybe you can try Tkhtml. It supports both Windows and Linux.
Simon
> I know that WxPython work only under Windows
Hmm, there seems to be some disparity between what you know and the
truth...
WxPython works everywhere (Windows, Linux, MacOS), and it works well.
Also, it has web widgets that come standard (wx.html.HtmlWindow).
Matt
Matimus ha scritto:
>> I know that WxPython work only under Windows
>
> Hmm, there seems to be some disparity between what you know and the
> truth...
>
> WxPython works everywhere (Windows, Linux, MacOS), and it works well.
> Also, it has web widgets that come standard (wx.html.HtmlWindow).
>
> Matt
>
Thanks for this ^_^ so I think I'll try to migrate to wx
ZioMiP je napisao/la:
> Hi to all...
>
> I'm actually using Tkinter for my GUI... but I need to "put a piece of a
> web-page in a widget" how can I do?
>
> which GUI module do you suggest me to use for do that?
>
> or which GUI module do you suggest me to use at all?
>
> I'm acutally using Windows Xp but I also use Linux...
>
> I know that WxPython work only under Windows and PyGTK work only under
> Linux... there's some other modules?
have you considered using qt, i.e., pyqt, pyqwt? unlike wx, qt draws
its own icons...
In article <p%k9i.8712$BU3.5975@tornado.fastwebnet.it>,
ZioMiP <mip@fastwebnet.it> wrote:
>Hi to all...
>
>I'm actually using Tkinter for my GUI... but I need to "put a piece of a
>web-page in a widget" how can I do?
>
>which GUI module do you suggest me to use for do that?
>
>or which GUI module do you suggest me to use at all?
>
>I'm acutally using Windows Xp but I also use Linux...
>
>I know that WxPython work only under Windows and PyGTK work only under
>Linux... there's some other modules?
? wxPython is available for Linux and Mac OS X. PyGTK is
available for Windows.
Apparently you want to embed Web content in a Tkinter widget.
There are several ways to do this. Do you need a live browser,
or is it enough to render HTML?
Cameron Laird ha scritto:
> In article <p%k9i.8712$BU3.5975@tornado.fastwebnet.it>,
> ZioMiP <mip@fastwebnet.it> wrote:
>> Hi to all...
>>
>> I'm actually using Tkinter for my GUI... but I need to "put a piece of a
>> web-page in a widget" how can I do?
>>
>> which GUI module do you suggest me to use for do that?
>>
>> or which GUI module do you suggest me to use at all?
>>
>> I'm acutally using Windows Xp but I also use Linux...
>>
>> I know that WxPython work only under Windows and PyGTK work only under
>> Linux... there's some other modules?
>
> ? wxPython is available for Linux and Mac OS X. PyGTK is
> available for Windows.
>
> Apparently you want to embed Web content in a Tkinter widget.
> There are several ways to do this. Do you need a live browser,
> or is it enough to render HTML?
I think is like a "live browser"... not only render HTML because the
webpage got a bit of javascript inside...
On 2007-06-05, ZioMiP <mip@fastwebnet.it> wrote:
> I know that WxPython work only under Windows and PyGTK work only under
> Linux...
You 'know' wrong.
wxPython works fine under Windows, Linux and OSX.
PyGTK works under Linux and Windows, but doens't use native
widgets under Windows, so it won't look like a "normal" windows
app.
> there's some other modules?
PyQt
--
Grant Edwards grante Yow! Xerox your lunch
at and file it under "sex
visi.com offenders"!
On Jun 5, 4:17 pm, ZioMiP <m...@fastwebnet.it> wrote:
> Cameron Laird ha scritto:
>
>
>
> > In article <p%k9i.8712$BU3.5...@tornado.fastwebnet.it>,
> > ZioMiP <m...@fastwebnet.it> wrote:
> >> Hi to all...
>
> >> I'm actually using Tkinter for my GUI... but I need to "put a piece of a
> >> web-page in a widget" how can I do?
>
> >> which GUI module do you suggest me to use for do that?
>
> >> or which GUI module do you suggest me to use at all?
>
> >> I'm acutally using Windows Xp but I also use Linux...
>
> >> I know that WxPython work only under Windows and PyGTK work only under
> >> Linux... there's some other modules?
>
> > ? wxPython is available for Linux and Mac OS X. PyGTK is
> > available for Windows.
>
> > Apparently you want to embed Web content in a Tkinter widget.
> > There are several ways to do this. Do you need a live browser,
> > or is it enough to render HTML?
>
> I think is like a "live browser"... not only render HTML because the
> webpage got a bit of javascript inside...
Is this webpage untouchable, or is HTML rendering just a shortcut to
avoid redesigning part of the app? If you need faithful rendering of
an arbitrary webpage along with a Javascript runtime, that's a bigger
issue, and you might want to look at some of the Mozilla tools,
particularly XULRunner:
http://developer.mozilla.org/en/docs...er_with_Python
Otherwise, wxPython's HTML widget or TkHtml should be fine -- your
code will probably be easier to maintain and debug if you translate
that bit of Javascript to Python (language constructs are similar,
especially with xml.dom.minidom).