Re: a better solution for GUI in python

2007-03-17 Thread Rainer Grimm
ce wrote: > Hi, > > My company is using python currently for our website. We need to > develop a GUI front-end for our ERP that would be portable (Windows > and Linux). > > My question is which solution would be better for the GUI (and easier > to implement)? I knew there are something like wxidg

Re: a better solution for GUI in python

2007-03-12 Thread Chris Mellon
On 3/12/07, David Boddie <[EMAIL PROTECTED]> wrote: > On Monday 12 March 2007 16:57, Chris Mellon wrote: > > > Gtk I consider an extremely poor contender as a cross platform > > toolkit. The runtime is enormous and it makes little effort to appear > > native on any non-GNOME platform. > > Given tha

Re: a better solution for GUI in python

2007-03-12 Thread David Boddie
On Monday 12 March 2007 16:57, Chris Mellon wrote: > Gtk I consider an extremely poor contender as a cross platform > toolkit. The runtime is enormous and it makes little effort to appear > native on any non-GNOME platform. Given that wxPython more or less relies on GTK+ on Linux, I think you're

Re: a better solution for GUI in python

2007-03-12 Thread Chris Mellon
On 3/11/07, Jarek Zgoda <[EMAIL PROTECTED]> wrote: > Bjoern Schliessmann napisał(a): > > >> I'd recommend pyGTK. It's easy to use, delivers astonishing > >> results and is perfectly portable as far as I know. > > > > And how does it look on Windows? :) > > On styled Windows XP it looks like any oth

Re: a better solution for GUI in python

2007-03-11 Thread ici
On Mar 11, 1:03 pm, "ce" <[EMAIL PROTECTED]> wrote: > Hi, > > My company is using python currently for our website. We need to > develop a GUI front-end for our ERP that would be portable (Windows > and Linux). > > My question is which solution would be better for the GUI (and easier > to implement

Re: a better solution for GUI in python

2007-03-11 Thread Uwe Grauer
ce wrote: > Hi, > > My company is using python currently for our website. We need to > develop a GUI front-end for our ERP that would be portable (Windows > and Linux). > > My question is which solution would be better for the GUI (and easier > to implement)? I knew there are something like wxidg

Re: a better solution for GUI in python

2007-03-11 Thread Casey Hawthorne
For a browser interface have you thought of Ajax and possibly WPF/E? http://en.wikipedia.org/wiki/AJAX http://en.wikipedia.org/wiki/Windows_Presentation_Foundation -- Regards, Casey -- http://mail.python.org/mailman/listinfo/python-list

Re: a better solution for GUI in python

2007-03-11 Thread Jarek Zgoda
Bjoern Schliessmann napisał(a): >> I'd recommend pyGTK. It's easy to use, delivers astonishing >> results and is perfectly portable as far as I know. > > And how does it look on Windows? :) On styled Windows XP it looks like any other styled application (counting those Qt and wx based). On Win

Re: a better solution for GUI in python

2007-03-11 Thread ce
On Mar 11, 3:05 pm, Paul Rubin wrote: > "ce" <[EMAIL PROTECTED]> writes: > > My company is using python currently for our website. We need to > > develop a GUI front-end for our ERP that would be portable (Windows > > and Linux). > > Some reason not to use a browser inter

Re: a better solution for GUI in python

2007-03-11 Thread Bjoern Schliessmann
StD wrote: > I'd recommend pyGTK. It's easy to use, delivers astonishing > results and is perfectly portable as far as I know. And how does it look on Windows? :) > I'm working with it myself, having the goal of simplicity as well > as portability and I got to say, it works! Hope that was helpf

Re: a better solution for GUI in python

2007-03-11 Thread Bjoern Schliessmann
ce wrote: > My question is which solution would be better for the GUI (and > easier to implement)? I knew there are something like wxidgets, (wxWidgets. It's the C++ lib, its Python bindings are wxPython) > QT (same as above, it's called pyQt. Check licensing, it's not as liberal as the others'

Re: a better solution for GUI in python

2007-03-11 Thread Paul Rubin
"ce" <[EMAIL PROTECTED]> writes: > My company is using python currently for our website. We need to > develop a GUI front-end for our ERP that would be portable (Windows > and Linux). Some reason not to use a browser interface instead of a client gui? -- http://mail.python.org/mailman/listinfo/py

Re: a better solution for GUI in python

2007-03-11 Thread StD
On 11 Mrz., 12:03, "ce" <[EMAIL PROTECTED]> wrote: > Hi, > > My company is using python currently for our website. We need to > develop a GUI front-end for our ERP that would be portable (Windows > and Linux). > > My question is which solution would be better for the GUI (and easier > to implement)

a better solution for GUI in python

2007-03-11 Thread ce
Hi, My company is using python currently for our website. We need to develop a GUI front-end for our ERP that would be portable (Windows and Linux). My question is which solution would be better for the GUI (and easier to implement)? I knew there are something like wxidgets, QT and pyGTK? actuall

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-11 Thread Joel Hedlund
> UI design requires a different skillset than programming. It can be a > very frustrating and thankless task as well. It is incomparably easier > to see the flaws in existing interfaces than correcting them (or even > creating the said interface). Make sure to start with something simple, > and le

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-11 Thread Istvan Albert
Joel Hedlund wrote: > ideas from you people to get me going in the right direction. Despite my > GUI n00b-ness I need to get it good and usable with an intuitive look > and feel. UI design requires a different skillset than programming. It can be a very frustrating and thankless task as well. It

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-11 Thread Joel Hedlund
> This will probably be a major, but not humongous project. wxPython, > pyGTk, and pyQt all have the architecture and basics you'll need, it > will probably be about the same amount of work to create in all of > them. Pick the one that best suites your licensing and platform needs. Thanks for the

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-10 Thread Neil Cerutti
On 2007-01-10, hg <[EMAIL PROTECTED]> wrote: > Joel Hedlund wrote: >> Thanks for taking the time! >> /Joel Hedlund > > I do not know if PyGtk and PyQT have demos, but wxPython does > and includes PyPlot: an easy way to look at the basic features. PyQT does come with an impressive plethora of demos

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-10 Thread hg
Joel Hedlund wrote: > Hi! > > I've been thinking about writing a good multiple sequence alignment > (MSA) viewer in python. Sort of like ClustalX, only with better zoom and > pan tools. I've been using python in my work for a couple of years, but > this is my first shot at making a GUI so I'd ver

Re: Need startup suggestions for writing a MSA viewer GUI in python

2007-01-10 Thread Chris Mellon
On 1/10/07, Joel Hedlund <[EMAIL PROTECTED]> wrote: > Hi! > > I've been thinking about writing a good multiple sequence alignment > (MSA) viewer in python. Sort of like ClustalX, only with better zoom and > pan tools. I've been using python in my work for a couple of years, but > this is my first s

Need startup suggestions for writing a MSA viewer GUI in python

2007-01-10 Thread Joel Hedlund
Hi! I've been thinking about writing a good multiple sequence alignment (MSA) viewer in python. Sort of like ClustalX, only with better zoom and pan tools. I've been using python in my work for a couple of years, but this is my first shot at making a GUI so I'd very much appreciate some ideas

Re: GUI in Python using wxGlade

2006-06-16 Thread dimitri pater
the link should be:www.serpia.org/wxgladethanks for finding it, UrsusMaximus ;-)Dimitri On 16 Jun 2006 06:08:33 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:Did you paste any code ?Also the link for the next message is not working . John Salerno wrote:> [EMAIL PROTECTED] wrote:> > I am a

Re: GUI in Python using wxGlade

2006-06-16 Thread diffuser78
Did you paste any code ? Also the link for the next message is not working . John Salerno wrote: > [EMAIL PROTECTED] wrote: > > I am a newbie. I was looking for some code where I could a list of > > different items from a file and display it in a list box. Then give a > > user the capability

Re: GUI in Python using wxGlade

2006-06-15 Thread UrsusMaximus
Ther is a short online tutorial on using wxGlade here http://www.serpia.org/wxgladeJohn";>wxGlade Tutorial -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI in Python using wxGlade

2006-06-15 Thread John Salerno
[EMAIL PROTECTED] wrote: > I am a newbie. I was looking for some code where I could a list of > different items from a file and display it in a list box. Then give a > user the capability to select some. > > Basically, reading and writing to a file and displaying them in > different widgets...that

Re: GUI in Python using wxGlade

2006-06-15 Thread diffuser78
I am a newbie. I was looking for some code where I could a list of different items from a file and display it in a list box. Then give a user the capability to select some. Basically, reading and writing to a file and displaying them in different widgets...thats something I am looking for. If anyb

Re: GUI in Python using wxGlade

2006-06-15 Thread Steve Holden
[EMAIL PROTECTED] wrote: > I am pasting my code. I created a small little GUI without any > functionality as of yet. I wanted to ask few questions on that. > [lots of code ...] > > If I click on any of the items of the File Menu, say I click on "Open > config File", I want a new windows to come u

Re: GUI in Python using wxGlade

2006-06-15 Thread diffuser78
I am pasting my code. I created a small little GUI without any functionality as of yet. I wanted to ask few questions on that. [code] #!/usr/bin/env python # -*- coding: UTF-8 -*- # generated by wxGlade 0.4cvs on Thu Jun 15 10:51:12 2006 import wx class MyFrame(wx.Frame): def __init__(self,

Re: GUI in Python using wxGlade

2006-06-15 Thread Steve Holden
[EMAIL PROTECTED] wrote: > I recently tried a hand at wxGlade and was happy to see it designs a > GUI for you in minutes. I am a newbie Python coder. I am not completely > aware of GUI programming. > > I can easily make menubars etc but I am not too sure sure how to get > more windows poppping to

GUI in Python using wxGlade

2006-06-15 Thread diffuser78
I recently tried a hand at wxGlade and was happy to see it designs a GUI for you in minutes. I am a newbie Python coder. I am not completely aware of GUI programming. I can easily make menubars etc but I am not too sure sure how to get more windows poppping to get more information. I mean when you

Re: GUI in python

2006-03-30 Thread Dave Mandelin
A friend of mine recently used PythonCard and he found it pretty good. I use wxPython, which is what PythonCard is based on, and I think it's very good, but it's more work to get started with than PythonCard. -- Want to play tabletop RPGs over the internet? Check out Koboldsoft RPZen:http:

Re: GUI in python

2006-03-30 Thread [EMAIL PROTECTED]
Hi, I readed in python brazilian list, about a Eagle, it's seems like you need... http://www.python.org/pypi/eagle/ http://code.gustavobarbieri.com.br/eagle/ []s Luciano Pacheco -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI in python

2006-03-30 Thread Nicolay A. Vasiliev
Hello! I think this library is enough old, isn't it? Version 0.72 was released on 2004-06-20. Nicolay [EMAIL PROTECTED] wrote: > For quick, no learning curve, simple: > > http://www.ferg.org/easygui/ > > -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI in python

2006-03-30 Thread Eric Brunel
On 29 Mar 2006 14:20:03 -0800, <[EMAIL PROTECTED]> wrote: > Hi, > > I am a python newbie and have used it for about a month. I want to make > a simple GUI app in Python ( I take input form user and do processing > and show results). > > Which gui package is good for me. I need to do it quick and I

Re: GUI in python

2006-03-30 Thread peter . mosley
See this thread http://groups.google.co.uk/group/comp.lang.python/browse_thread/thread/989b957f244d48e0/429378d911ba4357?hl=en#429378d911ba4357 Peter -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI in python

2006-03-29 Thread riplin
For quick, no learning curve, simple: http://www.ferg.org/easygui/ -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI in python

2006-03-29 Thread Peter Decker
On 29 Mar 2006 14:20:03 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I am a python newbie and have used it for about a month. I want to make > a simple GUI app in Python ( I take input form user and do processing > and show results). > > Which gui package is good for me. I need to do it q

Re: GUI in python

2006-03-29 Thread I. Myself
[EMAIL PROTECTED] wrote: > Hi, > > I am a python newbie and have used it for about a month. I want to make > a simple GUI app in Python ( I take input form user and do processing > and show results). > > Which gui package is good for me. I need to do it quick and I would not > want a long learning

GUI in python

2006-03-29 Thread diffuser78
Hi, I am a python newbie and have used it for about a month. I want to make a simple GUI app in Python ( I take input form user and do processing and show results). Which gui package is good for me. I need to do it quick and I would not want a long learning curve. I was taking look at wxPython,