Best UI development framework on windows? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T15:01:24Zhttp://stackoverflow.com/feeds/question/157697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows3Best UI development framework on windows?TG2008-10-01T13:52:38Z2008-11-06T21:21:46Z
<p>I have been developing UI in Win32/MFC, but developing cool UI in Win32/MFC is very difficult and time consuming. Please note, I always want my code to be platform independent, So I prefer programming back-end (Business logic) in C++. </p>
<p>Which is the best framework for developing cool UI on windows platform? I heard of quite a few, like Qt, Flex, Delphi. What is your thoughts (Pros and Cons) on these UI development frameworks. Which one do you recommend ?</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157700#1577002Answer by Max Schmeling for Best UI development framework on windows?Max Schmeling2008-10-01T13:54:11Z2008-10-01T13:54:11Z<p>I know you said you want platform independent... but WPF is <em>by far</em> the best UI platform for Windows when it comes to making high quality (and very cool looking) user interfaces.</p>
<p>It's fairly easy to learn, and extremely powerful. It's definitely a shift in the way you think about writing UI code, but that's a good thing. If you can live with the UI being tied to windows, I would say that's the best platform.</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157706#15770615Answer by David Segonds for Best UI development framework on windows?David Segonds2008-10-01T13:55:20Z2008-10-01T13:55:20Z<p>I would recommend Qt. It is well supported, with good customer support and it offers a good set of tool from the start (QDesigner). It will integrate easily with your C++ business logic.</p>
<p>The underlying principles (signals and slots) are well thought.</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157716#1577161Answer by Charles Graham for Best UI development framework on windows?Charles Graham2008-10-01T13:56:46Z2008-10-01T13:56:46Z<p>You might as well just bite the bullet and go to WPF. Yes, it will not be platofrm independant persay, but if you code in a way that can easily be made into silverlight, then you can host your app in the browser. Also, there is the mono project which will increasingly make most .Net functionality available on Linux/Mac.</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157723#1577233Answer by OregonGhost for Best UI development framework on windows?OregonGhost2008-10-01T13:58:26Z2008-10-01T13:58:26Z<p>I agree with Max Schmeling with regard to WPF, but if you want to stay in C++ and platform-independent, Qt is the way to go (note the spelling (; ). It is powerful, very complete, integrates into Visual Studio, looks like it should on Windows, Linux and MacOSX and is, in my opinion, simply the best library and framework for C++.</p>
<p>With WPF, however, you can still have your back-end code in C++ by bridging it with .NET using C++/CLI. If that solution (i.e. platform-dependent) is acceptable to you, you'll never regret switching to .NET.</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157765#1577655Answer by Barth for Best UI development framework on windows?Barth2008-10-01T14:06:41Z2008-10-01T14:06:41Z<p>Personnally, I really like wxWidgets : <a href="http://www.wxwidgets.org/" rel="nofollow">http://www.wxwidgets.org/</a></p>
<p>It is </p>
<ol>
<li>Multi-platforms : Win32, Mac OS X, GTK+, X11, Motif, WinCE, and more</li>
<li>Multi-languages : C++, Python, Perl, and C#/.NET</li>
<li>Free</li>
<li>Open-source</li>
<li>Good-looking</li>
</ol>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/157994#1579941Answer by macbirdie for Best UI development framework on windows?macbirdie2008-10-01T14:48:16Z2008-10-01T14:48:16Z<p>Some new frameworks are appearing from time to time, that are a bit more modern than the widely used ones.</p>
<p>By modern I mean that they for example leverage features of the C++ language and the most important libraries, like Boost or even STL itself.</p>
<p>Note that Qt provides its own String, Network, Signals (observer pattern), Multithreading and many other classes and those are already in new versions of Boost (see <code>boost::asio</code>, <code>boost:signals</code>, <code>boost::threads</code>) - you have to learn APIs with duplicate functionality. </p>
<p>Of course creating a library as powerful as Qt would be an overkill since this one handles much more tasks than just showing windows and widgets - there's the graphics subsystem, rich text processing, xml readers and writers, nice web browser view integration (thanks to WebKit), SQL connectors, SVG classes and so forth but many of those are not used in simple or even semi-advanced scenarios so maybe it's a good time to try to create your own or improve existing ones, like <a href="http://code.google.com/p/winx/" rel="nofollow">WINX</a>.</p>
<p>The developer of WinxGui is currently working on making the library more generic by e.g. porting WTL to MinGW so he can relieve it from ATL dependency. Next step would be to extend the WTL port to other platforms. But that's just my wishful thinking.</p>
<p>Qt looks great anyway. I have worked a bit with it, apps act and look like native ones and it's pretty easy to add some really cool features there, and be almost sure that your app's portability is just one compile away.</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/160259#1602591Answer by jonner for Best UI development framework on windows?jonner2008-10-01T23:41:33Z2008-10-01T23:41:33Z<p>I would highly recommend taking a look at <a href="http://gtkmm.org/" rel="nofollow">gtkmm</a>. It's licensed under the LGPL, which allows you to use it in proprietary projects without paying any license fees, it is cross platform, has reasonably good documentation, and it provides a very natural C++ API on top of GTK+. </p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/208634#2086340Answer by Vinay for Best UI development framework on windows?Vinay2008-10-16T13:47:23Z2008-10-16T13:47:23Z<p>Use codejock library with MFC</p>
http://stackoverflow.com/questions/157697/best-ui-development-framework-on-windows/270331#2703310Answer by Qwertie for Best UI development framework on windows?Qwertie2008-11-06T21:21:46Z2008-11-06T21:21:46Z<p>I would definitely want to write my UI with Windows Forms or WPF because it's so much easier than MFC or even Qt.</p>
<p>If you need to call a large number of C++ functions or classes from .NET, you can use <a href="http://www.swig.org/" rel="nofollow">SWIG</a> to make an interface wrapper. SWIG has a significant learning curve but, once learned, it's a quick way to get access to large amounts of C++.</p>