Re: cross platform development

2002-10-21 Thread Michael D. Crawford
Try ZooLib, it is the best thing since sliced bread. Compile native applications for Linux, Win32, Mac OS and BeOS written from a single C++ source base with very little need for platform specific client code. http://zoolib.sourceforge.net/ There is the beginnings of a tutorial at:

Re: Cross-Platform Development?

2001-01-15 Thread Johann Spies
On Sun, Jan 14, 2001 at 03:26:18PM -0500, jake wrote: I'm only a beginner but I understand that python is an excellent tool for what you seek. it comes with tkinter which is cross platform gui toolkit. Python is also rediculously easy to get and install on any platform. Python also has

Re: Cross-Platform Development?

2001-01-15 Thread kmself
on Sun, Jan 14, 2001 at 07:39:54PM +0100, Andreas Gartus ([EMAIL PROTECTED]) wrote: Hi Everybody! I plan to develop a little GUI application (GPLed of course ;-) using Debian/GNU-Linux as primary development environment. Unfortunately the app also has to run on Windoze... :-(( Does anybody

Re: Cross-Platform Development?

2001-01-15 Thread Scott Patterson
I plan to develop a little GUI application (GPLed of course ;-) using Debian/GNU-Linux as primary development environment. Unfortunately the app also has to run on Windoze... :-(( Does anybody have experience developing such cross-platform apps? Can you recommend a language or a toolkit? (I have

Re: Cross-Platform Development?

2001-01-15 Thread D-Man
On Mon, Jan 15, 2001 at 01:11:31PM -0500, Scott Patterson wrote: | | | I plan to develop a little GUI application (GPLed of course ;-) using | Debian/GNU-Linux as primary development environment. Unfortunately the | app also has to run on Windoze... :-(( | Does anybody have experience developing

Re: Cross-Platform Development?

2001-01-15 Thread Casey Webster
On Mon, 15 Jan 2001, D-Man wrote: On Mon, Jan 15, 2001 at 01:11:31PM -0500, Scott Patterson wrote: | | | | QT - http://www.trolltech.com | | It's the toolkit used in KDE. Supposedly it cross-platform. KDE has been ported | to other Unices, so, it obviously works across Unix-land.

Cross-Platform Development?

2001-01-14 Thread Andreas Gartus
Hi Everybody! I plan to develop a little GUI application (GPLed of course ;-) using Debian/GNU-Linux as primary development environment. Unfortunately the app also has to run on Windoze... :-(( Does anybody have experience developing such cross-platform apps? Can you recommend a language or a

Re: Cross-Platform Development?

2001-01-14 Thread Jason K. Fritcher
On Sun, 14 Jan 2001, Andreas Gartus wrote: I plan to develop a little GUI application (GPLed of course ;-) using Debian/GNU-Linux as primary development environment. Unfortunately the app also has to run on Windoze... :-(( Does anybody have experience developing such cross-platform apps? Can

Re: Cross-Platform Development?

2001-01-14 Thread jake
I'm only a beginner but I understand that python is an excellent tool for what you seek. it comes with tkinter which is cross platform gui toolkit. Python is also rediculously easy to get and install on any platform. Andreas Gartus wrote: Hi Everybody! I plan to develop a little GUI

Re: Cross-Platform Development?

2001-01-14 Thread D-Man
Put the other two suggestions together and use Python with wxPython (python bindings for wxWindows). I would highly recommend python instead of C/C++ becuase you won't have any compilation headaches or overhead while developing or deploying. You may also want to consider GTK as the gui toolkit.