Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write cross-platform GUI application, what toolkit can I use? Currently I am working in Windows, MSVC, and Linux, gcc.

share|improve this question

4 Answers

up vote 4 down vote accepted

The most popular options are Qt and wxWidgets. I, personally, have found Qt much more feature-rich.

A newer option, however, (depending on what you are developing) is Silverlight/Moonlight. Flash can also work for cross platform GUI development, in some cases.

share|improve this answer
...and, of course, there is also venerable GTK. :) – vladr Feb 28 '10 at 18:09
Forgot to mention, that I need free toolkit. wxWidgets is free, and Qt is not, is this correct? – Alex Farber Feb 28 '10 at 18:13
1  
No - Qt is free, too. It's now LGPL, so can be used freely in commercial software, too. – Reed Copsey Feb 28 '10 at 18:36
@Vlad: I didn't mention GTK, although it's an option, too. Last time I used it, it was very "odd" on Windows, since it's been added much later. I know some very successful software uses it, but I tend to not consider it for Windows dev. (yet) – Reed Copsey Feb 28 '10 at 18:36

You can try using QT.

share|improve this answer

If you want something simpler to learn and use, you might consider Real Studio. With Real Studio, you can easily create cross-platform software for Windows, OS X, Linux and the web using an easy-to-use IDE and a Basic-like, object-oriented programming language.

http://www.realsoftware.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.