Easiest cross platform widget toolkit? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:56:49Z http://stackoverflow.com/feeds/question/91616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit 5 Easiest cross platform widget toolkit? Stephen 2008-09-18T10:58:48Z 2008-11-03T13:24:42Z <p>What is the <strong>easiest</strong> cross platform widget toolkit? that minimally covers Windows, osx, and Linux with a c or c++ interface? </p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91679#91679 3 Answer by Cetra for Easiest cross platform widget toolkit? Cetra 2008-09-18T11:12:20Z 2008-09-18T11:12:20Z <p>Are we talking GUI Widgets? If so, I can suggest 3</p> <p>FLTK:</p> <p><a href="http://www.fltk.org/" rel="nofollow">http://www.fltk.org/</a></p> <p>GTK:</p> <p><a href="http://www.gtk.org/" rel="nofollow">http://www.gtk.org/</a></p> <p>QT:</p> <p><a href="http://trolltech.com/products/qt/" rel="nofollow">http://trolltech.com/products/qt/</a></p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91705#91705 8 Answer by Richard Waite for Easiest cross platform widget toolkit? Richard Waite 2008-09-18T11:17:16Z 2008-09-18T11:17:16Z <p>I don't know of any I've personally used with a C API, but <a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a> is C++. It runs on Windows, Linux, and Mac OS X. And if you're looking for easy, <a href="http://www.wxpython.org/" rel="nofollow">wxPython</a> is a Python wrapper around wxWidgets and it is <em>extremely</em> easy to use.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91712#91712 5 Answer by koschi for Easiest cross platform widget toolkit? koschi 2008-09-18T11:18:57Z 2008-09-18T21:09:33Z <p>I really like Qt. Have been working with it in several projects now.</p> <p>Although the project, I am currently working on, will be released for windows only, some of our developers code under Mac OS X using the gcc. And using different compilers and environments is an extra benefit for locating errors &amp; bugs.</p> <p>I forgot to mention that Qt has a really good documentation including lots of practical examples that help for a quick start.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91741#91741 1 Answer by aib for Easiest cross platform widget toolkit? aib 2008-09-18T11:22:25Z 2008-09-18T11:22:25Z <p>The easiest to write a new program in would be the one you're most familiar with.<br /> The easiest to use, test or distribute would probably be the most cross-platform, most distributed or the most supported one, so GTK+/wx/Qt/Tk?</p> <p>Note that C itself isn't a particularly <em>easy</em> language, especially with the growing object-oriented approach to GUIs.</p> <p>The easiest one to cook up a prototype in a scripting language, then convert to a compiled one might be any toolkit with a scripting language binding (pyGTK, wxPython, etc.)</p> <p>That being said, of the "big" ones, only GTK+ and Tk have a C bindings. wxWidgets, Qt and FLTK were all written in C++ and don't have any C bindings as far as I know.</p> <p>I suggest you look into learning C++ and then comparing the available options. Coding in C++ might feel like coding in a scripting language with great conveniences such as automatic pointers, utility classes and overloaded operators, non-invasive garbage collectors and easy to inherit parent classes all brought to your fingertips by the language itself and your widget toolkit.</p> <p>Then my personal suggestion would be wxWidgets; quite easy to use, better documented than GTKmm and "freer" than Qt.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91777#91777 2 Answer by emk for Easiest cross platform widget toolkit? emk 2008-09-18T11:34:22Z 2008-09-18T11:34:22Z <p>As with the other posters, I strongly recommend looking at C++ toolkits. GTK will work on Windows and the Mac OS, but will only give you truly good results on Linux. And even some of the GTK maintainers are inventing their their own <a href="http://live.gnome.org/Vala" rel="nofollow">object-oriented C dialect</a> to avoid writing GUIs against the native GTK API.</p> <p>As for C++, it depends on what you want. Ease of development? Native GUIs on every platform? Commercial support?</p> <p>If you want native-looking GUIs on Win32 and Linux (and something semi-reasonable on the Mac), one excellent choice is wxWidgets. Here's a <a href="http://www.randomhacks.net/articles/2002/12/10/wxwindows-experiences" rel="nofollow">longer article with real-world wxWidgets experiences</a>. The Mac port has improved substantially since 2002, when that article was written, but it still has some soft spots.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/93007#93007 2 Answer by MSalters for Easiest cross platform widget toolkit? MSalters 2008-09-18T14:25:45Z 2008-09-18T14:25:45Z <p>I've used both wxWidgets and QT professionally. Both are certainly capable of meeting your goals. Which one is easiest is hard to say. You don't tell us whether you're looking for easy to use, or easy to learn. Qt is easier for big programs. WxWidgets is easier to learn. This for a large part due to the signal/slot mechanism in QT, which is a good but non-intuitive architecture for large applications. </p> <p>Both libraries are actually so good that I'd recommend them for non-crossplatform programming too.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/106666#106666 -3 Answer by Andrew Medico for Easiest cross platform widget toolkit? Andrew Medico 2008-09-20T01:09:36Z 2008-09-20T01:09:36Z <p>My vote goes to Qt.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/114962#114962 1 Answer by Nick for Easiest cross platform widget toolkit? Nick 2008-09-22T13:51:55Z 2008-09-22T13:51:55Z <p>You might also want to refer to <a href="http://stackoverflow.com/questions/610/gui-programming-apis">this similar question</a> if you are reading these answers.</p>