简体   繁体   中英

Cross-Platform Programming Language with a decent gui toolkit?

For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or a language within a JVM. Either is fine with me, but the programming language has to balance power & simplicity (eg Python)

I know of wxPython but I have read that it's support on Mac OS X is fairly limited

Java sounds good & it looks good but it seems almost too difficult to program in

Any help?

I used Python with wxPython for quite a while and found it very easy to use. I now use Java with both Swing and SWT.

I prefer Java but that's just a personal preference so you shouldn't let that sway you.

I didn't find the transition from Python to Java that difficult. In terms of GUI, they both have the layout manager paradigm - the managers are different but not so different you'll have trouble switching.

Java has an absolute huge class library to the point where you probably don't need to write your own version of anything, just string together the components. I never really got that deep into Python but it may well be similar. One thing I did notice is that all the really good stuff I used in Python (eg, s[-4:-1]) could still be done quite easily in Java. Both languages were a step up from C where I had to manage strings with my own libraries.

If you think wxPython is limited on MacOS, you should try Java. I run my Java code on Windows, Linux and other UNIXes without compatibility problems. Sadly, not Mac, so I can't really advise you there.

My advice, pick a smallish project - do it in both Python and Java - see how it runs on all the platforms you're interested in.

使用PyQt的 Python或者最终可以等同但不受欢迎的PySide似乎是要走的路 - 毕竟,很少有语言比Java(你认为“几乎难以编程”)更容易编程, Python是少数几个,Qt可以说是任何语言中最好的跨平台GUI工具包,PyQt(现在,但是GPL或者 - $$$)或PySide(最终,即使你想要关闭自己的源代码,也可以免费提供代码)是Python和Qt之间强大的接口。

  • You can use any of languages targeting JVM, eg Jython (Python impl) and JRuby (Ruby impl).

  • You can try using Qt bindings for Python, Qt seems to support many of Mac OSX specifics.

Consider Tcl/Tk. I'm not sure how you define "one binary that is executeable [sic] by all major desktop platforms" but Tcl probably meets this as well as java, and likely better than any other scripting language.

Using the tcl packaging technology of starkits you can either a) create a single file that can be run on any platform that has an appropriate runtime engine (and they are available for all major and many minor platforms), or you can package that platform-specific runtime engine and and cross-platform starkit into a single file executable for each platform.

The starkit technology is something other languages should aspire to. What you get is a complete, fully functional virtual file system within a single file. This lets you easily package up sound files, dll/.so files (which must be copied to disk for obvious (?) reasons), images, data, etc along with your executable code.

Tk, the graphical library, is very mature and has really good support on all platforms. Some people think it looks dated but those impressions are usually based on information that is at least 5 years old. Modern Tk looks quite good. For some examples see the tkdocs website. I's not clear whether you're more concerned with eye candy or functionality, but if it's functionality you're interested in then Tk is something to seriously consider.

Most agree that Tcl is an aquired taste but those that use it professionally usually swear by it. I've been doing wxPython programming the last several months and would switch back to tcl/tk in a heartbeat if given the opportunity.

You could use Groovy to work around the Java complexities.

Still you'll need good foundations of Swing.

While the learning curve may be steep, the trade of of not having to completely re-write the whole application again for the next platform will be a good reward.

Bear in mind, that even though it is cross platform, you should consider different platforms still have different idioms ( eg Copy/Past in Windows is ctrl+v, ctrl+v while in Mac it is cmd+c, cmd+v )

I work on a program that has to run on Windows, Linux and OS X (and OS X is my development platform), and wxPython is what we use.

If I had a chance to start again, I'd probably go with PyQT (based on advice from friends), but wxPython will get the job done.

I think wxPython is pretty good, though I am not sure what you mean by "support on Mac OS X is fairly limited" but I have been porting a wxPython app (www.mockupscreens.com) to Mac and it wasn't that difficult with few tweaks eg some UI elements may not come up as you expected, as wxPython uses native UI elements, which can be an advanatage or disadvantage based on your requirements.

Other good option is PyQT which will give you consistent look on all platforms.

Java seems better for what you want.

Well what about the web application in Javascript?

How about SWT

  • Cross Platform
  • Native Look and feel
  • Huge community
  • Constantly maintained/upgraded ( IBM backed )
  • Atleast one mega successful cross platform project

I would suggest going the wxPython route, I know that wxWidgets (which is what wxPython is using) can be made to have great looking Mac apps (look at PgAdmin3 from postgresql). While PgAdmin3 is not done in python, it was done with wxWidgets and looks fine on a mac.

I use three cross-platform tools regularly: Realbasic from Realsoftware which is what Visual Basic v6 would have been if allowed to grow; Revolution from Runrev which is what Hypercard would have been if allowed to survive (and its neat using a scripting language whose syntax is basically English); and finally, Delphi Prism with Mono.

All are quite mature and yet expanding at a great rate. For instance, Revolution is just introducing a web-application feature to its language that is really easy to use.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM