Re: Building a Python app with Mozilla

2008-07-14 Thread Trent Mick
Brian Quinlan wrote: Most application logic in Komodo is implemented in Python, using the PyXPCOM bindings. The UI is implemented using XUL and JavaScript. The editor is Scintilla (C++). ../Komodo Edit.app/Contents/MacOS % find . -name "*.py" | xargs wc ... ... 126392 456858 4949602 total Th

Re: Building a Python app with Mozilla

2008-07-13 Thread happybrowndog
Is that why Komodo is so damned slow Brian Quinlan wrote: Kevin Walzer wrote: Komodo is not a Python application. It is a Mozilla application that supports Python development. Komodo is more akin to Thunderbird and Firefox than anything else; it uses the XUL framework for rendering widge

Re: Building a Python app with Mozilla

2007-07-10 Thread Bruno Desthuilliers
Thorsten Kampe a écrit : > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > PyQT are actually what I want (because the lack

Re: Building a Python app with Mozilla

2007-07-10 Thread Damjan
> Last I looked (3.1-ish), Qt didn't use the Aqua widgets Qt is now up to 4.3 and they use native Aqua -- damjan -- http://mail.python.org/mailman/listinfo/python-list

Re: Building a Python app with Mozilla

2007-07-10 Thread greg
[EMAIL PROTECTED] wrote: > Last I looked (3.1-ish), Qt didn't use the Aqua widgets but rather > tried to write their own widgets that looked (kinda) like the MacOS > widgets. That might be so, but even if it had used real Aqua widgets, the same problem would have occurred. My point was that using

Re: Building a Python app with Mozilla

2007-07-05 Thread [EMAIL PROTECTED]
greg wrote: > [EMAIL PROTECTED] wrote: > > > wxWidgets will give you native looking apps on both Linux and Windows > > Well, maybe. There's more to getting a native feel than > just using the right widgets. I once saw a Qt-based app on > MacOSX that had tiny little buttons that were too small > for

Re: Building a Python app with Mozilla

2007-07-05 Thread Shane Geiger
Brett Cannon was doing some work with the Firefox security model to allow Python coding from within Firefox. He may have stopped doing the work because it would not lead to a PhD. I am really looking forward to seeing someone making this a possibility. Stefan Sonnenberg-Carstens wrote: > On Do

Re: Building a Python app with Mozilla

2007-07-05 Thread Stefan Sonnenberg-Carstens
On Do, 5.07.2007, 03:45, greg wrote: > [EMAIL PROTECTED] wrote: > >> wxWidgets will give you native looking apps on both Linux and Windows > > Well, maybe. There's more to getting a native feel than > just using the right widgets. I once saw a Qt-based app on > MacOSX that had tiny little buttons t

Re: Building a Python app with Mozilla

2007-07-04 Thread greg
[EMAIL PROTECTED] wrote: > wxWidgets will give you native looking apps on both Linux and Windows Well, maybe. There's more to getting a native feel than just using the right widgets. I once saw a Qt-based app on MacOSX that had tiny little buttons that were too small for the text they contained -

Re: Building a Python app with Mozilla

2007-07-03 Thread [EMAIL PROTECTED]
On Jul 4, 2:48 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thorsten Kampe wrote: > > Hi, > > > I've already sent this to the Komodo mailing list (which seemed to me > > the more appropriate place) but unfortunately I got no response. > > > I'd like to build a Python GUI app. Neither Tkinte

Re: Building a Python app with Mozilla

2007-07-03 Thread [EMAIL PROTECTED]
Thorsten Kampe wrote: > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > PyQT are actually what I want (because the lack of GUI

Re: Building a Python app with Mozilla

2007-07-03 Thread Todd Whiteman
Thorsten Kampe wrote: > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. Hi Thorsten, I'm sorry that we (Komodo team) missed it, but I did not see such a message on the Komodo mailing list. > > I'

Re: Building a Python app with Mozilla

2007-06-30 Thread Brian Quinlan
Kevin Walzer wrote: > Komodo is not a Python application. It is a Mozilla application that > supports Python development. Komodo is more akin to Thunderbird and > Firefox than anything else; it uses the XUL framework for rendering > widgets, if I'm not mistaken. If you want to build an applicati

Re: Building a Python app with Mozilla

2007-06-30 Thread Sebastian Wiesner
[ "Diez B. Roggisch" <[EMAIL PROTECTED]> ] > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > > PyQT are actually what I want (because the lack of GUI builders and > > they don't really look good on Windows and Linux). > > The latter statement is bogus. Qt is THE native look

Re: Building a Python app with Mozilla

2007-06-30 Thread Diez B. Roggisch
Sebastian Wiesner schrieb: > [ "Diez B. Roggisch" <[EMAIL PROTECTED]> ] >> And as it has been said in this thread already, Qt has an excellent free >> GUI-builder. > > Free as long as you develop free software. Development of proprietary, > non-gpl software with Qt requires a commercial licence f

Re: Building a Python app with Mozilla

2007-06-30 Thread Kevin Walzer
Thorsten Kampe wrote: > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > PyQT are actually what I want (because the lack of

Re: Building a Python app with Mozilla

2007-06-30 Thread Sebastian Wiesner
[ "Diez B. Roggisch" <[EMAIL PROTECTED]> ] > And as it has been said in this thread already, Qt has an excellent free > GUI-builder. Free as long as you develop free software. Development of proprietary, non-gpl software with Qt requires a commercial licence from Trolltech. -- Freedom is always

Re: Building a Python app with Mozilla

2007-06-30 Thread Diez B. Roggisch
Thorsten Kampe schrieb: > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > PyQT are actually what I want (because the lack o

Re: Building a Python app with Mozilla

2007-06-30 Thread Diez B. Roggisch
> You apparently didn't look very hard. On the wxPython end of things > (which I have experience with), there is wxGlade, XRCed, Boa > Constructor, Dabo, etc. I don't know about Tkinter (I don't use it), > but I know that at least Qt has a very nice GUI designer and builder > (from Trolltech

Re: Building a Python app with Mozilla

2007-06-30 Thread Josiah Carlson
Thorsten Kampe wrote: > Hi, > > I've already sent this to the Komodo mailing list (which seemed to me > the more appropriate place) but unfortunately I got no response. > > I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor > PyQT are actually what I want (because the lack of

Building a Python app with Mozilla

2007-06-29 Thread Thorsten Kampe
Hi, I've already sent this to the Komodo mailing list (which seemed to me the more appropriate place) but unfortunately I got no response. I'd like to build a Python GUI app. Neither Tkinter nor Wxpython nor PyQT are actually what I want (because the lack of GUI builders and they don't really